GET_TABLE SAP Method Returns full table CNV_AS_ANALYSIS or for 1 customer/project
Below is documentation, parameters and attributes of ABAP Method GET_TABLE within SAP class /SLOAP/CL_ANALYSIS. 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 /SLOAP/CL_ANALYSIS 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 GET_TABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TABLE
.| Name | Type | Data Type | Description | Default Value |
| IV_CUSTOMER_GUID | Importing | TYPE GUID | Globally Unique Identifier | |
| IV_ONLY_LATEST | Importing | TYPE SAP_BOOL | restrict output to latest versions | |
| IV_PROJECT_GUID | Importing | TYPE GUID | Globally Unique Identifier | |
| ET_ANALYSES | Exporting | TYPE /SLOAP/T_ANALYSIS | SLOAS analysis table type |
Exceptions of Method GET_TABLE
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_ANALYSES TYPE /SLOAP/T_ANALYSIS,
lv_IV_CUSTOMER_GUID TYPE GUID,
lv_IV_ONLY_LATEST TYPE SAP_BOOL,
lv_IV_PROJECT_GUID TYPE GUID,
lv_other TYPE c.
CALL METHOD /SLOAP/CL_ANALYSIS=>GET_TABLE(
EXPORTING
IV_CUSTOMER_GUID = lv_IV_CUSTOMER_GUID
IV_ONLY_LATEST = lv_IV_ONLY_LATEST
IV_PROJECT_GUID = lv_IV_PROJECT_GUID
IMPORTING
ET_ANALYSES = lv_ET_ANALYSES ).
Links to Related Class(s)
/SLOAP/C...Full list of available SAP object classes
Search for further information about these or an SAP related objects