SAP ISB_JBD11_GET Function Module for NOTRANSL: Liefert JBD11 einer Zinskurvenart, Währung zu einem Konditionsda









ISB_JBD11_GET is a standard isb jbd11 get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Liefert JBD11 einer Zinskurvenart, Währung zu einem Konditionsda 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 jbd11 get FM, simply by entering the name ISB_JBD11_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function ISB_JBD11_GET 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_JBD11_GET'"NOTRANSL: Liefert JBD11 einer Zinskurvenart, Währung zu einem Konditionsda
EXPORTING
* KONDDATUM = SY-DATUM "Condition date
* BYPASSING_BUFFER_FLAG = 0 "DE-EN-LANG-SWITCH-NO-TRANSLATION
* KONDTIME = "Conds. time
KURVENART = "Yld Curve Type
WAEHRUNG = "Currency
* ZURUECK_SUCHEN = 1 "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_JBDFEED = "Datafeed Parametrization
* SET_USED_FLAG = 0 "DE-EN-LANG-SWITCH-NO-TRANSLATION
* CURRENCY_REPLACE = 0 "DE-EN-LANG-SWITCH-NO-TRANSLATION
* SAVE_CALCULATED_VAL = 0 "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_JBD14 = "Yield Curve Types (Header Information)

TABLES
E_JBD11 = "IS-B: Extended interest rate table

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for ISB_JBD11_GET

KONDDATUM - Condition date

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

BYPASSING_BUFFER_FLAG - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

KONDTIME - Conds. time

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

KURVENART - Yld Curve Type

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

WAEHRUNG - Currency

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

ZURUECK_SUCHEN - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_JBDFEED - Datafeed Parametrization

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

SET_USED_FLAG - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

CURRENCY_REPLACE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

SAVE_CALCULATED_VAL - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

EXPORTING Parameters details for ISB_JBD11_GET

E_JBD14 - Yield Curve Types (Header Information)

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

TABLES Parameters details for ISB_JBD11_GET

E_JBD11 - IS-B: Extended interest rate table

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

EXCEPTIONS details

NOT_FOUND -

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

Copy and paste ABAP code example for ISB_JBD11_GET 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:
lt_e_jbd11  TYPE STANDARD TABLE OF JBD11, "   
lv_e_jbd14  TYPE JBD14, "   
lv_konddatum  TYPE JBD11-DKOND, "   SY-DATUM
lv_not_found  TYPE JBD11, "   
lv_bypassing_buffer_flag  TYPE JBD2_NUMC1, "   0
lv_kondtime  TYPE JBDT56P-TIME, "   
lv_kurvenart  TYPE JBD14-SZKART, "   
lv_waehrung  TYPE JBD14-WWAER, "   
lv_zurueck_suchen  TYPE JBD14, "   1
lv_i_jbdfeed  TYPE JBDFEED, "   
lv_set_used_flag  TYPE JBD2_CHAR1, "   0
lv_currency_replace  TYPE JBD2_NUMC1, "   0
lv_save_calculated_val  TYPE JBD2_NUMC1. "   0

  CALL FUNCTION 'ISB_JBD11_GET'  "NOTRANSL: Liefert JBD11 einer Zinskurvenart, Währung zu einem Konditionsda
    EXPORTING
         KONDDATUM = lv_konddatum
         BYPASSING_BUFFER_FLAG = lv_bypassing_buffer_flag
         KONDTIME = lv_kondtime
         KURVENART = lv_kurvenart
         WAEHRUNG = lv_waehrung
         ZURUECK_SUCHEN = lv_zurueck_suchen
         I_JBDFEED = lv_i_jbdfeed
         SET_USED_FLAG = lv_set_used_flag
         CURRENCY_REPLACE = lv_currency_replace
         SAVE_CALCULATED_VAL = lv_save_calculated_val
    IMPORTING
         E_JBD14 = lv_e_jbd14
    TABLES
         E_JBD11 = lt_e_jbd11
    EXCEPTIONS
        NOT_FOUND = 1
. " ISB_JBD11_GET




ABAP code using 7.40 inline data declarations to call FM ISB_JBD11_GET

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 DKOND FROM JBD11 INTO @DATA(ld_konddatum).
DATA(ld_konddatum) = SY-DATUM.
 
 
 
"SELECT single TIME FROM JBDT56P INTO @DATA(ld_kondtime).
 
"SELECT single SZKART FROM JBD14 INTO @DATA(ld_kurvenart).
 
"SELECT single WWAER FROM JBD14 INTO @DATA(ld_waehrung).
 
DATA(ld_zurueck_suchen) = 1.
 
 
 
 
 


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!