GET_DB_PREFIX SAP Method Get Prefix for a DB Table of an Alert Type
Below is documentation, parameters and attributes of ABAP Method GET_DB_PREFIX within SAP class /SCMB/IF_ABAS_GET_DB_NAMES. 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 /SCMB/IF_ABAS_GET_DB_NAMES into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_DB_PREFIX can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DB_PREFIX
.| Name | Type | Data Type | Description | Default Value |
| IS_APPL_DATA | Importing | TYPE /SAPAPO/AMOAPPL_SET_STR | Settings for an Application | |
| IV_APPLID | Importing | TYPE /SAPAPO/AMOAPPLID | Alert Monitor Application | |
| IV_ATID | Importing | TYPE /SCMB/ATID | Alert Type | |
| IV_DBID | Importing | TYPE /SAPAPO/AMOAE_DB_ID | Alternative Database ID | |
| CV_DB_PREFIX | Changing | TYPE DDOBJNAME | Prefix for Alert DB Tables | |
| CV_DEVCLASS | Changing | TYPE DEVCLASS | Package |
Exceptions of Method GET_DB_PREFIX
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_ABAS_GET_DB_NAMES.
DATA: lv_CV_DB_PREFIX TYPE DDOBJNAME,
lv_CV_DEVCLASS TYPE DEVCLASS,
lv_IS_APPL_DATA TYPE /SAPAPO/AMOAPPL_SET_STR,
lv_IV_APPLID TYPE /SAPAPO/AMOAPPLID,
lv_IV_ATID TYPE /SCMB/ATID,
lv_IV_DBID TYPE /SAPAPO/AMOAE_DB_ID,
lv_other TYPE c.
CALL METHOD lo_class=>GET_DB_PREFIX(
EXPORTING
IS_APPL_DATA = lv_IS_APPL_DATA
IV_APPLID = lv_IV_APPLID
IV_ATID = lv_IV_ATID
IV_DBID = lv_IV_DBID
CHANGING
CV_DB_PREFIX = lv_CV_DB_PREFIX
CV_DEVCLASS = lv_CV_DEVCLASS ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects