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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IV_CUSTOMER_GUIDImportingTYPE
GUID
Globally Unique Identifier
IV_ONLY_LATESTImportingTYPE
SAP_BOOL
restrict output to latest versions
IV_PROJECT_GUIDImportingTYPE
GUID
Globally Unique Identifier
ET_ANALYSESExportingTYPE
/SLOAP/T_ANALYSIS
SLOAS analysis table type



Exceptions of Method GET_TABLE

This method does not have any exceptions

Example 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



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!