GET_CHIP_ID_FROM_PARTS SAP Method of class /UI2/CL_AD_REMOTE_UTIL
Below is documentation, parameters and attributes of ABAP Method GET_CHIP_ID_FROM_PARTS within SAP class /UI2/CL_AD_REMOTE_UTIL. 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 /UI2/CL_AD_REMOTE_UTIL 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_CHIP_ID_FROM_PARTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CHIP_ID_FROM_PARTS
.| Name | Type | Data Type | Description | Default Value |
| APP_ID | Importing | TYPE /UI2/AD_MM_APP_ID | AppDescriptor Mass Maintenance: App ID | |
| BASE_CHIP_ID | Importing | TYPE STRING | ||
| CAT_ID_RFC | Importing | TYPE /UI2/AD_MM_CAT_ID | AppDescriptor Mass Maintenance: Catalog ID | |
| SYSALIAS | Importing | TYPE /UI2/SYSALIAS | UI2: System Alias | |
| CHIP_ID | Returning | TYPE STRING |
Exceptions of Method GET_CHIP_ID_FROM_PARTS
This method does not have any exceptionsExample ABAP coding
DATA: lv_APP_ID TYPE /UI2/AD_MM_APP_ID,
lv_BASE_CHIP_ID TYPE STRING,
lv_CAT_ID_RFC TYPE /UI2/AD_MM_CAT_ID,
lv_CHIP_ID TYPE STRING,
lv_SYSALIAS TYPE /UI2/SYSALIAS,
lv_other TYPE c.
CALL METHOD /UI2/CL_AD_REMOTE_UTIL=>GET_CHIP_ID_FROM_PARTS(
EXPORTING
APP_ID = lv_APP_ID
BASE_CHIP_ID = lv_BASE_CHIP_ID
CAT_ID_RFC = lv_CAT_ID_RFC
SYSALIAS = lv_SYSALIAS
RECEIVING
CHIP_ID = lv_CHIP_ID )
"Alternate coding for Method Call with returning parameter
lv_CHIP_ID = /UI2/CL_AD_REMOTE_UTIL=>GET_CHIP_ID_FROM_PARTS(
EXPORTING
APP_ID = lv_APP_ID
BASE_CHIP_ID = lv_BASE_CHIP_ID
CAT_ID_RFC = lv_CAT_ID_RFC
SYSALIAS = lv_SYSALIAS ).
Links to Related Class(s)
/UI2/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects