SAP Function Modules

JBD_MAP_SETR_FO_GET_DET_MULT SAP Function module - MAPI Methode: Finanzobjektdaten







JBD_MAP_SETR_FO_GET_DET_MULT 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 JBD_MAP_SETR_FO_GET_DET_MULT into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: JBD_SETR_MAPI
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM JBD_MAP_SETR_FO_GET_DET_MULT - JBD MAP SETR FO GET DET MULT





CALL FUNCTION 'JBD_MAP_SETR_FO_GET_DET_MULT' "MAPI Methode: Finanzobjektdaten
  EXPORTING
    i_tab_setr_ext_key =        " jbd_tab_setr_ext_key  Externe Schlüssel der Wertpapierorder
  IMPORTING
    e_tab_messages =            " jbd_tab_msg   Fehlermeldungen
    e_tab_fo_header =           " jbd_tab_setr_fo_header_map  Header des Finanzobjekts für Börsengeschäft
    e_tab_fo_pa_chars =         " jbd_tab_setr_fo_pa_chars_map  Derivate PA-Merkmale
    e_tab_fo_pa_attributes =    " jbd_tab_setr_fo_pa_attr_map   FO-PA Attribute
    e_tab_fo_pa_attr_addit =    " jbd_tab_setr_fo_pa_add_map  Derivate FO-PA Attribute
    e_tab_fo_mr_attributes =    " jbd_tab_setr_fo_mr_attr_map  Finanzobjektattribute für Börsengeschäfte
    e_tab_fo_mr_characteristics =   " jbd_tab_setr_fo_mr_chars_map  Merkmale des Finanzobjekts für Börsengeschäfte
    e_tab_fo_cl_attributes =    " jbd_tab_setr_fo_cl_map  Wertpapierorder: Finanzobjekt ext. Kennzahlen
    e_tab_fo_ext_key_figures =   " jbd_tab_setr_fo_ext_map  Externe Schlüssel der Wertpapierorder
    .  "  JBD_MAP_SETR_FO_GET_DET_MULT

ABAP code example for Function Module JBD_MAP_SETR_FO_GET_DET_MULT





The ABAP code below is a full code listing to execute function module JBD_MAP_SETR_FO_GET_DET_MULT 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).

DATA:
ld_e_tab_messages  TYPE JBD_TAB_MSG ,
ld_e_tab_fo_header  TYPE JBD_TAB_SETR_FO_HEADER_MAP ,
ld_e_tab_fo_pa_chars  TYPE JBD_TAB_SETR_FO_PA_CHARS_MAP ,
ld_e_tab_fo_pa_attributes  TYPE JBD_TAB_SETR_FO_PA_ATTR_MAP ,
ld_e_tab_fo_pa_attr_addit  TYPE JBD_TAB_SETR_FO_PA_ADD_MAP ,
ld_e_tab_fo_mr_attributes  TYPE JBD_TAB_SETR_FO_MR_ATTR_MAP ,
ld_e_tab_fo_mr_characteristics  TYPE JBD_TAB_SETR_FO_MR_CHARS_MAP ,
ld_e_tab_fo_cl_attributes  TYPE JBD_TAB_SETR_FO_CL_MAP ,
ld_e_tab_fo_ext_key_figures  TYPE JBD_TAB_SETR_FO_EXT_MAP .

DATA(ld_i_tab_setr_ext_key) = 'Check type of data required'. . CALL FUNCTION 'JBD_MAP_SETR_FO_GET_DET_MULT' EXPORTING i_tab_setr_ext_key = ld_i_tab_setr_ext_key IMPORTING e_tab_messages = ld_e_tab_messages e_tab_fo_header = ld_e_tab_fo_header e_tab_fo_pa_chars = ld_e_tab_fo_pa_chars e_tab_fo_pa_attributes = ld_e_tab_fo_pa_attributes e_tab_fo_pa_attr_addit = ld_e_tab_fo_pa_attr_addit e_tab_fo_mr_attributes = ld_e_tab_fo_mr_attributes e_tab_fo_mr_characteristics = ld_e_tab_fo_mr_characteristics e_tab_fo_cl_attributes = ld_e_tab_fo_cl_attributes e_tab_fo_ext_key_figures = ld_e_tab_fo_ext_key_figures . " JBD_MAP_SETR_FO_GET_DET_MULT
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_e_tab_messages  TYPE JBD_TAB_MSG ,
ld_i_tab_setr_ext_key  TYPE JBD_TAB_SETR_EXT_KEY ,
ld_e_tab_fo_header  TYPE JBD_TAB_SETR_FO_HEADER_MAP ,
ld_e_tab_fo_pa_chars  TYPE JBD_TAB_SETR_FO_PA_CHARS_MAP ,
ld_e_tab_fo_pa_attributes  TYPE JBD_TAB_SETR_FO_PA_ATTR_MAP ,
ld_e_tab_fo_pa_attr_addit  TYPE JBD_TAB_SETR_FO_PA_ADD_MAP ,
ld_e_tab_fo_mr_attributes  TYPE JBD_TAB_SETR_FO_MR_ATTR_MAP ,
ld_e_tab_fo_mr_characteristics  TYPE JBD_TAB_SETR_FO_MR_CHARS_MAP ,
ld_e_tab_fo_cl_attributes  TYPE JBD_TAB_SETR_FO_CL_MAP ,
ld_e_tab_fo_ext_key_figures  TYPE JBD_TAB_SETR_FO_EXT_MAP .

ld_i_tab_setr_ext_key = 'Check type of data required'.

Contribute (Add Comments)

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 JBD_MAP_SETR_FO_GET_DET_MULT or its description.