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
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
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).
| 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 . |
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. |
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.
ISB_RM_BO_CHECK - IS-B: RM Object-Check Steuerung nach Instrumenten ISB_RM_BEWREG_FOR_BP_GET - nicht mehr verwendet? ISB_RM_BETA_MAPPING - IS-B: RM Abbildung von Aktien und Aktienderivaten auf einen Index ISB_RM_BARWERT_ALT - IS-B: RM Barwertauswertung ISB_RM_BARWERT - IS-B: RM Barwertauswertung ISB_RM_BALANCES_OBJECT_CHECK - IS-B: RM Check Konten