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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IDENTIFIER | Importing | TYPE STRING | Name | |
| KIND | Importing | TYPE I | Kind (Namespace) | |
| MAXGRADE | Importing | TYPE I | ||
| DEPENTITIES | Exporting | TYPE SCC_DETAILED_COMPLETIONS | Detailed sub-entities like components or type | |
| FULLNAME | Exporting | TYPE STRING | Key of entity for repository select | |
| PATTERN | Exporting | TYPE I | Pattern fragment used in source | |
| SHORTTEXT | Exporting | TYPE STRING | Describing text from source | |
| SUBENTITIES | Exporting | TYPE SCC_COMPLETIONS | Sub-entities like components or type | |
| CURRCONTEXT | Exporting | TYPE STRING | Fullname of current call context | |
| DEPITEMS | Exporting | TYPE SCC_COMPLETION_DETAILS_TAB_INT | Dependent items of completion item | |
| DETAILS | Exporting | TYPE 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 exceptionsExample 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