LOAD_COMPOSITION SAP Method Makes sure that the target node instances are in the buffer
Below is documentation, parameters and attributes of ABAP Method LOAD_COMPOSITION within SAP class /BOBF/CL_BUF_SIMPLE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOBF/CL_BUF_SIMPLE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method LOAD_COMPOSITION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LOAD_COMPOSITION
.| Name | Type | Data Type | Description | Default Value |
| IO_CHANGE | Importing | TYPE REF TO /BOBF/IF_FRW_CHANGE | Interface of Change Object | |
| IS_ASSOC | Importing | TYPE /BOBF/S_CONFRO_ASSOC | Configuration: Association | |
| IT_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IT_SELECTION | Importing | TYPE /BOBF/T_BUF_SELECTION | Table for Buffer Selections | |
| IV_FILL_DATA | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_NOTIFY_KEYLOAD | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_STATE | Importing | TYPE /BOBF/CONF_STATE | State | |
| IV_INVALIDATE_CACHE | Importing | TYPE BOOLE_D |
Exceptions of Method LOAD_COMPOSITION
/BOBF/CX_FRW -Example ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_BUF_SIMPLE.
DATA: lv_IO_CHANGE TYPE /BOBF/IF_FRW_CHANGE,
lv_IS_ASSOC TYPE /BOBF/S_CONFRO_ASSOC,
lv_IT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_SELECTION TYPE /BOBF/T_BUF_SELECTION,
lv_IV_FILL_DATA TYPE BOOLE_D,
lv_IV_NOTIFY_KEYLOAD TYPE BOOLE_D,
lv_IV_STATE TYPE /BOBF/CONF_STATE,
lv_IV_INVALIDATE_CACHE TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>LOAD_COMPOSITION(
EXPORTING
IO_CHANGE = lv_IO_CHANGE
IS_ASSOC = lv_IS_ASSOC
IT_KEY = lv_IT_KEY
IT_SELECTION = lv_IT_SELECTION
IV_FILL_DATA = lv_IV_FILL_DATA
IV_NOTIFY_KEYLOAD = lv_IV_NOTIFY_KEYLOAD
IV_STATE = lv_IV_STATE
IV_INVALIDATE_CACHE = lv_IV_INVALIDATE_CACHE ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects