SAP Function Modules

ISB_RM_BO_CHECK SAP Function module - IS-B: RM Object-Check Steuerung nach Instrumenten







ISB_RM_BO_CHECK is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name ISB_RM_BO_CHECK into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: JBR7
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISB_RM_BO_CHECK - ISB RM BO CHECK





CALL FUNCTION 'ISB_RM_BO_CHECK' "IS-B: RM Object-Check Steuerung nach Instrumenten
  EXPORTING
*   check = 3                   " jbistru-check  Check-Level: 0, 1, 2, 3
    if_fdue_reorg =             " c             REORG-Flag
  TABLES
    it_jbixobext =              " jbixobext     Zu verarbeitende FDÜ-Übergabesätze
    it_jbrsi_fdue =             " jbrsi         Sichten, für die FDÜ läuft
    it_jbrbpcfv_old =           " jbrbpcfvn     Cashflow-Verwaltung zum löschen (kommt leer)
    it_jbrbpcfv_new =           " jbrbpcfvn     Cashflow-Verwaltung zum einfügen (kommt leer)
    it_jbrbstv_old =            " jbrbstv       Bestände-Verwaltung zum löschen (kommt leer)
    it_jbrbstv_new =            " jbrbstv       Bestände-Verwaltung zum einfügen (kommt leer)
    it_jbrubstv_old =           " jbrubstv
    it_jbrubstv_new =           " jbrubstv
    it_jbraccount_old =         " jbraccount    Saldofortschreibung Konten (kommt leer)
    it_jbraccount_new =         " jbraccount    Saldofortschreibung Konten (kommt leer)
    it_jbregsh_old =            " jbregsh       Einzelgesch.BP- u.Verw. zum löschen (kommt leer)
    it_jbregsh_new =            " jbregsh       Einzelgesch.BP- u.Verw. zum einfügen(kommt leer)
    it_jbrbpfart =              " jbrbpfart
    it_vworde =                 " vworde        (globale) Tabelle mit VWORDE-Einträgen
    it_vzkopf =                 " vzkopf        (globale) Tabelle mit VTBFHA/VTBFHAZU-Einträgen
    error_itab =                " sprot_x       Fehlertabelle (bezieht sich auf IT_JBIXOBEXT)
    .  "  ISB_RM_BO_CHECK

ABAP code example for Function Module ISB_RM_BO_CHECK





The ABAP code below is a full code listing to execute function module ISB_RM_BO_CHECK including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
it_it_jbixobext  TYPE STANDARD TABLE OF JBIXOBEXT,"TABLES PARAM
wa_it_jbixobext  LIKE LINE OF it_it_jbixobext ,
it_it_jbrsi_fdue  TYPE STANDARD TABLE OF JBRSI,"TABLES PARAM
wa_it_jbrsi_fdue  LIKE LINE OF it_it_jbrsi_fdue ,
it_it_jbrbpcfv_old  TYPE STANDARD TABLE OF JBRBPCFVN,"TABLES PARAM
wa_it_jbrbpcfv_old  LIKE LINE OF it_it_jbrbpcfv_old ,
it_it_jbrbpcfv_new  TYPE STANDARD TABLE OF JBRBPCFVN,"TABLES PARAM
wa_it_jbrbpcfv_new  LIKE LINE OF it_it_jbrbpcfv_new ,
it_it_jbrbstv_old  TYPE STANDARD TABLE OF JBRBSTV,"TABLES PARAM
wa_it_jbrbstv_old  LIKE LINE OF it_it_jbrbstv_old ,
it_it_jbrbstv_new  TYPE STANDARD TABLE OF JBRBSTV,"TABLES PARAM
wa_it_jbrbstv_new  LIKE LINE OF it_it_jbrbstv_new ,
it_it_jbrubstv_old  TYPE STANDARD TABLE OF JBRUBSTV,"TABLES PARAM
wa_it_jbrubstv_old  LIKE LINE OF it_it_jbrubstv_old ,
it_it_jbrubstv_new  TYPE STANDARD TABLE OF JBRUBSTV,"TABLES PARAM
wa_it_jbrubstv_new  LIKE LINE OF it_it_jbrubstv_new ,
it_it_jbraccount_old  TYPE STANDARD TABLE OF JBRACCOUNT,"TABLES PARAM
wa_it_jbraccount_old  LIKE LINE OF it_it_jbraccount_old ,
it_it_jbraccount_new  TYPE STANDARD TABLE OF JBRACCOUNT,"TABLES PARAM
wa_it_jbraccount_new  LIKE LINE OF it_it_jbraccount_new ,
it_it_jbregsh_old  TYPE STANDARD TABLE OF JBREGSH,"TABLES PARAM
wa_it_jbregsh_old  LIKE LINE OF it_it_jbregsh_old ,
it_it_jbregsh_new  TYPE STANDARD TABLE OF JBREGSH,"TABLES PARAM
wa_it_jbregsh_new  LIKE LINE OF it_it_jbregsh_new ,
it_it_jbrbpfart  TYPE STANDARD TABLE OF JBRBPFART,"TABLES PARAM
wa_it_jbrbpfart  LIKE LINE OF it_it_jbrbpfart ,
it_it_vworde  TYPE STANDARD TABLE OF VWORDE,"TABLES PARAM
wa_it_vworde  LIKE LINE OF it_it_vworde ,
it_it_vzkopf  TYPE STANDARD TABLE OF VZKOPF,"TABLES PARAM
wa_it_vzkopf  LIKE LINE OF it_it_vzkopf ,
it_error_itab  TYPE STANDARD TABLE OF SPROT_X,"TABLES PARAM
wa_error_itab  LIKE LINE OF it_error_itab .


DATA(ld_check) = some text here
DATA(ld_if_fdue_reorg) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_jbixobext to it_it_jbixobext.

"populate fields of struture and append to itab
append wa_it_jbrsi_fdue to it_it_jbrsi_fdue.

"populate fields of struture and append to itab
append wa_it_jbrbpcfv_old to it_it_jbrbpcfv_old.

"populate fields of struture and append to itab
append wa_it_jbrbpcfv_new to it_it_jbrbpcfv_new.

"populate fields of struture and append to itab
append wa_it_jbrbstv_old to it_it_jbrbstv_old.

"populate fields of struture and append to itab
append wa_it_jbrbstv_new to it_it_jbrbstv_new.

"populate fields of struture and append to itab
append wa_it_jbrubstv_old to it_it_jbrubstv_old.

"populate fields of struture and append to itab
append wa_it_jbrubstv_new to it_it_jbrubstv_new.

"populate fields of struture and append to itab
append wa_it_jbraccount_old to it_it_jbraccount_old.

"populate fields of struture and append to itab
append wa_it_jbraccount_new to it_it_jbraccount_new.

"populate fields of struture and append to itab
append wa_it_jbregsh_old to it_it_jbregsh_old.

"populate fields of struture and append to itab
append wa_it_jbregsh_new to it_it_jbregsh_new.

"populate fields of struture and append to itab
append wa_it_jbrbpfart to it_it_jbrbpfart.

"populate fields of struture and append to itab
append wa_it_vworde to it_it_vworde.

"populate fields of struture and append to itab
append wa_it_vzkopf to it_it_vzkopf.

"populate fields of struture and append to itab
append wa_error_itab to it_error_itab. . CALL FUNCTION 'ISB_RM_BO_CHECK' EXPORTING * check = ld_check if_fdue_reorg = ld_if_fdue_reorg TABLES it_jbixobext = it_it_jbixobext it_jbrsi_fdue = it_it_jbrsi_fdue it_jbrbpcfv_old = it_it_jbrbpcfv_old it_jbrbpcfv_new = it_it_jbrbpcfv_new it_jbrbstv_old = it_it_jbrbstv_old it_jbrbstv_new = it_it_jbrbstv_new it_jbrubstv_old = it_it_jbrubstv_old it_jbrubstv_new = it_it_jbrubstv_new it_jbraccount_old = it_it_jbraccount_old it_jbraccount_new = it_it_jbraccount_new it_jbregsh_old = it_it_jbregsh_old it_jbregsh_new = it_it_jbregsh_new it_jbrbpfart = it_it_jbrbpfart it_vworde = it_it_vworde it_vzkopf = it_it_vzkopf error_itab = it_error_itab . " ISB_RM_BO_CHECK
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_check  TYPE JBISTRU-CHECK ,
it_it_jbixobext  TYPE STANDARD TABLE OF JBIXOBEXT ,
wa_it_jbixobext  LIKE LINE OF it_it_jbixobext,
ld_if_fdue_reorg  TYPE C ,
it_it_jbrsi_fdue  TYPE STANDARD TABLE OF JBRSI ,
wa_it_jbrsi_fdue  LIKE LINE OF it_it_jbrsi_fdue,
it_it_jbrbpcfv_old  TYPE STANDARD TABLE OF JBRBPCFVN ,
wa_it_jbrbpcfv_old  LIKE LINE OF it_it_jbrbpcfv_old,
it_it_jbrbpcfv_new  TYPE STANDARD TABLE OF JBRBPCFVN ,
wa_it_jbrbpcfv_new  LIKE LINE OF it_it_jbrbpcfv_new,
it_it_jbrbstv_old  TYPE STANDARD TABLE OF JBRBSTV ,
wa_it_jbrbstv_old  LIKE LINE OF it_it_jbrbstv_old,
it_it_jbrbstv_new  TYPE STANDARD TABLE OF JBRBSTV ,
wa_it_jbrbstv_new  LIKE LINE OF it_it_jbrbstv_new,
it_it_jbrubstv_old  TYPE STANDARD TABLE OF JBRUBSTV ,
wa_it_jbrubstv_old  LIKE LINE OF it_it_jbrubstv_old,
it_it_jbrubstv_new  TYPE STANDARD TABLE OF JBRUBSTV ,
wa_it_jbrubstv_new  LIKE LINE OF it_it_jbrubstv_new,
it_it_jbraccount_old  TYPE STANDARD TABLE OF JBRACCOUNT ,
wa_it_jbraccount_old  LIKE LINE OF it_it_jbraccount_old,
it_it_jbraccount_new  TYPE STANDARD TABLE OF JBRACCOUNT ,
wa_it_jbraccount_new  LIKE LINE OF it_it_jbraccount_new,
it_it_jbregsh_old  TYPE STANDARD TABLE OF JBREGSH ,
wa_it_jbregsh_old  LIKE LINE OF it_it_jbregsh_old,
it_it_jbregsh_new  TYPE STANDARD TABLE OF JBREGSH ,
wa_it_jbregsh_new  LIKE LINE OF it_it_jbregsh_new,
it_it_jbrbpfart  TYPE STANDARD TABLE OF JBRBPFART ,
wa_it_jbrbpfart  LIKE LINE OF it_it_jbrbpfart,
it_it_vworde  TYPE STANDARD TABLE OF VWORDE ,
wa_it_vworde  LIKE LINE OF it_it_vworde,
it_it_vzkopf  TYPE STANDARD TABLE OF VZKOPF ,
wa_it_vzkopf  LIKE LINE OF it_it_vzkopf,
it_error_itab  TYPE STANDARD TABLE OF SPROT_X ,
wa_error_itab  LIKE LINE OF it_error_itab.


ld_check = some text here

"populate fields of struture and append to itab
append wa_it_jbixobext to it_it_jbixobext.
ld_if_fdue_reorg = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_jbrsi_fdue to it_it_jbrsi_fdue.

"populate fields of struture and append to itab
append wa_it_jbrbpcfv_old to it_it_jbrbpcfv_old.

"populate fields of struture and append to itab
append wa_it_jbrbpcfv_new to it_it_jbrbpcfv_new.

"populate fields of struture and append to itab
append wa_it_jbrbstv_old to it_it_jbrbstv_old.

"populate fields of struture and append to itab
append wa_it_jbrbstv_new to it_it_jbrbstv_new.

"populate fields of struture and append to itab
append wa_it_jbrubstv_old to it_it_jbrubstv_old.

"populate fields of struture and append to itab
append wa_it_jbrubstv_new to it_it_jbrubstv_new.

"populate fields of struture and append to itab
append wa_it_jbraccount_old to it_it_jbraccount_old.

"populate fields of struture and append to itab
append wa_it_jbraccount_new to it_it_jbraccount_new.

"populate fields of struture and append to itab
append wa_it_jbregsh_old to it_it_jbregsh_old.

"populate fields of struture and append to itab
append wa_it_jbregsh_new to it_it_jbregsh_new.

"populate fields of struture and append to itab
append wa_it_jbrbpfart to it_it_jbrbpfart.

"populate fields of struture and append to itab
append wa_it_vworde to it_it_vworde.

"populate fields of struture and append to itab
append wa_it_vzkopf to it_it_vzkopf.

"populate fields of struture and append to itab
append wa_error_itab to it_error_itab.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISB_RM_BO_CHECK or its description.