BDIMP_SB is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter BDIMP_SB into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Templates for mapping code SAP -> BAPI
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
PSPNUM_INTERN_TO_EXTERN_CONV CALL FUNCTION 'PSPNUM_INTERN_TO_EXTERN_CONV' EXPORTING * EDIT_IMP = ' ' INT_NUM = &SAP_TABLE_FIELD IMPORTING EXT_NUM = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
PDFNUM_INTERN_TO_EXTERN_CONV CALL FUNCTION 'PDFNUM_INTERN_TO_EXTERN_CONV' EXPORTING * EDIT_IMP = INT_NUM = &SAP_TABLE_FIELD IMPORTING EXT_NUM = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
UNIT_OF_MEASURE_SAP_TO_ISO CALL FUNCTION 'UNIT_OF_MEASURE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 NO_ISO_CODE = 2 OTHERS = 3.
LANGUAGE_CODE_SAP_TO_ISO CALL FUNCTION 'LANGUAGE_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
CURRENCY_CODE_SAP_TO_ISO CALL FUNCTION 'CURRENCY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
COUNTRY_CODE_SAP_TO_ISO CALL FUNCTION 'COUNTRY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
UNIT_OF_MEASURE_SAP_TO_ISO CALL FUNCTION 'UNIT_OF_MEASURE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 NO_ISO_CODE = 2 OTHERS = 3.
CURRENCY_CODE_SAP_TO_ISO CALL FUNCTION 'CURRENCY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
COUNTRY_CODE_SAP_TO_ISO CALL FUNCTION 'COUNTRY_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
LANGUAGE_CODE_SAP_TO_ISO CALL FUNCTION 'LANGUAGE_CODE_SAP_TO_ISO' EXPORTING SAP_CODE = &SAP_TABLE_FIELD IMPORTING ISO_CODE = &BAPI_TABLE_FIELD EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
CURRENCY_AMOUNT_SAP_TO_BAPI CALL FUNCTION 'CURRENCY_AMOUNT_SAP_TO_BAPI' EXPORTING CURRENCY = &SAP_ADD_FIELD SAP_AMOUNT = TMP_AMOUNT IMPORTING BAPI_AMOUNT = &BAPI_TABLE_FIELD EXCEPTIONS OTHERS = 0.
CURRENCY_AMOUNT_SAP_TO_BAPI CALL FUNCTION 'CURRENCY_AMOUNT_SAP_TO_BAPI' EXPORTING CURRENCY = &ADD_FIELD SAP_AMOUNT = TMP_AMOUNT IMPORTING BAPI_AMOUNT = &BAPI_TABLE_FIELD EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.