CHECK_FOR_LEFTOVER SAP Method Check for left over demands and create alert
Below is documentation, parameters and attributes of ABAP Method CHECK_FOR_LEFTOVER within SAP class /SCA/CL_LOAD_BUILDER. 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 /SCA/CL_LOAD_BUILDER 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 CHECK_FOR_LEFTOVER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_FOR_LEFTOVER
.| Name | Type | Data Type | Description | Default Value |
| IV_FIRST_PERIOD | Importing | TYPE /SCMB/TSDM_PERID | Period sequence number identification | |
| IV_LAST_PERIOD | Importing | TYPE /SCMB/TSDM_PERID | Period sequence number identification | |
| EV_LEFTOVER_EXISTS | Exporting | TYPE FLAG | General Flag |
Exceptions of Method CHECK_FOR_LEFTOVER
/SCA/CX_TLB - TLB exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCA/CL_LOAD_BUILDER.
DATA: lv_EV_LEFTOVER_EXISTS TYPE FLAG,
lv_IV_FIRST_PERIOD TYPE /SCMB/TSDM_PERID,
lv_IV_LAST_PERIOD TYPE /SCMB/TSDM_PERID,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_FOR_LEFTOVER(
EXPORTING
IV_FIRST_PERIOD = lv_IV_FIRST_PERIOD
IV_LAST_PERIOD = lv_IV_LAST_PERIOD
IMPORTING
EV_LEFTOVER_EXISTS = lv_EV_LEFTOVER_EXISTS ).
Links to Related Class(s)
/SCA/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects