GET_CUSTOMIZED_ABS_URL SAP Method Customizing URL from DPR_ABS_URL
Below is documentation, parameters and attributes of ABAP Method GET_CUSTOMIZED_ABS_URL within SAP class CL_DPR_URL_UTILS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_DPR_URL_UTILS 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_CUSTOMIZED_ABS_URL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CUSTOMIZED_ABS_URL
.| Name | Type | Data Type | Description | Default Value |
| EV_CUST_ABS_URL | Exporting | TYPE STRING | URL - Stand alone | |
| EV_CUST_NW_BC_URL | Exporting | TYPE STRING | URL - MW Business Client | |
| EV_CUST_PORTAL_URL | Exporting | TYPE STRING | URL - Portal | |
| EV_IGNORE_ABS_URL_DEFAULT | Exporting | TYPE DPR_TV_BAPI_BOOLE | BOOLEAN Value |
Exceptions of Method GET_CUSTOMIZED_ABS_URL
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO CL_DPR_URL_UTILS.
DATA: lv_EV_CUST_ABS_URL TYPE STRING,
lv_EV_CUST_NW_BC_URL TYPE STRING,
lv_EV_CUST_PORTAL_URL TYPE STRING,
lv_EV_IGNORE_ABS_URL_DEFAULT TYPE DPR_TV_BAPI_BOOLE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_CUSTOMIZED_ABS_URL(
IMPORTING
EV_CUST_ABS_URL = lv_EV_CUST_ABS_URL
EV_CUST_NW_BC_URL = lv_EV_CUST_NW_BC_URL
EV_CUST_PORTAL_URL = lv_EV_CUST_PORTAL_URL
EV_IGNORE_ABS_URL_DEFAULT = lv_EV_IGNORE_ABS_URL_DEFAULT ).
Links to Related Class(s)
CL_DPR_U...Full list of available SAP object classes
Search for further information about these or an SAP related objects