GET_TABLE_DATA_FROM_STRING SAP Method Return table content as a string









Below is documentation, parameters and attributes of ABAP Method GET_TABLE_DATA_FROM_STRING within SAP class DTINF_CL_INFORMATION. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name DTINF_CL_INFORMATION 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 GET_TABLE_DATA_FROM_STRING can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_TABLE_DATA_FROM_STRING

.

NameTypeData TypeDescriptionDefault Value
IT_STRINGImportingTYPE
DTINF_TT_XML_STRINGS
XML String Table
ET_RENAMED_RESP_IDExportingTYPE
DTINF_TT_RENAMED_RESP_ID
Info on renamed resp. ID in DB vs memory
ET_RENAMED_TC_IDExportingTYPE
DTINF_TT_RENAMED_TC
Renamed TCs
ET_RESP_APPL_ADDExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_APPL_DELExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_APPL_MODExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_APPL_PRE_MODExportingTYPE
DTINF_TT_RESP_APPL
Table of responsibilities
ET_RESP_ILM_ADDExportingTYPE
DTINF_TT_RESP_ILM
Responsibility of ILM Object
ET_RESP_ILM_DELExportingTYPE
DTINF_TT_RESP_ILM
Responsibility of ILM Object
ET_RESP_ILM_MODExportingTYPE
DTINF_TT_RESP_ILM
Responsibility of ILM Object
ET_RESP_ILM_PRE_MODExportingTYPE
DTINF_TT_RESP_ILM
Responsibility of ILM Object
ET_RESP_TAB_ADDExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_RESP_TAB_DELExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_RESP_TAB_MODExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_RESP_TAB_PRE_MODExportingTYPE
DTINF_TT_RESP_TAB
Grouping of TC, contained tables and responsibility
ET_TC_FIELDS_ADDExportingTYPE
DTINF_TT_TC_FIELDS
TC field links
ET_TC_FIELDS_DELExportingTYPE
DTINF_TT_TC_FIELDS
TC field links
ET_TC_FIELDS_MODExportingTYPE
DTINF_TT_TC_FIELDS
TC field links
ET_TC_FIELDS_PRE_MODExportingTYPE
DTINF_TT_TC_FIELDS
TC field links
ET_TC_INFO_ADDExportingTYPE
DTINF_TT_TC_INFO
Information on TCs
ET_TC_INFO_DELExportingTYPE
DTINF_TT_TC_INFO
Information on TCs
ET_TC_INFO_MODExportingTYPE
DTINF_TT_TC_INFO
Information on TCs
ET_TC_INFO_PRE_MODExportingTYPE
DTINF_TT_TC_INFO
Information on TCs
ET_TC_INFO_TEXT_ADDExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_INFO_TEXT_DELExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_INFO_TEXT_MODExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_INFO_TEXT_PRE_MODExportingTYPE
DTINF_TT_TC_INFOT
Language specific information on TC
ET_TC_TABLES_ADDExportingTYPE
DTINF_TT_TC_TABLES
TC table links
ET_TC_TABLES_DELExportingTYPE
DTINF_TT_TC_TABLES
TC table links
ET_TC_TABLES_MODExportingTYPE
DTINF_TT_TC_TABLES
TC table links
ET_TC_TABLES_PRE_MODExportingTYPE
DTINF_TT_TC_TABLES
TC table links



