ISB_RM_NOT_AGGR_WP_METHODS 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_NOT_AGGR_WP_METHODS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JBRM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISB_RM_NOT_AGGR_WP_METHODS' "IS-B: RM Berechnungsmethoden für auf Index abgebildete Aktien/Aktienderiv.
EXPORTING
* akt_datum = SY-DATUM " sy-datum aktuelles Datum
i_jbrbest = " jbrbest Feldleiste mit Kopfdaten der Option
res_curr = " jbrbest-sbwhr Währung des Ergebnises
auswtyp = " atsyc-auswt nicht benutzt
i_jbrmseg = " jbrmseg Marktdatenparameter
TABLES
* e_cashflow = " vtvcashfl Cashflowtabelle
e_methoden = " vtvmethod Exportstruktur Ergebnisse
i_methoden = " vtvmethod Tabelle zu rechnender Methoden, Ergebnistabelle
i_jbrbeweg = " jbrbeweg Zusatzbewegungen (Prämienzahlungen!)
i_jbropti = " jbropti
i_jbrubeweg = " jbrbeweg
* e_exposure = " vtvcashfl Exposuretabelle
EXCEPTIONS
MARKET_DATA_RATES = 1 " Fehler bei Marktdatenbesorgung Zinsen
MARKET_DATA_SPOT = 2 " Fehler bei Marktdatenbesorgung Kurse
NO_CALC = 3 " Fehler beim Rechnen
. " ISB_RM_NOT_AGGR_WP_METHODS
The ABAP code below is a full code listing to execute function module ISB_RM_NOT_AGGR_WP_METHODS 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_e_cashflow | TYPE STANDARD TABLE OF VTVCASHFL,"TABLES PARAM |
| wa_e_cashflow | LIKE LINE OF it_e_cashflow , |
| it_e_methoden | TYPE STANDARD TABLE OF VTVMETHOD,"TABLES PARAM |
| wa_e_methoden | LIKE LINE OF it_e_methoden , |
| it_i_methoden | TYPE STANDARD TABLE OF VTVMETHOD,"TABLES PARAM |
| wa_i_methoden | LIKE LINE OF it_i_methoden , |
| it_i_jbrbeweg | TYPE STANDARD TABLE OF JBRBEWEG,"TABLES PARAM |
| wa_i_jbrbeweg | LIKE LINE OF it_i_jbrbeweg , |
| it_i_jbropti | TYPE STANDARD TABLE OF JBROPTI,"TABLES PARAM |
| wa_i_jbropti | LIKE LINE OF it_i_jbropti , |
| it_i_jbrubeweg | TYPE STANDARD TABLE OF JBRBEWEG,"TABLES PARAM |
| wa_i_jbrubeweg | LIKE LINE OF it_i_jbrubeweg , |
| it_e_exposure | TYPE STANDARD TABLE OF VTVCASHFL,"TABLES PARAM |
| wa_e_exposure | LIKE LINE OF it_e_exposure . |
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_akt_datum | TYPE SY-DATUM , |
| it_e_cashflow | TYPE STANDARD TABLE OF VTVCASHFL , |
| wa_e_cashflow | LIKE LINE OF it_e_cashflow, |
| ld_i_jbrbest | TYPE JBRBEST , |
| it_e_methoden | TYPE STANDARD TABLE OF VTVMETHOD , |
| wa_e_methoden | LIKE LINE OF it_e_methoden, |
| ld_res_curr | TYPE JBRBEST-SBWHR , |
| it_i_methoden | TYPE STANDARD TABLE OF VTVMETHOD , |
| wa_i_methoden | LIKE LINE OF it_i_methoden, |
| ld_auswtyp | TYPE ATSYC-AUSWT , |
| it_i_jbrbeweg | TYPE STANDARD TABLE OF JBRBEWEG , |
| wa_i_jbrbeweg | LIKE LINE OF it_i_jbrbeweg, |
| ld_i_jbrmseg | TYPE JBRMSEG , |
| it_i_jbropti | TYPE STANDARD TABLE OF JBROPTI , |
| wa_i_jbropti | LIKE LINE OF it_i_jbropti, |
| it_i_jbrubeweg | TYPE STANDARD TABLE OF JBRBEWEG , |
| wa_i_jbrubeweg | LIKE LINE OF it_i_jbrubeweg, |
| it_e_exposure | TYPE STANDARD TABLE OF VTVCASHFL , |
| wa_e_exposure | LIKE LINE OF it_e_exposure. |
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_NOT_AGGR_WP_METHODS or its description.
ISB_RM_NOT_AGGR_WP_METHODS - IS-B: RM Berechnungsmethoden für auf Index abgebildete Aktien/Aktiende ISB_RM_NOT_AGGR_WP_BARWERT - RM Barwertrechner für nicht auf Index abgebildete Aktien und Aktieneri ISB_RM_NIPL_OBJECT_CHECK - IS-B: RM Check Konten ISB_RM_MTASK_PARAM_READ - Parallelisierungsparameters lesen ISB_RM_MHIER_UTIME_CHECK - IS-B: RM Prüft Merkmalshierarchien in einer PortfHier auf Aktualität ISB_RM_MHIER_UPDATE - IS-B: RM aktualisiert die Backuptabelle der Merkmalshierarchien