EXCHANGE_KEY SAP Method Exchange entity key
Below is documentation, parameters and attributes of ABAP Method EXCHANGE_KEY within SAP class IF_ISU_BOL_ENTITY_WRAPPER. 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 IF_ISU_BOL_ENTITY_WRAPPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method EXCHANGE_KEY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXCHANGE_KEY
.| Name | Type | Data Type | Description | Default Value |
| ENTITY_WRAPPER | Importing | TYPE REF TO IF_ISU_BOL_ENTITY_WRAPPER | Utilities BOL Entity Wrapper-interface | |
| ENTRY_REF_NEW | Importing | TYPE REF TO CRMT_BOL_ENTITY_LINE | Entity Entry in Manager Table | |
| ENTRY_REF_OLD | Importing | TYPE REF TO CRMT_BOL_ENTITY_LINE | Entity Entry in Manager Table |
Exceptions of Method EXCHANGE_KEY
This method does not have any exceptionsExample ABAP coding
DATA: lv_ENTITY_WRAPPER TYPE IF_ISU_BOL_ENTITY_WRAPPER,
lv_ENTRY_REF_NEW TYPE CRMT_BOL_ENTITY_LINE,
lv_ENTRY_REF_OLD TYPE CRMT_BOL_ENTITY_LINE,
lv_other TYPE c.
CALL METHOD IF_ISU_BOL_ENTITY_WRAPPER=>EXCHANGE_KEY(
EXPORTING
ENTITY_WRAPPER = lv_ENTITY_WRAPPER
ENTRY_REF_NEW = lv_ENTRY_REF_NEW
ENTRY_REF_OLD = lv_ENTRY_REF_OLD ).
Links to Related Class(s)
IF_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects