/CBAD/CHECK_DLI SAP Method Prüfen, ob Dynamischer Posten zur Position gehört









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

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


Parameters of Method /CBAD/CHECK_DLI

.

NameTypeData TypeDescriptionDefault Value
IT_OBJImportingTYPE
AD01_OBJ_TAB
I_DLIImportingTYPE
AD01DLI
Dynamische Posten (DP)
I_FLAG_RESULTS_ANALImportingTYPE
SY-BATCH
Programm läuft im Hintergrund
I_PROFNRImportingTYPE
AD01C_PROF-PROFNR
Dynamische-Posten-Prozessorprofil
I_USAGEImportingTYPE
AD01C_PROF-DPUS
Verwendung des DP-Profils
I_VBELNImportingTYPE
VBAP-VBELN
Verkaufsbeleg
I_VBPOSImportingTYPE
VBAP-POSNR
Verkaufsbelegposition
E_PROCESS_DLIExportingTYPE
BOOLE_D
Datenelement zur Domäne BOOLE: TRUE (='X') und FALSE (=' ')



Exceptions of Method /CBAD/CHECK_DLI

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_CBAD_DIP_AD010001.
DATA: lv_E_PROCESS_DLI TYPE BOOLE_D,
lv_IT_OBJ TYPE AD01_OBJ_TAB,
lv_I_DLI TYPE AD01DLI,
lv_I_FLAG_RESULTS_ANAL TYPE SY-BATCH,
lv_I_PROFNR TYPE AD01C_PROF-PROFNR,
lv_I_USAGE TYPE AD01C_PROF-DPUS,
lv_I_VBELN TYPE VBAP-VBELN,
lv_I_VBPOS TYPE VBAP-POSNR,
lv_other TYPE c.

CALL METHOD lo_class=>/CBAD/CHECK_DLI(
EXPORTING
IT_OBJ = lv_IT_OBJ
I_DLI = lv_I_DLI
I_FLAG_RESULTS_ANAL = lv_I_FLAG_RESULTS_ANAL
I_PROFNR = lv_I_PROFNR
I_USAGE = lv_I_USAGE
I_VBELN = lv_I_VBELN
I_VBPOS = lv_I_VBPOS
IMPORTING
E_PROCESS_DLI = lv_E_PROCESS_DLI ).

Links to Related Class(s)

IF_EX_CB...
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!