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
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
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).
| 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 . |
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 . |
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.
JBD_MAP_SETR_FO_GET_DET_MULT - MAPI Methode: Finanzobjektdaten JBD_MAP_POS_V_GET_LIST - Bestandswerte: GetList JBD_MAP_POS_V_GET_DET_MULT - Bestandswerte: GetDetailMulti JBD_MAP_POS_VC_GET_LIST - Bestandsänderung: Get List JBD_MAP_POS_VC_GET_DET_MULT - Bestandsänderung: Get Detail Multi JBD_MAP_POS_SETR_GET_LIST - Bestände für Wertpapier: GetList