EXT_HEADER_DDIC2XML SAP Method Transform DDIC rep. of Extended Header to XML rep.
Below is documentation, parameters and attributes of ABAP Method EXT_HEADER_DDIC2XML within SAP class /BSNAGT/CL_FILE_OPER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BSNAGT/CL_FILE_OPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method EXT_HEADER_DDIC2XML can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXT_HEADER_DDIC2XML
.| Name | Type | Data Type | Description | Default Value |
| IS_EXT_HEADER_PARAM | Importing | TYPE /BSNAGT/EXTENDED_HEADER1 | Additional Header Information (Proxy Format) | |
| IT_EXT_HEADER_DDIC_TAB | Importing | TYPE /BSNAGT/EXT_HEADER_DDIC_TAB | Extended Header Information (DDIC Struc) | |
| EV_EXT_HEADER_XML | Exporting | TYPE /BSNAGT/EXT_HEADER_XML | Extended Header in XML representation |
Exceptions of Method EXT_HEADER_DDIC2XML
/BSNAGT/CX_EXTHEAD_TRANS_ERROR - Extended Header Transformation ErrorExample ABAP coding
DATA: lv_EV_EXT_HEADER_XML TYPE /BSNAGT/EXT_HEADER_XML,
lv_IS_EXT_HEADER_PARAM TYPE /BSNAGT/EXTENDED_HEADER1,
lv_IT_EXT_HEADER_DDIC_TAB TYPE /BSNAGT/EXT_HEADER_DDIC_TAB,
lv_other TYPE c.
CALL METHOD /BSNAGT/CL_FILE_OPER=>EXT_HEADER_DDIC2XML(
EXPORTING
IS_EXT_HEADER_PARAM = lv_IS_EXT_HEADER_PARAM
IT_EXT_HEADER_DDIC_TAB = lv_IT_EXT_HEADER_DDIC_TAB
IMPORTING
EV_EXT_HEADER_XML = lv_EV_EXT_HEADER_XML ).
Links to Related Class(s)
/BSNAGT/...Full list of available SAP object classes
Search for further information about these or an SAP related objects