SAPDBENM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program SAPDBENM contains the access routines for reporting...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter SAPDBENM 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.
Selection Text: EN_EBELN = Purchasing document
Selection Text: EN_EKORG = Purchasing organization
Selection Text: EN_SELKA = ?...(EN_SELKA)
Selection Text: EN_SELKB = ?...(EN_SELKB)
Selection Text: EN_SELKK = ?...(EN_SELKK)
Selection Text: EN_SELKL = ?...(EN_SELKL)
Title: Access Program for Database ENM
Text Symbol: 001 = Choose...
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RM_SENDEN_BILD_EXM CALL FUNCTION 'RM_SENDEN_BILD_EXM' EXPORTING E0_SELKA = EN_SELKA E0_SELKB = EN_SELKB E0_SELKK = EN_SELKK E0_SELKL = EN_SELKL IMPORTING E0_SELKA = EN_SELKA E0_SELKB = EN_SELKB E0_SELKK = EN_SELKK E0_SELKL = EN_SELKL E0_START = EN_STARTK.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = lv_table_name langu = sy-langu all_types = abap_true TABLES dfies_tab = lt_fields EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
ME_TRANSFER_EKPO_TO_BUFFER CALL FUNCTION 'ME_TRANSFER_EKPO_TO_BUFFER' EXPORTING pi_ebeln = space TABLES pi_ekpo = lt_ekpo_buffer EXCEPTIONS record_already_exists = 1 OTHERS = 2.
MMPUR_EKBE_ARRAY_READ CALL FUNCTION 'MMPUR_EKBE_ARRAY_READ' TABLES pti_ekbe_key = lt_ekbekeys EXCEPTIONS OTHERS = 0.
MMPUR_EKBZ_ARRAY_READ CALL FUNCTION 'MMPUR_EKBZ_ARRAY_READ' TABLES pti_ekbz_key = lt_ekbekeys EXCEPTIONS OTHERS = 0.
ME_TRANSFER_EKPO_TO_BUFFER CALL FUNCTION 'ME_TRANSFER_EKPO_TO_BUFFER' EXPORTING pi_ebeln = en_sebeln TABLES pi_ekpo = lt_ekpo EXCEPTIONS record_already_exists = 1 OTHERS = 2.
MM_CURRENT_PRICE_DOCUMENT CALL FUNCTION 'MM_CURRENT_PRICE_DOCUMENT' EXPORTING I_EKKO = EKKO CHANGING C_EKPO = EKPO 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.