GET_COMPLETION_DETAILS SAP Method Retrieve details of completion entry









Below is documentation, parameters and attributes of ABAP Method GET_COMPLETION_DETAILS 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 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 GET_COMPLETION_DETAILS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_COMPLETION_DETAILS

.

NameTypeData TypeDescriptionDefault Value
IDENTIFIERImportingTYPE
STRING
Name
KINDImportingTYPE
I
Kind (Namespace)
MAXGRADEImportingTYPE
I
DEPENTITIESExportingTYPE
SCC_DETAILED_COMPLETIONS
Detailed sub-entities like components or type
FULLNAMEExportingTYPE
STRING
Key of entity for repository select
PATTERNExportingTYPE
I
Pattern fragment used in source
SHORTTEXTExportingTYPE
STRING
Describing text from source
SUBENTITIESExportingTYPE
SCC_COMPLETIONS
Sub-entities like components or type
CURRCONTEXTExportingTYPE
STRING
Fullname of current call context
DEPITEMSExportingTYPE
SCC_COMPLETION_DETAILS_TAB_INT
Dependent items of completion item
DETAILSExportingTYPE
SCC_COMPLETION_ITEM_TAB_INT
Details of completion item (do not use - wrong type)



Exceptions of Method GET_COMPLETION_DETAILS

This method does not have any exceptions

Example ABAP coding


DATA: lv_DEPENTITIES TYPE SCC_DETAILED_COMPLETIONS,
lv_FULLNAME TYPE STRING,
lv_IDENTIFIER TYPE STRING,
lv_KIND TYPE I,
lv_MAXGRADE TYPE I,
lv_PATTERN TYPE I,
lv_SHORTTEXT TYPE STRING,
lv_SUBENTITIES TYPE SCC_COMPLETIONS,
lv_CURRCONTEXT TYPE STRING,
lv_DEPITEMS TYPE SCC_COMPLETION_DETAILS_TAB_INT,
lv_DETAILS TYPE SCC_COMPLETION_ITEM_TAB_INT,
lv_other TYPE c.

CALL METHOD CL_ABAP_PARSER=>GET_COMPLETION_DETAILS(
EXPORTING
IDENTIFIER = lv_IDENTIFIER
KIND = lv_KIND
MAXGRADE = lv_MAXGRADE
IMPORTING
DEPENTITIES = lv_DEPENTITIES
FULLNAME = lv_FULLNAME
PATTERN = lv_PATTERN
SHORTTEXT = lv_SHORTTEXT
SUBENTITIES = lv_SUBENTITIES
CURRCONTEXT = lv_CURRCONTEXT
DEPITEMS = lv_DEPITEMS
DETAILS = lv_DETAILS ).

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!