SAP /SCMB/CL_DL_HEAD_DLV OO Class - Delivery Header
/SCMB/CL_DL_HEAD_DLV is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /SCMB/CL_DL_HEAD_DLV including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for /SCMB/CL_DL_HEAD_DLV is /SCMB/CL_DL_HEADInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class /SCMB/IF_DL_DATEInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class /SCMB/IF_DL_PROPERTYInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class /SCMB/IF_DL_STATUSMethod list of /SCMB/CL_DL_HEAD_DLV SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| ADD_DATE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>ADD_DATE...more details | ||
| ADD_STATUS | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>ADD_STATUS...more details | ||
| CHANGE_DATE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>CHANGE_DATE...more details | ||
| CHANGE_STATUS | Changes a Status | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>CHANGE_STATUS...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>CONSTRUCTOR...more details | ||
| DELETE_DATE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>DELETE_DATE...more details | ||
|
| ||
| DELETE_STATUS | Deletes a Status | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>DELETE_STATUS...more details | ||
| GET_DATE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_DATE...more details | ||
| GET_DLTYPE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_DLTYPE...more details | ||
| GET_EEW | Delivers Customer Enhancement Structure | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_EEW...more details | ||
| GET_PROPERTY | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_PROPERTY...more details | ||
| GET_STATUS | Delivers Status Table | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_STATUS...more details | ||
| GET_TRANSPORT | Delivers Identification of Means of Transport | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_TRANSPORT...more details | ||
| GET_WMH | Delivers Warehouse Management (Header Data) | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>GET_WMH...more details | ||
| SET_DATE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_DATE...more details | ||
| SET_DLTYPE | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_DLTYPE...more details | ||
| SET_EEW | Sets Customer Enhancement Structure | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_EEW...more details | ||
| SET_PROPERTY | Private | |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_PROPERTY...more details | ||
| SET_STATUS | Sets Status Table | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_STATUS...more details | ||
| SET_TRANSPORT | Sets Identification of Means of Transport | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_TRANSPORT...more details | ||
| SET_WMH | Sets Warehouse Management (Header Data) | Public |
| CALL METHOD /scmb/cl_dl_head_dlv=>SET_WMH...more details | ||
/SCMB/CL_DL_HEAD_DLV attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| MS_EEW | Instance Attribute | Customer Enhancements: Delivery, Header | LIKE /SCMB/INCL_EEW_DLV_HEAD | Private | |
| MS_TRANSPORT | Instance Attribute | Shipment | LIKE /SCMB/DL_TRANS_STR | Private | |
| MS_WMH | Instance Attribute | Warehouse Management (Header Data) | LIKE /SCMB/DL_WMH_STR | Private | |
| MT_DATE | Instance Attribute | Date/Time | LIKE /SCMB/DL_TST_TAB | Private | |
| MT_DYN_STATUS | Instance Attribute | Dynamic Status | LIKE /SCMB/DL_STATUS_TAB | Private | |
| MT_PROPERTY | Instance Attribute | Properties | LIKE /SCMB/DL_PROPERTY_TAB | Private | |
| MT_STATUS | Instance Attribute | Status Table | LIKE /SCMB/DL_STATUS_TAB | Private | |
| MV_DLTYPE | Instance Attribute | Delivery Type | LIKE /SCMB/DL_DLTYPE | Private |
Events of Class /SCMB/CL_DL_HEAD_DLV
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... REQUEST -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