CONSTRUCTOR SAP Method Constructor
Below is documentation, parameters and attributes of ABAP Method CONSTRUCTOR within SAP class /SCMB/CL_DL_ITEM_DLV. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is a Class Constructor so it is called automatically when the class is accessed for the first time.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_DL_ITEM_DLV 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 CONSTRUCTOR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONSTRUCTOR
.| Name | Type | Data Type | Description | Default Value |
| IO_DO | Importing | TYPE REF TO /SCMB/CL_DL_DO | Abstract Class Business Object | |
| IO_PRES | Importing | TYPE REF TO /SCMB/IF_DL_PRESERVE | ||
| IS_ADMIN | Importing | TYPE /SCMB/DL_ADMIN_STR | Administrative Data | |
| IS_EEW | Importing | TYPE /SCMB/INCL_EEW_DLV_ITEM | ||
| IS_FCD | Importing | TYPE /SCMB/DL_FCD_STR | Terms of Delivery | |
| IS_PROD | Importing | TYPE /SCMB/DL_PROD_STR | Product | |
| IS_PROD_DET | Importing | TYPE /SCMB/DL_PRODUCT_DET_STR | Batch Details | |
| IS_QTY | Importing | TYPE /SCMB/DL_QTY_STR | Quantity | |
| IS_STOCK | Importing | TYPE /SCMB/DL_STOCK_STR | Stock Attributes | |
| IS_WMI | Importing | TYPE /SCMB/DL_WMI_STR | ||
| IT_DATE | Importing | TYPE /SCMB/DL_TST_TAB | Date/Time (Interval) | |
| IT_HIE | Importing | TYPE /SCMB/DL_HIERARCHY_TAB | Additional Grouping/Hierarchy | |
| IT_ITMNO | Importing | TYPE /SCMB/DL_ITMNOMAP_TAB | Item Number | |
| IT_LOCATION | Importing | TYPE /SCMB/DL_LOC_TAB | Product Table | |
| IT_PARTY | Importing | TYPE /SCMB/DL_PRT_TAB | Partner | |
| IT_REFDOC | Importing | TYPE /SCMB/DL_REFDOC_TAB | Reference to Document | |
| IT_STATUS | Importing | TYPE /SCMB/DL_STATUS_TAB | ||
| IT_UOM | Importing | TYPE /SCMB/DL_ADD_UOM_TAB | Additional UoM | |
| IV_ITMID | Importing | TYPE /SCMB/DL_ITMID | Item ID | |
| IV_ITMTYPE | Importing | TYPE /SCMB/DL_ITMTYPE | Item Type | |
| IV_OBJCHG | Importing | TYPE /SCMB/DL_OBJCHG | Change Mode | |
| IV_ORDID | Importing | TYPE /SCMB/DL_ORDID | Document ID | |
| IV_TRATYPE | Importing | TYPE /SCMB/DL_TTYPE | Means of Transport | |
| IV_VRSIOID | Importing | TYPE /SCMB/DL_VRSIOID | Version |
Exceptions of Method CONSTRUCTOR
This method does not have any exceptionsExample ABAP coding
As the method is a Class Constructor the below code doesnt really make sense as it cant be executed as a stand alone method but this is how it would look if it was a normal static method.DATA: lo_class TYPE REF TO /SCMB/CL_DL_ITEM_DLV.
DATA: lv_IO_DO TYPE /SCMB/CL_DL_DO,
lv_IO_PRES TYPE /SCMB/IF_DL_PRESERVE,
lv_IS_ADMIN TYPE /SCMB/DL_ADMIN_STR,
lv_IS_EEW TYPE /SCMB/INCL_EEW_DLV_ITEM,
lv_IS_FCD TYPE /SCMB/DL_FCD_STR,
lv_IS_PROD TYPE /SCMB/DL_PROD_STR,
lv_IS_PROD_DET TYPE /SCMB/DL_PRODUCT_DET_STR,
lv_IS_QTY TYPE /SCMB/DL_QTY_STR,
lv_IS_STOCK TYPE /SCMB/DL_STOCK_STR,
lv_IS_WMI TYPE /SCMB/DL_WMI_STR,
lv_IT_DATE TYPE /SCMB/DL_TST_TAB,
lv_IT_HIE TYPE /SCMB/DL_HIERARCHY_TAB,
lv_IT_ITMNO TYPE /SCMB/DL_ITMNOMAP_TAB,
lv_IT_LOCATION TYPE /SCMB/DL_LOC_TAB,
lv_IT_PARTY TYPE /SCMB/DL_PRT_TAB,
lv_IT_REFDOC TYPE /SCMB/DL_REFDOC_TAB,
lv_IT_STATUS TYPE /SCMB/DL_STATUS_TAB,
lv_IT_UOM TYPE /SCMB/DL_ADD_UOM_TAB,
lv_IV_ITMID TYPE /SCMB/DL_ITMID,
lv_IV_ITMTYPE TYPE /SCMB/DL_ITMTYPE,
lv_IV_OBJCHG TYPE /SCMB/DL_OBJCHG,
lv_IV_ORDID TYPE /SCMB/DL_ORDID,
lv_IV_TRATYPE TYPE /SCMB/DL_TTYPE,
lv_IV_VRSIOID TYPE /SCMB/DL_VRSIOID,
lv_other TYPE c.
CALL METHOD lo_class=>CONSTRUCTOR(
EXPORTING
IO_DO = lv_IO_DO
IO_PRES = lv_IO_PRES
IS_ADMIN = lv_IS_ADMIN
IS_EEW = lv_IS_EEW
IS_FCD = lv_IS_FCD
IS_PROD = lv_IS_PROD
IS_PROD_DET = lv_IS_PROD_DET
IS_QTY = lv_IS_QTY
IS_STOCK = lv_IS_STOCK
IS_WMI = lv_IS_WMI
IT_DATE = lv_IT_DATE
IT_HIE = lv_IT_HIE
IT_ITMNO = lv_IT_ITMNO
IT_LOCATION = lv_IT_LOCATION
IT_PARTY = lv_IT_PARTY
IT_REFDOC = lv_IT_REFDOC
IT_STATUS = lv_IT_STATUS
IT_UOM = lv_IT_UOM
IV_ITMID = lv_IV_ITMID
IV_ITMTYPE = lv_IV_ITMTYPE
IV_OBJCHG = lv_IV_OBJCHG
IV_ORDID = lv_IV_ORDID
IV_TRATYPE = lv_IV_TRATYPE
IV_VRSIOID = lv_IV_VRSIOID ).
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