CREATE_POSTPROCESSING SAP Method Location: Create, Postprocessing
Below is documentation, parameters and attributes of ABAP Method CREATE_POSTPROCESSING within SAP class /SCMB/CL_LDM_LOC. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCMB/CL_LDM_LOC 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 CREATE_POSTPROCESSING can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_POSTPROCESSING
.| Name | Type | Data Type | Description | Default Value |
| IT_DESCRIPTION | Importing | TYPE /SAPAPO/BAPI_LOCT_TAB | Inbound Structure for Location Descriptions | |
| IV_BSG | Importing | TYPE BAPISCMBLOGQS | Business System Group | |
| IV_LOCATION_ID | Importing | TYPE /SAPAPO/EXT_LOCNO | Location | |
| IV_LOCATION_TYPE_CODE | Importing | TYPE /SAPAPO/C_LOCTYPE | Location Type |
Exceptions of Method CREATE_POSTPROCESSING
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_IT_DESCRIPTION TYPE /SAPAPO/BAPI_LOCT_TAB,
lv_IV_BSG TYPE BAPISCMBLOGQS,
lv_IV_LOCATION_ID TYPE /SAPAPO/EXT_LOCNO,
lv_IV_LOCATION_TYPE_CODE TYPE /SAPAPO/C_LOCTYPE,
lv_other TYPE c.
CALL METHOD /SCMB/CL_LDM_LOC=>CREATE_POSTPROCESSING(
EXPORTING
IT_DESCRIPTION = lv_IT_DESCRIPTION
IV_BSG = lv_IV_BSG
IV_LOCATION_ID = lv_IV_LOCATION_ID
IV_LOCATION_TYPE_CODE = lv_IV_LOCATION_TYPE_CODE ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects