BOOKING_CHECKS SAP Method xLSO Booking Checks









Below is documentation, parameters and attributes of ABAP Method BOOKING_CHECKS within SAP class /XLSO/CL_BOOKING_CHECKS. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /XLSO/CL_BOOKING_CHECKS 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 BOOKING_CHECKS can also be found below:

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


Parameters of Method BOOKING_CHECKS

.

NameTypeData TypeDescriptionDefault Value
IT_PARTICIPANTSImportingTYPE
/XLSO/TT_USER
Learners User List (SU01 User)
IV_NN_BOOKING_COUNTImportingTYPE
DZMENG
Target quantity in sales units
IV_PRODUCT_IDImportingTYPE
HROBJID
Object ID
IV_PRODUCT_TYPEImportingTYPE
OTYPE
Object Type
IV_UPLIFT_XImportingTYPE
LSO_X_C
Checkbox
ET_MESSAGESExportingTYPE
BAPIRET2_T
Return parameter table



Exceptions of Method BOOKING_CHECKS

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO /XLSO/CL_BOOKING_CHECKS.
DATA: lv_ET_MESSAGES TYPE BAPIRET2_T,
lv_IT_PARTICIPANTS TYPE /XLSO/TT_USER,
lv_IV_NN_BOOKING_COUNT TYPE DZMENG,
lv_IV_PRODUCT_ID TYPE HROBJID,
lv_IV_PRODUCT_TYPE TYPE OTYPE,
lv_IV_UPLIFT_X TYPE LSO_X_C,
lv_other TYPE c.

CALL METHOD lo_class=>BOOKING_CHECKS(
EXPORTING
IT_PARTICIPANTS = lv_IT_PARTICIPANTS
IV_NN_BOOKING_COUNT = lv_IV_NN_BOOKING_COUNT
IV_PRODUCT_ID = lv_IV_PRODUCT_ID
IV_PRODUCT_TYPE = lv_IV_PRODUCT_TYPE
IV_UPLIFT_X = lv_IV_UPLIFT_X
IMPORTING
ET_MESSAGES = lv_ET_MESSAGES ).

Links to Related Class(s)

/XLSO/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!