public class AfterSaveEvent extends Object
AfterSaveEvent is created after a database operation on an item. The PK of the item is recorded,
and the type as well. There are three types supported: UPDATE, REMOVE, and CREATE.
AfterSaveEvent when transaction is used and multiple operations have been executed on the
SAME item(Note: all of the operations are executed between one BEGIN and COMMIT database action):
CREATE: create + update(*)UPDATE: update(+)REMOVE: update(*) + removeAfterSaveEvent will be created when the transaction rolls back as well as under the following situation:
AfterSaveEvent will be created.| Modifier and Type | Field and Description |
|---|---|
static int |
CREATE |
static int |
REMOVE |
static int |
UPDATE |
| Constructor and Description |
|---|
AfterSaveEvent(PK pk,
int type)
Creates the AfterSaveEvent.
|
public static final int UPDATE
public static final int REMOVE
public static final int CREATE
Copyright © 2017 SAP SE. All Rights Reserved.