EXT_HEADER_XML2DDIC SAP Method Transform XML rep. of Extended Header to DDIC rep.
Below is documentation, parameters and attributes of ABAP Method EXT_HEADER_XML2DDIC 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_XML2DDIC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXT_HEADER_XML2DDIC
.| Name | Type | Data Type | Description | Default Value |
| IV_EXT_HEADER_XML | Importing | TYPE /BSNAGT/EXT_HEADER_XML | Extended Header in XML represen | |
| ET_EXT_HEADER_DDIC_TAB | Exporting | TYPE /BSNAGT/EXT_HEADER_DDIC_TAB | Extended Header in DDIC Table representation |
Exceptions of Method EXT_HEADER_XML2DDIC
/BSNAGT/CX_EXTHEAD_TRANS_ERROR - Extended Header Transformation ErrorExample ABAP coding
DATA: lv_ET_EXT_HEADER_DDIC_TAB TYPE /BSNAGT/EXT_HEADER_DDIC_TAB,
lv_IV_EXT_HEADER_XML TYPE /BSNAGT/EXT_HEADER_XML,
lv_other TYPE c.
CALL METHOD /BSNAGT/CL_FILE_OPER=>EXT_HEADER_XML2DDIC(
EXPORTING
IV_EXT_HEADER_XML = lv_IV_EXT_HEADER_XML
IMPORTING
ET_EXT_HEADER_DDIC_TAB = lv_ET_EXT_HEADER_DDIC_TAB ).
Links to Related Class(s)
/BSNAGT/...Full list of available SAP object classes
Search for further information about these or an SAP related objects