ANALYSE_QUERY SAP Method Analyzes Query Object









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

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


Parameters of Method ANALYSE_QUERY

.

NameTypeData TypeDescriptionDefault Value
IO_QUERYImportingTYPE REF TO
/SCMB/CL_DL_QUERY
ET_MATLOCExportingTYPE
/SCMB/ODM_MATLOC_TAB
ET_ORDIDExportingTYPE
/SCMB/DL_ORDID_STAB
ET_ORDNOExportingTYPE
/SCMB/ODM_ORDNO_STAB
ET_ORTYPEExportingTYPE
/SCMB/ODM_ORTYPE_TAB
ET_PRMVALRNGExportingTYPE
/SCMB/ODM_PRMVALRNG_TAB
ET_PRMVALSELExportingTYPE
/SCMB/ODM_PRMVALSEL_TAB
ET_PRTSELExportingTYPE
/SCMB/ODM_PRTSEL_TAB



Exceptions of Method ANALYSE_QUERY

/SCMB/CX_DL_PRMDET - Exception Class for Parameter Determination

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_DL_ODM.
DATA: lv_ET_MATLOC TYPE /SCMB/ODM_MATLOC_TAB,
lv_ET_ORDID TYPE /SCMB/DL_ORDID_STAB,
lv_ET_ORDNO TYPE /SCMB/ODM_ORDNO_STAB,
lv_ET_ORTYPE TYPE /SCMB/ODM_ORTYPE_TAB,
lv_ET_PRMVALRNG TYPE /SCMB/ODM_PRMVALRNG_TAB,
lv_ET_PRMVALSEL TYPE /SCMB/ODM_PRMVALSEL_TAB,
lv_ET_PRTSEL TYPE /SCMB/ODM_PRTSEL_TAB,
lv_IO_QUERY TYPE /SCMB/CL_DL_QUERY,
lv_other TYPE c.

CALL METHOD lo_class=>ANALYSE_QUERY(
EXPORTING
IO_QUERY = lv_IO_QUERY
IMPORTING
ET_MATLOC = lv_ET_MATLOC
ET_ORDID = lv_ET_ORDID
ET_ORDNO = lv_ET_ORDNO
ET_ORTYPE = lv_ET_ORTYPE
ET_PRMVALRNG = lv_ET_PRMVALRNG
ET_PRMVALSEL = lv_ET_PRMVALSEL
ET_PRTSEL = lv_ET_PRTSEL ).

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!