SAP ISB_RM_NOT_AGGR_WP_BARWERT Function Module for RM Barwertrechner für nicht auf Index abgebildete Aktien und Aktienerivate









ISB_RM_NOT_AGGR_WP_BARWERT is a standard isb rm not aggr wp barwert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RM Barwertrechner für nicht auf Index abgebildete Aktien und Aktienerivate processing and below is the pattern details for this FM, 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 isb rm not aggr wp barwert FM, simply by entering the name ISB_RM_NOT_AGGR_WP_BARWERT into the relevant SAP transaction such as SE37 or SE38.

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



Function ISB_RM_NOT_AGGR_WP_BARWERT 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 'ISB_RM_NOT_AGGR_WP_BARWERT'"RM Barwertrechner für nicht auf Index abgebildete Aktien und Aktienerivate
EXPORTING
* AKT_DATUM = SY-DATUM "
AUSWTYP = "
RES_CURR = "
* SZENAME = ' ' "
I_JBRBEST = "
I_JBRMSEG = "
* SHIFT_REGEL = "

IMPORTING
AKT_BARWERT = "

TABLES
I_JBRBEWEG = "
I_JBROPTI = "
I_JBRUBEWEG = "

EXCEPTIONS
AUSWT_NOT_FOUND = 1 MARKET_DATA_RATES = 2 MARKET_DATA_SPOT = 3 NO_CALC = 4
.



IMPORTING Parameters details for ISB_RM_NOT_AGGR_WP_BARWERT

AKT_DATUM -

Data type: SY-DATUM
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

AUSWTYP -

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

RES_CURR -

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

SZENAME -

Data type: VTVSZKO-SZENARI
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_JBRBEST -

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

I_JBRMSEG -

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

SHIFT_REGEL -

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

EXPORTING Parameters details for ISB_RM_NOT_AGGR_WP_BARWERT

AKT_BARWERT -

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

TABLES Parameters details for ISB_RM_NOT_AGGR_WP_BARWERT

I_JBRBEWEG -

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

I_JBROPTI -

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

I_JBRUBEWEG -

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

EXCEPTIONS details

AUSWT_NOT_FOUND -

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

MARKET_DATA_RATES -

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

MARKET_DATA_SPOT -

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

NO_CALC -

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

Copy and paste ABAP code example for ISB_RM_NOT_AGGR_WP_BARWERT 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_akt_datum  TYPE SY-DATUM, "   SY-DATUM
lt_i_jbrbeweg  TYPE STANDARD TABLE OF JBRBEWEG, "   
lv_akt_barwert  TYPE JBRBEWEG, "   
lv_auswt_not_found  TYPE JBRBEWEG, "   
lv_auswtyp  TYPE ATVMO-AUSWT, "   
lt_i_jbropti  TYPE STANDARD TABLE OF JBROPTI, "   
lv_market_data_rates  TYPE JBROPTI, "   
lv_res_curr  TYPE JBRBEST-SBWHR, "   
lt_i_jbrubeweg  TYPE STANDARD TABLE OF JBRBEWEG, "   
lv_market_data_spot  TYPE JBRBEWEG, "   
lv_no_calc  TYPE JBRBEWEG, "   
lv_szename  TYPE VTVSZKO-SZENARI, "   SPACE
lv_i_jbrbest  TYPE JBRBEST, "   
lv_i_jbrmseg  TYPE JBRMSEG, "   
lv_shift_regel  TYPE JBRREG. "   

  CALL FUNCTION 'ISB_RM_NOT_AGGR_WP_BARWERT'  "RM Barwertrechner für nicht auf Index abgebildete Aktien und Aktienerivate
    EXPORTING
         AKT_DATUM = lv_akt_datum
         AUSWTYP = lv_auswtyp
         RES_CURR = lv_res_curr
         SZENAME = lv_szename
         I_JBRBEST = lv_i_jbrbest
         I_JBRMSEG = lv_i_jbrmseg
         SHIFT_REGEL = lv_shift_regel
    IMPORTING
         AKT_BARWERT = lv_akt_barwert
    TABLES
         I_JBRBEWEG = lt_i_jbrbeweg
         I_JBROPTI = lt_i_jbropti
         I_JBRUBEWEG = lt_i_jbrubeweg
    EXCEPTIONS
        AUSWT_NOT_FOUND = 1
        MARKET_DATA_RATES = 2
        MARKET_DATA_SPOT = 3
        NO_CALC = 4
. " ISB_RM_NOT_AGGR_WP_BARWERT




ABAP code using 7.40 inline data declarations to call FM ISB_RM_NOT_AGGR_WP_BARWERT

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 DATUM FROM SY INTO @DATA(ld_akt_datum).
DATA(ld_akt_datum) = SY-DATUM.
 
 
 
 
"SELECT single AUSWT FROM ATVMO INTO @DATA(ld_auswtyp).
 
 
 
"SELECT single SBWHR FROM JBRBEST INTO @DATA(ld_res_curr).
 
 
 
 
"SELECT single SZENARI FROM VTVSZKO INTO @DATA(ld_szename).
DATA(ld_szename) = ' '.
 
 
 
 


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!