GET SAP Method Deliver References to Order Documents in the Buffer









Below is documentation, parameters and attributes of ABAP Method GET within SAP class /SCMB/CL_ODM_BUFFER. 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_BUFFER 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 GET can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET

.

NameTypeData TypeDescriptionDefault Value
ET_OBJHDRExportingTYPE
/SCMB/ODM_OOBJ_TAB
ET_OBJHDR_SExportingTYPE
/SCMB/ODM_OOBJ_STAB
ODM: Order Document Buffer
ET_OBJITMExportingTYPE
/SCMB/ODM_OOBJ_TAB
ET_OBJITM_SExportingTYPE
/SCMB/ODM_OOBJ_STAB
ODM: Order Document Buffer
ET_OBJSDLExportingTYPE
/SCMB/ODM_OOBJ_TAB
ET_OBJSDL_SExportingTYPE
/SCMB/ODM_OOBJ_STAB
ODM: Order Document Buffer
EV_CNTHDRExportingTYPE
I
Number of Order Document Objects Header Level
EV_CNTITMExportingTYPE
I
Number of Order Document Objects Item Level
EV_CNTSDLExportingTYPE
I
Number of Order Document Objects Schedule Line Level
EV_VRSIOIDExportingTYPE
/SCMB/ODM_VRSIOID



Exceptions of Method GET

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_ODM_BUFFER.
DATA: lv_ET_OBJHDR TYPE /SCMB/ODM_OOBJ_TAB,
lv_ET_OBJHDR_S TYPE /SCMB/ODM_OOBJ_STAB,
lv_ET_OBJITM TYPE /SCMB/ODM_OOBJ_TAB,
lv_ET_OBJITM_S TYPE /SCMB/ODM_OOBJ_STAB,
lv_ET_OBJSDL TYPE /SCMB/ODM_OOBJ_TAB,
lv_ET_OBJSDL_S TYPE /SCMB/ODM_OOBJ_STAB,
lv_EV_CNTHDR TYPE I,
lv_EV_CNTITM TYPE I,
lv_EV_CNTSDL TYPE I,
lv_EV_VRSIOID TYPE /SCMB/ODM_VRSIOID,
lv_other TYPE c.

CALL METHOD lo_class=>GET(
IMPORTING
ET_OBJHDR = lv_ET_OBJHDR
ET_OBJHDR_S = lv_ET_OBJHDR_S
ET_OBJITM = lv_ET_OBJITM
ET_OBJITM_S = lv_ET_OBJITM_S
ET_OBJSDL = lv_ET_OBJSDL
ET_OBJSDL_S = lv_ET_OBJSDL_S
EV_CNTHDR = lv_EV_CNTHDR
EV_CNTITM = lv_EV_CNTITM
EV_CNTSDL = lv_EV_CNTSDL
EV_VRSIOID = lv_EV_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



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!