GENERATE_TRANSPORT_RESP_TAB SAP Method Collect content for transport
Below is documentation, parameters and attributes of ABAP Method GENERATE_TRANSPORT_RESP_TAB 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 GENERATE_TRANSPORT_RESP_TAB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GENERATE_TRANSPORT_RESP_TAB
.| Name | Type | Data Type | Description | Default Value |
| IT_APPENDED_REPORTS | Importing | TYPE E071_T | CTS: Table Type for E071 | |
| IT_OPEN_REPORTS | Importing | TYPE E071_T | CTS: Table Type for E071 | |
| IT_OPEN_REQUESTS | Importing | TYPE E070_T | CTS: Table Type for E070 | |
| IT_OPEN_TABLES | Importing | TYPE E071K_T | CTS: Table Type for E071K | |
| IT_RELEASED_REPORTS | Importing | TYPE E071_T | CTS: Table Type for E071 | |
| IT_RELEASED_REQUESTS | Importing | TYPE E070_T | CTS: Table Type for E070 | |
| IT_RELEASED_TABLES | Importing | TYPE E071K_T | CTS: Table Type for E071K | |
| IT_RESP_TAB_ADD | Importing | TYPE DTINF_TT_RESP_TAB | Grouping of TC, contained tables and responsibility | |
| IT_RESP_TAB_DEL | Importing | TYPE DTINF_TT_RESP_TAB | Responsibility ID | |
| IT_RESP_TAB_MOD | Importing | TYPE DTINF_TT_RESP_TAB | Grouping of TC, contained tables and responsibility | |
| IV_NO_NAMING_CHECK | Importing | TYPE BOOLEAN | Boolean Variable (X=True, -=False, Space=Unknown) | |
| IV_RESP_ID_CHANGED | Importing | TYPE BOOLEAN | Boolean Variable (X=True, -=False, Space=Unknown) | |
| IV_RESP_TAB | Importing | TYPE STRING | ||
| IV_SOBJ_NAME | Importing | TYPE SOBJ_NAME | Object Name in Object Directory | |
| CT_E071K | Changing | TYPE E071K_T | Transport table E017K | |
| CT_PREREQUISITES | Changing | TYPE TRKORRS | Table of Request Numbers | |
| CT_TRANSPORT_ERRORS | Changing | TYPE DTINF_TT_TRANSPORT_ERROR | Transport error table |
Exceptions of Method GENERATE_TRANSPORT_RESP_TAB
NO_TC_FOR_RESP -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_CT_E071K TYPE E071K_T,
lv_CT_PREREQUISITES TYPE TRKORRS,
lv_CT_TRANSPORT_ERRORS TYPE DTINF_TT_TRANSPORT_ERROR,
lv_IT_APPENDED_REPORTS TYPE E071_T,
lv_IT_OPEN_REPORTS TYPE E071_T,
lv_IT_OPEN_REQUESTS TYPE E070_T,
lv_IT_OPEN_TABLES TYPE E071K_T,
lv_IT_RELEASED_REPORTS TYPE E071_T,
lv_IT_RELEASED_REQUESTS TYPE E070_T,
lv_IT_RELEASED_TABLES TYPE E071K_T,
lv_IT_RESP_TAB_ADD TYPE DTINF_TT_RESP_TAB,
lv_IT_RESP_TAB_DEL TYPE DTINF_TT_RESP_TAB,
lv_IT_RESP_TAB_MOD TYPE DTINF_TT_RESP_TAB,
lv_IV_NO_NAMING_CHECK TYPE BOOLEAN,
lv_IV_RESP_ID_CHANGED TYPE BOOLEAN,
lv_IV_RESP_TAB TYPE STRING,
lv_IV_SOBJ_NAME TYPE SOBJ_NAME,
lv_other TYPE c.
CALL METHOD lo_class=>GENERATE_TRANSPORT_RESP_TAB(
EXPORTING
IT_APPENDED_REPORTS = lv_IT_APPENDED_REPORTS
IT_OPEN_REPORTS = lv_IT_OPEN_REPORTS
IT_OPEN_REQUESTS = lv_IT_OPEN_REQUESTS
IT_OPEN_TABLES = lv_IT_OPEN_TABLES
IT_RELEASED_REPORTS = lv_IT_RELEASED_REPORTS
IT_RELEASED_REQUESTS = lv_IT_RELEASED_REQUESTS
IT_RELEASED_TABLES = lv_IT_RELEASED_TABLES
IT_RESP_TAB_ADD = lv_IT_RESP_TAB_ADD
IT_RESP_TAB_DEL = lv_IT_RESP_TAB_DEL
IT_RESP_TAB_MOD = lv_IT_RESP_TAB_MOD
IV_NO_NAMING_CHECK = lv_IV_NO_NAMING_CHECK
IV_RESP_ID_CHANGED = lv_IV_RESP_ID_CHANGED
IV_RESP_TAB = lv_IV_RESP_TAB
IV_SOBJ_NAME = lv_IV_SOBJ_NAME
CHANGING
CT_E071K = lv_CT_E071K
CT_PREREQUISITES = lv_CT_PREREQUISITES
CT_TRANSPORT_ERRORS = lv_CT_TRANSPORT_ERRORS ).
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