READ_DATABASE_EP_INFO SAP Method Reads the EP version and base URL from the database.
Below is documentation, parameters and attributes of ABAP Method READ_DATABASE_EP_INFO within SAP class CL_CRM_BSP_CONTEXT. 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_CRM_BSP_CONTEXT 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 READ_DATABASE_EP_INFO can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_DATABASE_EP_INFO
.| Name | Type | Data Type | Description | Default Value |
| IV_APPLICATION | Importing | TYPE CRMT_BSP_APPL | Application Scenario | |
| IV_BLVIEW | Importing | TYPE CRMT_BSP_BLVIEW | View for UI Display | |
| IV_OBJECT_ID | Importing | TYPE CRMT_BSP_OBJECTKEY | Object Key | |
| IV_USER_ID | Importing | TYPE SYUNAME | User Name | |
| IV_VERSION | Importing | TYPE CRMT_BSP_VERSION | Version of BSP Application | |
| IV_WINDOW_ID | Importing | TYPE CRMT_BSP_BROWSER_WINDOW_ID | Unique ID of a web browser window. | |
| EV_EP_BASE_URL | Exporting | TYPE STRING | ||
| EV_EP_VERSION | Exporting | TYPE STRING |
Exceptions of Method READ_DATABASE_EP_INFO
This method does not have any exceptionsExample ABAP coding
DATA: lv_EV_EP_BASE_URL TYPE STRING,
lv_EV_EP_VERSION TYPE STRING,
lv_IV_APPLICATION TYPE CRMT_BSP_APPL,
lv_IV_BLVIEW TYPE CRMT_BSP_BLVIEW,
lv_IV_OBJECT_ID TYPE CRMT_BSP_OBJECTKEY,
lv_IV_USER_ID TYPE SYUNAME,
lv_IV_VERSION TYPE CRMT_BSP_VERSION,
lv_IV_WINDOW_ID TYPE CRMT_BSP_BROWSER_WINDOW_ID,
lv_other TYPE c.
CALL METHOD CL_CRM_BSP_CONTEXT=>READ_DATABASE_EP_INFO(
EXPORTING
IV_APPLICATION = lv_IV_APPLICATION
IV_BLVIEW = lv_IV_BLVIEW
IV_OBJECT_ID = lv_IV_OBJECT_ID
IV_USER_ID = lv_IV_USER_ID
IV_VERSION = lv_IV_VERSION
IV_WINDOW_ID = lv_IV_WINDOW_ID
IMPORTING
EV_EP_BASE_URL = lv_EV_EP_BASE_URL
EV_EP_VERSION = lv_EV_EP_VERSION ).
Links to Related Class(s)
CL_CRM_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects