GET_DG_UI_PROFILE_CONF SAP Method Read the DG UI profile information
Below is documentation, parameters and attributes of ABAP Method GET_DG_UI_PROFILE_CONF within SAP class /SCMTMS/CL_BO_DG_DATA. 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 /SCMTMS/CL_BO_DG_DATA 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_DG_UI_PROFILE_CONF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DG_UI_PROFILE_CONF
.| Name | Type | Data Type | Description | Default Value |
| IV_DB_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_PROFILE_NAME | Importing | TYPE /SCMTMS/DG_UI_PROFILE_NAME | Dangerous goods UI profile name for document based data | |
| ET_CONF | Exporting | TYPE /SCMTMS/T_PROFILE_CONF | Table of Profile Configuration | |
| EV_PROFILE_INVALID | Exporting | TYPE FLAG | General Flag | |
| EV_PROFILE_NOT_FOUND | Exporting | TYPE FLAG | General Flag |
Exceptions of Method GET_DG_UI_PROFILE_CONF
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_CONF TYPE /SCMTMS/T_PROFILE_CONF,
lv_EV_PROFILE_INVALID TYPE FLAG,
lv_EV_PROFILE_NOT_FOUND TYPE FLAG,
lv_IV_DB_KEY TYPE /BOBF/CONF_KEY,
lv_IV_PROFILE_NAME TYPE /SCMTMS/DG_UI_PROFILE_NAME,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_BO_DG_DATA=>GET_DG_UI_PROFILE_CONF(
EXPORTING
IV_DB_KEY = lv_IV_DB_KEY
IV_PROFILE_NAME = lv_IV_PROFILE_NAME
IMPORTING
ET_CONF = lv_ET_CONF
EV_PROFILE_INVALID = lv_EV_PROFILE_INVALID
EV_PROFILE_NOT_FOUND = lv_EV_PROFILE_NOT_FOUND ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects