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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
DETAILSImportingTYPE
SCC_DETAILED_COMPLETIONS
Table of extended completion entry of ABAP code completion
FULLNAMEImportingTYPE
STRING
Full Name for Completion Item
SETTINGSImportingTYPE
T_USER_SETTINGS
User Settings
FUNCTIONALImportingTYPE
ABAP_BOOL
Functional style?
CHANGING_PARAMETERSExportingTYPE
IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES
CLASS_EXCEPTIONSExportingTYPE
ABAP_BOOL
Boolean Variable (X=True, -=False, Space=Unknown)
EXCEPTIONS_LISTExportingTYPE
IF_ABAP_CC_ATL_TYPES=>EXCEPTIONS
EXPORTING_PARAMETERSExportingTYPE
IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES
IMPORTING_PARAMETERSExportingTYPE
IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES
RETURNING_PARAMETERSExportingTYPE
IF_ABAP_CC_ATL_TYPES=>OBJECT_INTERFACES
CLASS_EXCEPTIONSExportingTYPE
ABAP_BOOL
Class-based exceptions?



Exceptions of Method PARSE_METHOD_PARAMETERS

This method does not have any exceptions

Example 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



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!