GET_AS_STRUCTURE_FROM_GUID SAP Method get structure from GUID
Below is documentation, parameters and attributes of ABAP Method GET_AS_STRUCTURE_FROM_GUID within SAP class /SLOAP/CL_ANALYSIS_MODULE. 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_MODULE 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_AS_STRUCTURE_FROM_GUID can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_AS_STRUCTURE_FROM_GUID
.| Name | Type | Data Type | Description | Default Value |
| IV_GUID | Importing | TYPE /SLOAP/GUID | SLOAS: Guid | |
| ES_ELEMENT | Returning | TYPE /SLOAP/MODULE | SLOAS analysis module data |
Exceptions of Method GET_AS_STRUCTURE_FROM_GUID
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_ELEMENT TYPE /SLOAP/MODULE,
lv_IV_GUID TYPE /SLOAP/GUID,
lv_other TYPE c.
CALL METHOD /SLOAP/CL_ANALYSIS_MODULE=>GET_AS_STRUCTURE_FROM_GUID(
EXPORTING
IV_GUID = lv_IV_GUID
RECEIVING
ES_ELEMENT = lv_ES_ELEMENT )
"Alternate coding for Method Call with returning parameter
lv_ES_ELEMENT = /SLOAP/CL_ANALYSIS_MODULE=>GET_AS_STRUCTURE_FROM_GUID(
EXPORTING
IV_GUID = lv_IV_GUID ).
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