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

.

NameTypeData TypeDescriptionDefault Value
IV_CHGTSTImportingTYPE
/SCMB/ODM_CHGTST
IV_CHGUSRImportingTYPE
/SCMB/ODM_CHGUSR
IV_COPY_ORDERImportingTYPE
XFELD
Provide EO_TRACK_ORDER
IV_HISTCRETSTImportingTYPE
/SCMB/ODM_HISTCRETST
IV_HISTTRACKIDImportingTYPE
/SCMB/ODM_HISTTRACKID
IV_TIMESTAMP_CUTOFFImportingTYPE
/SCMB/ODM_TST
ODM: Date/Time
EO_TRACK_ORDERExportingTYPE REF TO
/SCMB/CL_ODM_TRACK_ORDER
ODM: Historical Order



Exceptions of Method PRINT_ORDER

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!