PARSE_METHOD_PARAMETERS SAP Method Parse the completion details into Method parameters
Below is documentation, parameters and attributes of ABAP Method PARSE_METHOD_PARAMETERS within SAP class CL_ABAP_PARSER. 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 CL_ABAP_PARSER 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 PARSE_METHOD_PARAMETERS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PARSE_METHOD_PARAMETERS
.| Name | Type | Data Type | Description | Default Value |
| DETAILS | Importing | TYPE SCC_DETAILED_COMPLETIONS | Table of extended completion entry of ABAP code completion | |
| FULLNAME | Importing | TYPE STRING | Full Name for Completion Item | |
| SETTINGS | Importing | TYPE T_USER_SETTINGS | User Settings | |
| FUNCTIONAL | Importing | TYPE ABAP_BOOL | Functional style? | |
| CHANGING_PARAMETERS | Exporting | TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES | ||
| CLASS_EXCEPTIONS | Exporting | TYPE ABAP_BOOL | Boolean Variable (X=True, -=False, Space=Unknown) | |
| EXCEPTIONS_LIST | Exporting | TYPE IF_ABAP_CC_ATL_TYPES=>EXCEPTIONS | ||
| EXPORTING_PARAMETERS | Exporting | TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES | ||
| IMPORTING_PARAMETERS | Exporting | TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES | ||
| RETURNING_PARAMETERS | Exporting | TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES | ||
| CLASS_EXCEPTIONS | Exporting | TYPE ABAP_BOOL | Class-based exceptions? |
Exceptions of Method PARSE_METHOD_PARAMETERS
This method does not have any exceptionsExample 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: lv_CHANGING_PARAMETERS TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES,
lv_CLASS_EXCEPTIONS TYPE ABAP_BOOL,
lv_DETAILS TYPE SCC_DETAILED_COMPLETIONS,
lv_EXCEPTIONS_LIST TYPE IF_ABAP_CC_ATL_TYPES=>EXCEPTIONS,
lv_EXPORTING_PARAMETERS TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES,
lv_FULLNAME TYPE STRING,
lv_IMPORTING_PARAMETERS TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES,
lv_RETURNING_PARAMETERS TYPE IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES,
lv_SETTINGS TYPE T_USER_SETTINGS,
lv_CLASS_EXCEPTIONS TYPE ABAP_BOOL,
lv_FUNCTIONAL TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD CL_ABAP_PARSER=>PARSE_METHOD_PARAMETERS(
EXPORTING
DETAILS = lv_DETAILS
FULLNAME = lv_FULLNAME
SETTINGS = lv_SETTINGS
FUNCTIONAL = lv_FUNCTIONAL
IMPORTING
CHANGING_PARAMETERS = lv_CHANGING_PARAMETERS
CLASS_EXCEPTIONS = lv_CLASS_EXCEPTIONS
EXCEPTIONS_LIST = lv_EXCEPTIONS_LIST
EXPORTING_PARAMETERS = lv_EXPORTING_PARAMETERS
IMPORTING_PARAMETERS = lv_IMPORTING_PARAMETERS
RETURNING_PARAMETERS = lv_RETURNING_PARAMETERS
CLASS_EXCEPTIONS = lv_CLASS_EXCEPTIONS ).
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