Hierarchy
⤷
⤷
Meta Relationship - Using
| # | Relationship type | Using | Short Description | Created on |
|---|---|---|---|---|
| 1 | Interface implementation (CLASS c. INTERFACES i_ref) | IF_EPM_DATA_BUFFER | EPM: Node data buffer interface | 20081215 |
Properties
| Class | CL_EPM_DATA_BUFFER | |
| Short Description | EPM: default implementation of data buffer class | |
| Super Class | ||
| Instantiability of a Class | 0 | Private |
| Final |
General Data
| Message Class | ||
| Program status | ||
| Category | 0 | |
| Package | S_EPM_BO_BASE | EPM: Base Package for Business Objects |
| Created | 20081215 | SAP |
| Last change | 20140121 | SAP |
| Shared Memory-enabled | ||
| Fixed point arithmetic | ||
| Unicode checks active |
Forward declarations
| # | Type group / Object type | Type | Type Description |
|---|---|---|---|
| 1 | Type group use (TYPE-POOLS tp) | Type group use (TYPE-POOLS tp) | |
| 2 | Forward declaration class (CLASS c DEFINITION DEFERRED) | Forward declaration class (CLASS c DEFINITION DEFERRED) | |
| 3 | Forward declaration class (CLASS c DEFINITION DEFERRED) | Forward declaration class (CLASS c DEFINITION DEFERRED) | |
| 4 | Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... | |
| 5 | Forward declaration interface (INTERFACE i DEFINITION DEF... | Forward declaration interface (INTERFACE i DEFINITION DEF... |
Interfaces
| # | Interface | Abstract | Final | Description | Created on |
|---|---|---|---|---|---|
| 1 | IF_EPM_DATA_BUFFER | EPM: Node data buffer interface | 20081215 |
Friends
| # | Friend | Modeled only | Created on | Description |
|---|---|---|---|---|
| 1 | CL_EPM_BO_TEST_BASE | 20130506 | Unit test base class of all BO classes | |
| 2 | CL_EPM_DATA_BUFFER_FACTORY | 20081215 | EPM: Data buffer factory class | |
| 3 | CL_EPM_TECHNICAL_TEST_BASE | 20130508 | Unit test base class of all non-BO classes |
Attributes
| # | Attribute | Level | Visibility | Read only | Typing | Associated Type | Initial Value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | Static Attribute | Private | Object reference (TYPE REF TO) | IF_EPM_DATABASE | 20130405 | ||||
| 2 | Static Attribute | Public | Type reference (TYPE) | IF_EPM_BO=>TT_PROPERTY_NAMES | 20090427 | ||||
| 3 | Instance attribute | Private | Object reference (TYPE REF TO) | CL_EPM_CHANGE_NOTIF_BUFFER | EPM: Change Notification Buffer | 20100507 | |||
| 4 | Instance attribute | Private | Object reference (TYPE REF TO) | CL_EPM_DATA_BUFFER | 20090423 | ||||
| 5 | Instance attribute | Private | Object reference (TYPE REF TO) | CL_EPM_DATA_BUFFER | 20090421 | ||||
| 6 | Instance attribute | Private | Object reference (TYPE REF TO) | CL_ABAP_TABLEDESCR | 20111110 | ||||
| 7 | Instance attribute | Private | Type reference (TYPE) | TT_DATA_BUFFER | 20090319 | ||||
| 8 | Instance attribute | Private | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_DYNAMIC_PROPERTIES | 20090421 | ||||
| 9 | Instance attribute | Private | Type reference (TYPE) | TT_UNIQUE_NODE_KEYS | 20121022 | ||||
| 10 | Instance attribute | Private | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_INITIAL_PROPERTIES | 20090421 | ||||
| 11 | Instance attribute | Private | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_PRECONDITIONS_SAM | 20090421 | ||||
| 12 | Instance attribute | Private | Type reference (TYPE) | TT_RUNTIME_PROPERTIES | 20090421 | ||||
| 13 | Instance attribute | Private | Type reference (TYPE) | TT_CHILD_BUFFERS | 20081218 | ||||
| 14 | Instance attribute | Private | Type reference (TYPE) | CL_EPM_SERVICE_FACADE=>TT_FIELD_NAMES | 20111110 | ||||
| 15 | Instance attribute | Private | Type reference (TYPE) | IF_EPM_BO=>TY_BO_NAME | 20090421 | ||||
| 16 | Instance attribute | Private | Type reference (TYPE) | IF_EPM_BO=>TY_BO_NODE_NAME | BO node name | 20081218 | |||
| 17 | Instance attribute | Private | Type reference (TYPE) | IF_EPM_BO=>TY_DB_TABLE_NAME | Name of the database table | 20090108 | |||
| 18 | Instance attribute | Private | Type reference (TYPE) | ABAP_BOOL | Indicates whether there is an parent buffer or not | 20090114 |
Methods
Events
Class CL_EPM_DATA_BUFFER has no event.
Types
| # | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
|---|---|---|---|---|---|---|---|
| 1 | TT_CHILD_BUFFERS | Private | See coding | 20090108 | tt_child_buffers TYPE STANDARD TABLE OF REF TO cl_epm_data_buffer
|
||
| 2 | TT_DATA_BUFFER | Private | See coding | 20081215 | tt_data_buffer TYPE HASHED TABLE OF ty_data_buffer
WITH UNIQUE KEY node_key
WITH NON-UNIQUE SORTED KEY parent COMPONENTS parent_key root_key
|
||
| 3 | TT_KEYS_AND_DATA | Private | See coding | 20090115 | tt_keys_and_data TYPE STANDARD TABLE OF ty_key_and_data WITH KEY key
|
||
| 4 | TT_NODE_KEYS_SELTAB | Private | See coding | 20090108 | tt_node_keys_seltab TYPE RANGE OF if_epm_bo=>ty_node_key
|
||
| 5 | TT_PROPERTY_CHECK_TAB | Private | See coding | 20101220 | tt_property_check_tab TYPE STANDARD TABLE OF ty_property_check_line WITH DEFAULT KEY
|
||
| 6 | TT_RUNTIME_PROPERTIES | Private | See coding | 20090421 | tt_runtime_properties TYPE HASHED TABLE OF cl_epm_bo=>ty_runtime_property
WITH UNIQUE KEY node_key entity_name property_name
|
||
| 7 | TT_UNIQUE_NODE_KEYS | Private | See coding | 20090114 | tt_unique_node_keys TYPE HASHED TABLE OF if_epm_bo=>ty_node_key WITH UNIQUE DEFAULT KEY
|
||
| 8 | TY_DATA_BUFFER | Private | See coding | 20081215 | BEGIN OF ty_data_buffer,
node_key TYPE if_epm_bo=>ty_node_key,
parent_key TYPE if_epm_bo=>ty_node_key,
root_key TYPE if_epm_bo=>ty_node_key,
modification_status TYPE if_epm_data_buffer=>ty_modification_mode,
is_locked TYPE abap_bool,
before_image TYPE REF TO data,
current_image TYPE REF TO data,
END OF ty_data_buffer
|
||
| 9 | TY_KEY_AND_DATA | Private | See coding | 20090111 | BEGIN OF ty_key_and_data,
key TYPE if_epm_bo=>ty_node_key,
parent_key TYPE if_epm_bo=>ty_node_key,
data TYPE REF TO data,
END OF ty_key_and_data
|
||
| 10 | TY_PROPERTY_CHECK_LINE | Private | See coding | 20101220 | BEGIN OF ty_property_check_line,
property_name TYPE if_epm_bo=>ty_property_name,
set_check TYPE abap_bool,
entity_name TYPE string,
property_value TYPE abap_bool,
node_key TYPE if_epm_bo=>ty_node_key,
END OF ty_property_check_line
|
Method Signatures
Method ADD_DATA_TO_BUFFER Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | ET_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090507 | |||
| 2 | IT_DATA | Call by reference | Type reference (TYPE) | STANDARD TABLE | 20090112 | ||||
| 3 | IV_IS_LOCKED | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090424 | |||
| 4 | IV_MODIFICATION_STATUS | Call by reference | Type reference (TYPE) | IF_EPM_DATA_BUFFER=>TY_MODIFICATION_MODE | IF_EPM_DATA_BUFFER=>GC_CREATE_MODE | 20090112 |
Method ADD_DATA_TO_BUFFER on class CL_EPM_DATA_BUFFER has no exception.
Method APPLY_PAGING_OPTIONS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20130404 | ||||
| 2 | EV_IS_EMPTY_PAGE | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20130404 | ||||
| 3 | IS_PAGING_OPTIONS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_QUERY_PAGING_OPTIONS | 20130404 |
Method APPLY_PAGING_OPTIONS on class CL_EPM_DATA_BUFFER has no exception.
Method CHECK_LOCK Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | 20090423 | ||||
| 2 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20090423 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20090423 |
Method CHECK_MANDATORY Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | 20100218 | ||||
| 2 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20100218 | ||||
| 3 | RV_SUCCESS | Value transfer | Type reference (TYPE) | ABAP_BOOL | 20100218 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20100218 |
Method CHECK_NODE_KEYS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090114 | |||
| 2 | IV_CHECK_BUFFER | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090525 | |||
| 3 | IV_KEY_FIELD_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_TABLE_FIELD_NAME | IF_EPM_BO=>GC_FIELD_NAME_NODE_KEY | Type of a table field name | 20091026 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090114 |
Method CHECK_PROPERTIES Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_PROPERTY_CHECK_TAB | Call by reference | Type reference (TYPE) | TT_PROPERTY_CHECK_TAB | 20101220 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20101220 |
Method CHECK_PROPERTY Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IV_ENTITY_NAME | Call by reference | Type reference (TYPE) | STRING | 20090430 | ||||
| 2 | IV_NODE_KEY | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | 20090430 | ||||
| 3 | IV_PROPERTY_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_PROPERTY_NAME | 20090430 | ||||
| 4 | IV_PROPERTY_VALUE | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20090430 | ||||
| 5 | IV_SET_CHECK | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090430 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20090430 |
Method CHECK_UNIQUE Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | ET_FAILURES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | Set of node element specific operation information | 20100217 | |||
| 2 | ET_NOT_UNIQUE_FIELDS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_TABLE_FIELD_NAMES | Type of a table field name | 20100217 | |||
| 3 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | EPM: Message buffer interface | 20090929 | |||
| 4 | IS_KEY_AND_DATA | Call by reference | Type reference (TYPE) | TY_KEY_AND_DATA | 20090929 | ||||
| 5 | ITH_CHANGED_FIELDS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_CHANGED_FIELDS | 20100217 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090929 |
Method CLASS_CONSTRUCTOR Signature
Method CLASS_CONSTRUCTOR on class CL_EPM_DATA_BUFFER has no parameter.
Method CLASS_CONSTRUCTOR on class CL_EPM_DATA_BUFFER has no exception.
Method CONSTRUCTOR Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_CHILD_BUFFERS | Call by reference | Type reference (TYPE) | IF_EPM_DATA_BUFFER=>TT_CHILD_BUFFERS | 20081215 | ||||
| 2 | IT_DYNAMIC_PROPERTIES | Call by reference | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_DYNAMIC_PROPERTIES | 20090421 | ||||
| 3 | IT_INITIAL_PROPERTIES | Call by reference | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_INITIAL_PROPERTIES | 20090421 | ||||
| 4 | IT_PRECONDITIONS_SAM | Call by reference | Type reference (TYPE) | CL_EPM_DATA_BUFFER_FACTORY=>TT_PRECONDITIONS_SAM | 20090421 | ||||
| 5 | IV_BO_NODE_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_BO_NODE_NAME | BO node name | 20081215 | |||
| 6 | IV_DB_TABLE_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_DB_TABLE_NAME | Name of the corresponding database table | 20090108 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090605 |
Method CREATE_NODEKEY_SELTAB Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | ET_NODE_KEYS_SELTAB | Call by reference | Type reference (TYPE) | TT_NODE_KEYS_SELTAB | 20111107 | ||||
| 2 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090108 |
Method CREATE_NODEKEY_SELTAB on class CL_EPM_DATA_BUFFER has no exception.
Method DELETE_BY_PARENT Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_PARENT_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20081215 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090430 |
Method EXTRACT_NODE_KEYS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | ET_KEYS_AND_DATA | Call by reference | Type reference (TYPE) | TT_KEYS_AND_DATA | 20090114 | ||||
| 2 | ET_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090114 | |||
| 3 | IT_DATA | Call by reference | Type reference (TYPE) | STANDARD TABLE | 20090114 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090114 |
Method GET_EXPLANATION_OBJECT Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | EO_EXPLANATION | Call by reference | Object reference (TYPE REF TO) | CM_EPM_ROOT | EPM: Abstract Root Message Class | 20120516 | |||
| 2 | IV_FIELD_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_TABLE_FIELD_NAME | Type of a table field name | 20120516 | |||
| 3 | IV_NODE_KEY | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | Generic Node element key | 20120516 | |||
| 4 | IV_PROPERTY_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_PROPERTY_NAME | Property Handling: Property | 20120516 |
Method GET_EXPLANATION_OBJECT on class CL_EPM_DATA_BUFFER has no exception.
Method GET_FAILURES Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CT_FAILURES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | Set of node element specific operation information | 20090115 | |||
| 2 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090112 | |||
| 3 | IT_SUCCESS_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090112 | |||
| 4 | IV_ERROR_INFO | Call by reference | Type reference (TYPE) | CHAR255 | Char255 | 20090112 |
Method GET_FAILURES on class CL_EPM_DATA_BUFFER has no exception.
Method GET_NODE_PROPERTY Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IV_NODE_KEY | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | Generic Node element key | 20090520 | |||
| 2 | IV_PROPERTY_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_PROPERTY_NAME | Property Handling: Property Name | 20090520 | |||
| 3 | RS_NODE_PROPERTY | Value transfer | Type reference (TYPE) | IF_EPM_BO=>TY_PROPERTY | Property Handling: Property | 20090520 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090520 |
Method GET_PARENT_KEYS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090217 | |||
| 2 | RT_PARENT_KEYS | Value transfer | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090217 |
Method GET_PARENT_KEYS on class CL_EPM_DATA_BUFFER has no exception.
Method GET_ROOT_KEY Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IV_NODE_KEY | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | 20090424 | ||||
| 2 | IV_PARENT_KEY | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | 20090423 | ||||
| 3 | RV_ROOT_KEY | Value transfer | Type reference (TYPE) | IF_EPM_BO=>TY_NODE_KEY | 20090423 |
Method GET_ROOT_KEY on class CL_EPM_DATA_BUFFER has no exception.
Method READ_DATA_FROM_DB Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | ET_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090507 | |||
| 2 | IT_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090109 | |||
| 3 | IV_IS_LOCKED | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090424 | |||
| 4 | IV_KEY_FIELD_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_TABLE_FIELD_NAME | IF_EPM_BO=>GC_FIELD_NAME_NODE_KEY | Type of a table field name | 20090109 | ||
| 5 | IV_MODIFICATION_STATUS | Call by reference | Type reference (TYPE) | IF_EPM_DATA_BUFFER=>TY_MODIFICATION_MODE | 20090109 |
Method READ_DATA_FROM_DB on class CL_EPM_DATA_BUFFER has no exception.
Method REFRESH_AFTER_LOCKING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IT_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20090507 | ||||
| 2 | IV_KEY_FIELD_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_TABLE_FIELD_NAME | IF_EPM_BO=>GC_FIELD_NAME_NODE_KEY | 20090428 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20100507 |
Method SET_LOCK Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | EPM: Message buffer interface | 20090420 | |||
| 2 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090430 | |||
| 3 | IV_REFRESH_AFTER_LOCKING | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_TRUE | 20100527 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20090423 |
Method SYNC Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CT_FAILURES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | 20090525 | ||||
| 2 | CT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20090525 | ||||
| 3 | IV_IS_LOCKED | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090424 |
Method SYNC on class CL_EPM_DATA_BUFFER has no exception.
Method __DO_DELETE Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CT_FAILURES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | 20090525 | ||||
| 2 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | EPM: Message buffer interface | 20090430 | |||
| 3 | IT_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | Set of generic node element keys | 20090109 | |||
| 4 | IV_KEY_FIELD_NAME | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TY_TABLE_FIELD_NAME | IF_EPM_BO=>GC_FIELD_NAME_NODE_KEY | Type of a table field name | 20090109 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | EPM: API exception class | 20090430 |
Method __DO_UPDATE Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | 20090428 | ||||
| 2 | ITH_CHANGED_FIELDS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_CHANGED_FIELDS | 20091022 | ||||
| 3 | IT_DATA | Call by reference | Type reference (TYPE) | TABLE | 20090428 | ||||
| 4 | IV_CHECK | Call by reference | Type reference (TYPE) | ABAP_BOOL | ABAP_FALSE | 20090428 | |||
| 5 | RT_FAILURES | Value transfer | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | 20090428 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20090428 |
Method __GET Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CT_FAILURES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEY_INFO | 20090525 | ||||
| 2 | ET_DATA | Call by reference | Type reference (TYPE) | STANDARD TABLE | 20090423 | ||||
| 3 | ET_PROPERTIES | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_PROPERTIES | 20090423 | ||||
| 4 | II_MESSAGE_BUFFER | Call by reference | Object reference (TYPE REF TO) | IF_EPM_MESSAGE_BUFFER | 20090423 | ||||
| 5 | IT_NODE_KEYS | Call by reference | Type reference (TYPE) | IF_EPM_BO=>TT_NODE_KEYS | 20090423 | ||||
| 6 | IV_IS_LOCKED | Call by reference | Type reference (TYPE) | ABAP_BOOL | 20090428 |
| # | Exception | Resumable | Description | Created on |
|---|---|---|---|---|
| 1 | 20090423 |
History
| Last changed by/on | SAP | 20140121 |
| SAP Release Created in | 720 |