Exceptions of Method GET_TABLE_DATA_FROM_STRING

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO DTINF_CL_INFORMATION.
DATA: lv_ET_RENAMED_RESP_ID TYPE DTINF_TT_RENAMED_RESP_ID,
lv_ET_RENAMED_TC_ID TYPE DTINF_TT_RENAMED_TC,
lv_ET_RESP_APPL_ADD TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_APPL_DEL TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_APPL_MOD TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_APPL_PRE_MOD TYPE DTINF_TT_RESP_APPL,
lv_ET_RESP_ILM_ADD TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_ILM_DEL TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_ILM_MOD TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_ILM_PRE_MOD TYPE DTINF_TT_RESP_ILM,
lv_ET_RESP_TAB_ADD TYPE DTINF_TT_RESP_TAB,
lv_ET_RESP_TAB_DEL TYPE DTINF_TT_RESP_TAB,
lv_ET_RESP_TAB_MOD TYPE DTINF_TT_RESP_TAB,
lv_ET_RESP_TAB_PRE_MOD TYPE DTINF_TT_RESP_TAB,
lv_ET_TC_FIELDS_ADD TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_FIELDS_DEL TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_FIELDS_MOD TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_FIELDS_PRE_MOD TYPE DTINF_TT_TC_FIELDS,
lv_ET_TC_INFO_ADD TYPE DTINF_TT_TC_INFO,
lv_ET_TC_INFO_DEL TYPE DTINF_TT_TC_INFO,
lv_ET_TC_INFO_MOD TYPE DTINF_TT_TC_INFO,
lv_ET_TC_INFO_PRE_MOD TYPE DTINF_TT_TC_INFO,
lv_ET_TC_INFO_TEXT_ADD TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_INFO_TEXT_DEL TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_INFO_TEXT_MOD TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_INFO_TEXT_PRE_MOD TYPE DTINF_TT_TC_INFOT,
lv_ET_TC_TABLES_ADD TYPE DTINF_TT_TC_TABLES,
lv_ET_TC_TABLES_DEL TYPE DTINF_TT_TC_TABLES,
lv_ET_TC_TABLES_MOD TYPE DTINF_TT_TC_TABLES,
lv_ET_TC_TABLES_PRE_MOD TYPE DTINF_TT_TC_TABLES,
lv_IT_STRING TYPE DTINF_TT_XML_STRINGS,
lv_other TYPE c.

CALL METHOD lo_class=>GET_TABLE_DATA_FROM_STRING(
EXPORTING
IT_STRING = lv_IT_STRING
IMPORTING
ET_RENAMED_RESP_ID = lv_ET_RENAMED_RESP_ID
ET_RENAMED_TC_ID = lv_ET_RENAMED_TC_ID
ET_RESP_APPL_ADD = lv_ET_RESP_APPL_ADD
ET_RESP_APPL_DEL = lv_ET_RESP_APPL_DEL
ET_RESP_APPL_MOD = lv_ET_RESP_APPL_MOD
ET_RESP_APPL_PRE_MOD = lv_ET_RESP_APPL_PRE_MOD
ET_RESP_ILM_ADD = lv_ET_RESP_ILM_ADD
ET_RESP_ILM_DEL = lv_ET_RESP_ILM_DEL
ET_RESP_ILM_MOD = lv_ET_RESP_ILM_MOD
ET_RESP_ILM_PRE_MOD = lv_ET_RESP_ILM_PRE_MOD
ET_RESP_TAB_ADD = lv_ET_RESP_TAB_ADD
ET_RESP_TAB_DEL = lv_ET_RESP_TAB_DEL
ET_RESP_TAB_MOD = lv_ET_RESP_TAB_MOD
ET_RESP_TAB_PRE_MOD = lv_ET_RESP_TAB_PRE_MOD
ET_TC_FIELDS_ADD = lv_ET_TC_FIELDS_ADD
ET_TC_FIELDS_DEL = lv_ET_TC_FIELDS_DEL
ET_TC_FIELDS_MOD = lv_ET_TC_FIELDS_MOD
ET_TC_FIELDS_PRE_MOD = lv_ET_TC_FIELDS_PRE_MOD
ET_TC_INFO_ADD = lv_ET_TC_INFO_ADD
ET_TC_INFO_DEL = lv_ET_TC_INFO_DEL
ET_TC_INFO_MOD = lv_ET_TC_INFO_MOD
ET_TC_INFO_PRE_MOD = lv_ET_TC_INFO_PRE_MOD
ET_TC_INFO_TEXT_ADD = lv_ET_TC_INFO_TEXT_ADD
ET_TC_INFO_TEXT_DEL = lv_ET_TC_INFO_TEXT_DEL
ET_TC_INFO_TEXT_MOD = lv_ET_TC_INFO_TEXT_MOD
ET_TC_INFO_TEXT_PRE_MOD = lv_ET_TC_INFO_TEXT_PRE_MOD
ET_TC_TABLES_ADD = lv_ET_TC_TABLES_ADD
ET_TC_TABLES_DEL = lv_ET_TC_TABLES_DEL
ET_TC_TABLES_MOD = lv_ET_TC_TABLES_MOD
ET_TC_TABLES_PRE_MOD = lv_ET_TC_TABLES_PRE_MOD ).

Links to Related Class(s)

DTINF_CL...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!