SAP ISB_CF_METHOD Function Module for Methodenbaustein fixe Cashflows
ISB_CF_METHOD is a standard isb cf method SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Methodenbaustein fixe Cashflows 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 cf method FM, simply by entering the name ISB_CF_METHOD 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_CF_METHOD 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_CF_METHOD'"Methodenbaustein fixe Cashflows.
EXPORTING
* AKT_DATUM = SY-DATUM "
I_AUSWERTUNG = "
I_ANZ_WAEHR = "
I_JBRBEST = "
I_JBRMSEG = "
REGELTYP = "
IMPORTING
AKT_BARWERT = "
TABLES
I_JBRBEWEG = "
I_METHODEN = "
E_JBREOALL = "
* E_EXPOSURE = "
EXCEPTIONS
ERROR_FOUND = 1
IMPORTING Parameters details for ISB_CF_METHOD
AKT_DATUM -
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_AUSWERTUNG -
Data type: ATSYC-AUSWTOptional: No
Call by Reference: No ( called with pass by value option)
I_ANZ_WAEHR -
Data type: JBDZSTR-WWAERSOptional: No
Call by Reference: No ( called with pass by value option)
I_JBRBEST -
Data type: JBRBESTOptional: No
Call by Reference: No ( called with pass by value option)
I_JBRMSEG -
Data type: JBRMSEGOptional: No
Call by Reference: No ( called with pass by value option)
REGELTYP -
Data type: JBRREG-REGELTYPOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISB_CF_METHOD
AKT_BARWERT -
Data type: JBREOALL-BARWERTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_CF_METHOD
I_JBRBEWEG -
Data type: JBRBEWEGOptional: No
Call by Reference: No ( called with pass by value option)
I_METHODEN -
Data type: VTVMETHODOptional: No
Call by Reference: No ( called with pass by value option)
E_JBREOALL -
Data type: JBREOALLOptional: No
Call by Reference: No ( called with pass by value option)
E_EXPOSURE -
Data type: VTVCASHFLOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_CF_METHOD 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 JBREOALL-BARWERT, " | |||
| lv_error_found | TYPE JBREOALL, " | |||
| lt_i_methoden | TYPE STANDARD TABLE OF VTVMETHOD, " | |||
| lv_i_auswertung | TYPE ATSYC-AUSWT, " | |||
| lt_e_jbreoall | TYPE STANDARD TABLE OF JBREOALL, " | |||
| lv_i_anz_waehr | TYPE JBDZSTR-WWAERS, " | |||
| lv_i_jbrbest | TYPE JBRBEST, " | |||
| lt_e_exposure | TYPE STANDARD TABLE OF VTVCASHFL, " | |||
| lv_i_jbrmseg | TYPE JBRMSEG, " | |||
| lv_regeltyp | TYPE JBRREG-REGELTYP. " |
|   CALL FUNCTION 'ISB_CF_METHOD' "Methodenbaustein fixe Cashflows |
| EXPORTING | ||
| AKT_DATUM | = lv_akt_datum | |
| I_AUSWERTUNG | = lv_i_auswertung | |
| I_ANZ_WAEHR | = lv_i_anz_waehr | |
| I_JBRBEST | = lv_i_jbrbest | |
| I_JBRMSEG | = lv_i_jbrmseg | |
| REGELTYP | = lv_regeltyp | |
| IMPORTING | ||
| AKT_BARWERT | = lv_akt_barwert | |
| TABLES | ||
| I_JBRBEWEG | = lt_i_jbrbeweg | |
| I_METHODEN | = lt_i_methoden | |
| E_JBREOALL | = lt_e_jbreoall | |
| E_EXPOSURE | = lt_e_exposure | |
| EXCEPTIONS | ||
| ERROR_FOUND = 1 | ||
| . " ISB_CF_METHOD | ||
ABAP code using 7.40 inline data declarations to call FM ISB_CF_METHOD
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 BARWERT FROM JBREOALL INTO @DATA(ld_akt_barwert). | ||||
| "SELECT single AUSWT FROM ATSYC INTO @DATA(ld_i_auswertung). | ||||
| "SELECT single WWAERS FROM JBDZSTR INTO @DATA(ld_i_anz_waehr). | ||||
| "SELECT single REGELTYP FROM JBRREG INTO @DATA(ld_regeltyp). | ||||
Search for further information about these or an SAP related objects