SAP INFO_OBJECTS_CHECK_BATCH Function Module for









INFO_OBJECTS_CHECK_BATCH is a standard info objects check batch SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for info objects check batch FM, simply by entering the name INFO_OBJECTS_CHECK_BATCH into the relevant SAP transaction such as SE37 or SE38.

Function Group: SI24
Program Name: SAPLSI24
Main Program: SAPLSI24
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function INFO_OBJECTS_CHECK_BATCH pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'INFO_OBJECTS_CHECK_BATCH'"
EXPORTING
* AREA = "
* ALL_CHECKS = ' ' "
* SELECT_CHECKS = ' ' "
* ALL_FOLDERS = ' ' "
* ALL_REL_FOLDERS = ' ' "
* LOAD_STD_EXTRACT = ' ' "
* DISPLAY_CONTEXT = 'X' "
* USER_TYPE = 'E' "
* SUPPRESS_AUTHORITY_CHECK = 'X' "

IMPORTING
ERROR_MSG = "

TABLES
* CONTEXT = "
* FOLDER = "
* CHECK_LIST = "

EXCEPTIONS
NO_CONTEXT = 1 CONTRARY_CHECKS_SELECTION = 2
.



IMPORTING Parameters details for INFO_OBJECTS_CHECK_BATCH

AREA -

Data type: IW_AREA
Optional: Yes
Call by Reference: No ( called with pass by value option)

ALL_CHECKS -

Data type: IWPARAMS-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

SELECT_CHECKS -

Data type: IWPARAMS-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

ALL_FOLDERS -

Data type: IWPARAMS-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

ALL_REL_FOLDERS -

Data type: IWPARAMS-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

LOAD_STD_EXTRACT -

Data type: IWPARAMS-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

DISPLAY_CONTEXT -

Data type: IWPARAMS-FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

USER_TYPE -

Data type: C
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUPPRESS_AUTHORITY_CHECK -

Data type: IWPARAMS-FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for INFO_OBJECTS_CHECK_BATCH

ERROR_MSG -

Data type: IWERRORMSG
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for INFO_OBJECTS_CHECK_BATCH

CONTEXT -

Data type: SDOKPROPTY
Optional: Yes
Call by Reference: No ( called with pass by value option)

FOLDER -

Data type: SDOKOBJECT
Optional: Yes
Call by Reference: No ( called with pass by value option)

CHECK_LIST -

Data type: CKLSTENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_CONTEXT -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

CONTRARY_CHECKS_SELECTION -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for INFO_OBJECTS_CHECK_BATCH Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_area  TYPE IW_AREA, "   
lt_context  TYPE STANDARD TABLE OF SDOKPROPTY, "   
lv_error_msg  TYPE IWERRORMSG, "   
lv_no_context  TYPE IWERRORMSG, "   
lt_folder  TYPE STANDARD TABLE OF SDOKOBJECT, "   
lv_all_checks  TYPE IWPARAMS-FLAG, "   ' '
lv_contrary_checks_selection  TYPE IWPARAMS, "   
lt_check_list  TYPE STANDARD TABLE OF CKLSTENT, "   
lv_select_checks  TYPE IWPARAMS-FLAG, "   ' '
lv_all_folders  TYPE IWPARAMS-FLAG, "   ' '
lv_all_rel_folders  TYPE IWPARAMS-FLAG, "   ' '
lv_load_std_extract  TYPE IWPARAMS-FLAG, "   ' '
lv_display_context  TYPE IWPARAMS-FLAG, "   'X'
lv_user_type  TYPE C, "   'E'
lv_suppress_authority_check  TYPE IWPARAMS-FLAG. "   'X'

  CALL FUNCTION 'INFO_OBJECTS_CHECK_BATCH'  "
    EXPORTING
         AREA = lv_area
         ALL_CHECKS = lv_all_checks
         SELECT_CHECKS = lv_select_checks
         ALL_FOLDERS = lv_all_folders
         ALL_REL_FOLDERS = lv_all_rel_folders
         LOAD_STD_EXTRACT = lv_load_std_extract
         DISPLAY_CONTEXT = lv_display_context
         USER_TYPE = lv_user_type
         SUPPRESS_AUTHORITY_CHECK = lv_suppress_authority_check
    IMPORTING
         ERROR_MSG = lv_error_msg
    TABLES
         CONTEXT = lt_context
         FOLDER = lt_folder
         CHECK_LIST = lt_check_list
    EXCEPTIONS
        NO_CONTEXT = 1
        CONTRARY_CHECKS_SELECTION = 2
. " INFO_OBJECTS_CHECK_BATCH




ABAP code using 7.40 inline data declarations to call FM INFO_OBJECTS_CHECK_BATCH

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_all_checks).
DATA(ld_all_checks) = ' '.
 
 
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_select_checks).
DATA(ld_select_checks) = ' '.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_all_folders).
DATA(ld_all_folders) = ' '.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_all_rel_folders).
DATA(ld_all_rel_folders) = ' '.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_load_std_extract).
DATA(ld_load_std_extract) = ' '.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_display_context).
DATA(ld_display_context) = 'X'.
 
DATA(ld_user_type) = 'E'.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_suppress_authority_check).
DATA(ld_suppress_authority_check) = 'X'.
 


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!