IMPORT_CHECKLIST_TEMPLATE_XML SAP Method of class CL_DPR_UI_LOG_ENTRY
Below is documentation, parameters and attributes of ABAP Method IMPORT_CHECKLIST_TEMPLATE_XML within SAP class CL_DPR_UI_LOG_ENTRY. 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 CL_DPR_UI_LOG_ENTRY 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 IMPORT_CHECKLIST_TEMPLATE_XML can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method IMPORT_CHECKLIST_TEMPLATE_XML
.| Name | Type | Data Type | Description | Default Value |
| IS_INTEGRATION_PARAMETERS | Importing | TYPE DPR_TS_INTEGRATION_PARAMETERS | Project Integration Parameters | |
| IT_PROJECT_DATA | Importing | TYPE DPR_TT_XML_PROJECTS_TYPE | Complex Data Type ProjectsType from XML Procedure | |
| IV_PROJ_INTEG_TYPE | Importing | TYPE DPR_TRA_PROJ_INTEG_TYPE | Project Integration Type | |
| IV_XML_FILE_DATA | Importing | TYPE XSTRING | ||
| ET_SEL_ELEMENT | Exporting | TYPE DPR_TT_OBJ_EVENT | Table with Object Selection | |
| EV_FAILED | Exporting | TYPE ABAP_BOOL |
Exceptions of Method IMPORT_CHECKLIST_TEMPLATE_XML
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_DPR_UI_LOG_ENTRY.
DATA: lv_ET_SEL_ELEMENT TYPE DPR_TT_OBJ_EVENT,
lv_EV_FAILED TYPE ABAP_BOOL,
lv_IS_INTEGRATION_PARAMETERS TYPE DPR_TS_INTEGRATION_PARAMETERS,
lv_IT_PROJECT_DATA TYPE DPR_TT_XML_PROJECTS_TYPE,
lv_IV_PROJ_INTEG_TYPE TYPE DPR_TRA_PROJ_INTEG_TYPE,
lv_IV_XML_FILE_DATA TYPE XSTRING,
lv_other TYPE c.
CALL METHOD lo_class=>IMPORT_CHECKLIST_TEMPLATE_XML(
EXPORTING
IS_INTEGRATION_PARAMETERS = lv_IS_INTEGRATION_PARAMETERS
IT_PROJECT_DATA = lv_IT_PROJECT_DATA
IV_PROJ_INTEG_TYPE = lv_IV_PROJ_INTEG_TYPE
IV_XML_FILE_DATA = lv_IV_XML_FILE_DATA
IMPORTING
ET_SEL_ELEMENT = lv_ET_SEL_ELEMENT
EV_FAILED = lv_EV_FAILED ).
Links to Related Class(s)
CL_DPR_U...Full list of available SAP object classes
Search for further information about these or an SAP related objects