SAP Reports / Programs

EFG_DOWNLOAD_DATATYPE SAP ABAP Report - DDIC - Download Data Type as Flat File







EFG_DOWNLOAD_DATATYPE is a standard Executable ABAP Report 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 EFG_DOWNLOAD_DATATYPE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT EFG_DOWNLOAD_DATATYPE. "Basic submit
SUBMIT EFG_DOWNLOAD_DATATYPE AND RETURN. "Return to original report after report execution complete
SUBMIT EFG_DOWNLOAD_DATATYPE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_SIMPLE = Flat Display
Selection Text: P_WDESCR = Descriptions
Selection Text: P_WTYPE = Type Information
Selection Text: P_XML = XML Format
Selection Text: P_TYPE = D .
Title: DDIC - Download Data Type as Flat File
Text Symbol: 001 = Error
Text Symbol: I01 = Data type &1 does not exist


INCLUDES used within this REPORT EFG_DOWNLOAD_DATATYPE

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RS_DD_F4_OBJECT CALL FUNCTION 'RS_DD_F4_OBJECT' EXPORTING objname = l_type objtype = 'Q' suppress_selection = '' IMPORTING selobjname = l_type.

DDIF_TYPEINFO_GET CALL FUNCTION 'DDIF_TYPEINFO_GET' EXPORTING typename = p_type IMPORTING typekind = l_typekind.

DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = l_name state = 'A' langu = sy-langu IMPORTING dd02v_wa = me->str_dd02v TABLES dd03p_tab = me->tab_dd03p EXCEPTIONS illegal_input = 1 OTHERS = 2.

DDIF_TYPEINFO_GET CALL FUNCTION 'DDIF_TYPEINFO_GET' EXPORTING typename = l_typename IMPORTING typekind = l_typekind.

DDIF_DTEL_GET CALL FUNCTION 'DDIF_DTEL_GET' EXPORTING name = l_name state = 'A' langu = sy-langu IMPORTING dd04v_wa = l_str_dd04v EXCEPTIONS illegal_input = 1 OTHERS = 2.

DDIF_TTYP_GET CALL FUNCTION 'DDIF_TTYP_GET' EXPORTING name = l_name langu = sy-langu IMPORTING dd40v_wa = me->str_dd40v.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name EFG_DOWNLOAD_DATATYPE or its description.