XML_IMPORT SAP Method Import and Activate Objects from CWM Files
Below is documentation, parameters and attributes of ABAP Method XML_IMPORT within SAP class IF_RSO_REPOSITORY_XML. 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 IF_RSO_REPOSITORY_XML into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method XML_IMPORT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method XML_IMPORT
.| Name | Type | Data Type | Description | Default Value |
| I_DETLEVEL | Importing | TYPE BAL_S_MSG-DETLEVEL | Application Log: Level of Detail | |
| I_TS_XML_ELEMENT | Importing | TYPE RSO_TS_XML_ELEMENT | BW Metadata Repository: List of XML DOM Elements | |
| E_RETURNCODE | Exporting | TYPE I | Result |
Exceptions of Method XML_IMPORT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_RSO_REPOSITORY_XML.
DATA: lv_E_RETURNCODE TYPE I,
lv_I_DETLEVEL TYPE BAL_S_MSG-DETLEVEL,
lv_I_TS_XML_ELEMENT TYPE RSO_TS_XML_ELEMENT,
lv_other TYPE c.
CALL METHOD lo_class=>XML_IMPORT(
EXPORTING
I_DETLEVEL = lv_I_DETLEVEL
I_TS_XML_ELEMENT = lv_I_TS_XML_ELEMENT
IMPORTING
E_RETURNCODE = lv_E_RETURNCODE ).
Links to Related Class(s)
IF_RSO_R...Full list of available SAP object classes
Search for further information about these or an SAP related objects