SAP ISB_LOAN_CONVERT_VALUT Function Module for IS-B: Konvertierung IS-B-Zahlungsstrom in BEPP-Struktur









ISB_LOAN_CONVERT_VALUT is a standard isb loan convert valut SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-B: Konvertierung IS-B-Zahlungsstrom in BEPP-Struktur 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 loan convert valut FM, simply by entering the name ISB_LOAN_CONVERT_VALUT into the relevant SAP transaction such as SE37 or SE38.

Function Group: JBDP
Program Name: SAPLJBDP
Main Program: SAPLJBDP
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISB_LOAN_CONVERT_VALUT 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_LOAN_CONVERT_VALUT'"IS-B: Konvertierung IS-B-Zahlungsstrom in BEPP-Struktur
EXPORTING
BUKRS = "Buchungskreis
RANL = "Vertragsnummer
WGWAER = "Geschäftswährung
* MODE = 'I' "Modus für DB-Operation

IMPORTING
ERROR_ITAB = "Fehlertabelle

TABLES
IBEPP = "VDBEPP-Ziel-Struktur
WRK_JBDZSTR = "IS-B-Zahlungsstrom

EXCEPTIONS
ERROR_FOUND = 1 NO_IMPORT = 2
.



IMPORTING Parameters details for ISB_LOAN_CONVERT_VALUT

BUKRS - Buchungskreis

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

RANL - Vertragsnummer

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

WGWAER - Geschäftswährung

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

MODE - Modus für DB-Operation

Data type: JBIBEPP-MODE
Default: 'I'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISB_LOAN_CONVERT_VALUT

ERROR_ITAB - Fehlertabelle

Data type: SPROT_X
Optional: No
Call by Reference: Yes

TABLES Parameters details for ISB_LOAN_CONVERT_VALUT

IBEPP - VDBEPP-Ziel-Struktur

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

WRK_JBDZSTR - IS-B-Zahlungsstrom

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

EXCEPTIONS details

ERROR_FOUND - Primanota nicht vergeben

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

NO_IMPORT - Fehlende Import-Parameter

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

Copy and paste ABAP code example for ISB_LOAN_CONVERT_VALUT 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_bukrs  TYPE JBDGSCH-BUKRS, "   
lt_ibepp  TYPE STANDARD TABLE OF JBIBEPP, "   
lv_error_itab  TYPE SPROT_X, "   
lv_error_found  TYPE SPROT_X, "   
lv_ranl  TYPE VDARL-RANL, "   
lv_no_import  TYPE VDARL, "   
lt_wrk_jbdzstr  TYPE STANDARD TABLE OF JBDZSTR, "   
lv_wgwaer  TYPE JBDGSCH-WGWAER, "   
lv_mode  TYPE JBIBEPP-MODE. "   'I'

  CALL FUNCTION 'ISB_LOAN_CONVERT_VALUT'  "IS-B: Konvertierung IS-B-Zahlungsstrom in BEPP-Struktur
    EXPORTING
         BUKRS = lv_bukrs
         RANL = lv_ranl
         WGWAER = lv_wgwaer
         MODE = lv_mode
    IMPORTING
         ERROR_ITAB = lv_error_itab
    TABLES
         IBEPP = lt_ibepp
         WRK_JBDZSTR = lt_wrk_jbdzstr
    EXCEPTIONS
        ERROR_FOUND = 1
        NO_IMPORT = 2
. " ISB_LOAN_CONVERT_VALUT




ABAP code using 7.40 inline data declarations to call FM ISB_LOAN_CONVERT_VALUT

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 BUKRS FROM JBDGSCH INTO @DATA(ld_bukrs).
 
 
 
 
"SELECT single RANL FROM VDARL INTO @DATA(ld_ranl).
 
 
 
"SELECT single WGWAER FROM JBDGSCH INTO @DATA(ld_wgwaer).
 
"SELECT single MODE FROM JBIBEPP INTO @DATA(ld_mode).
DATA(ld_mode) = 'I'.
 


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!