PRINT_ORDER SAP Method of class /SCMB/CL_ODM_TRACK_ORDER
Below is documentation, parameters and attributes of ABAP Method PRINT_ORDER within SAP class /SCMB/CL_ODM_TRACK_ORDER. 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 /SCMB/CL_ODM_TRACK_ORDER 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 PRINT_ORDER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PRINT_ORDER
.| Name | Type | Data Type | Description | Default Value |
| IV_CHGTST | Importing | TYPE /SCMB/ODM_CHGTST | ||
| IV_CHGUSR | Importing | TYPE /SCMB/ODM_CHGUSR | ||
| IV_COPY_ORDER | Importing | TYPE XFELD | Provide EO_TRACK_ORDER | |
| IV_HISTCRETST | Importing | TYPE /SCMB/ODM_HISTCRETST | ||
| IV_HISTTRACKID | Importing | TYPE /SCMB/ODM_HISTTRACKID | ||
| IV_TIMESTAMP_CUTOFF | Importing | TYPE /SCMB/ODM_TST | ODM: Date/Time | |
| EO_TRACK_ORDER | Exporting | TYPE REF TO /SCMB/CL_ODM_TRACK_ORDER | ODM: Historical Order |
Exceptions of Method PRINT_ORDER
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_ODM_TRACK_ORDER.
DATA: lv_EO_TRACK_ORDER TYPE /SCMB/CL_ODM_TRACK_ORDER,
lv_IV_CHGTST TYPE /SCMB/ODM_CHGTST,
lv_IV_CHGUSR TYPE /SCMB/ODM_CHGUSR,
lv_IV_COPY_ORDER TYPE XFELD,
lv_IV_HISTCRETST TYPE /SCMB/ODM_HISTCRETST,
lv_IV_HISTTRACKID TYPE /SCMB/ODM_HISTTRACKID,
lv_IV_TIMESTAMP_CUTOFF TYPE /SCMB/ODM_TST,
lv_other TYPE c.
CALL METHOD lo_class=>PRINT_ORDER(
EXPORTING
IV_CHGTST = lv_IV_CHGTST
IV_CHGUSR = lv_IV_CHGUSR
IV_COPY_ORDER = lv_IV_COPY_ORDER
IV_HISTCRETST = lv_IV_HISTCRETST
IV_HISTTRACKID = lv_IV_HISTTRACKID
IV_TIMESTAMP_CUTOFF = lv_IV_TIMESTAMP_CUTOFF
IMPORTING
EO_TRACK_ORDER = lv_EO_TRACK_ORDER ).
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