BUILD_TAB_NAME SAP Method Determine Table Name
Below is documentation, parameters and attributes of ABAP Method BUILD_TAB_NAME within SAP class CL_ABAP_TRACE_DATA. 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_ABAP_TRACE_DATA 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 BUILD_TAB_NAME can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BUILD_TAB_NAME
.| Name | Type | Data Type | Description | Default Value |
| P_AUS | Importing | TYPE SATR_AUSTAB_GESAMT | SATR : Common Output Structure (TRACE/TRACEDUMP) | |
| P_PROG | Importing | TYPE SYCPROG | Calling Program | |
| P_TAB | Returning | TYPE SATR_ITAB | SATR: Structure for SATR_T_PROGINDEX |
Exceptions of Method BUILD_TAB_NAME
NO_TAB_OPERATION_FOUND - No Table Operation FoundExample ABAP coding
DATA: lv_P_AUS TYPE SATR_AUSTAB_GESAMT,
lv_P_PROG TYPE SYCPROG,
lv_P_TAB TYPE SATR_ITAB,
lv_other TYPE c.
CALL METHOD CL_ABAP_TRACE_DATA=>BUILD_TAB_NAME(
EXPORTING
P_AUS = lv_P_AUS
P_PROG = lv_P_PROG
RECEIVING
P_TAB = lv_P_TAB )
"Alternate coding for Method Call with returning parameter
lv_P_TAB = CL_ABAP_TRACE_DATA=>BUILD_TAB_NAME(
EXPORTING
P_AUS = lv_P_AUS
P_PROG = lv_P_PROG ).
Links to Related Class(s)
CL_ABAP_...Full list of available SAP object classes
Search for further information about these or an SAP related objects