SAP BBP_OUTPUT_X_DOMAIN_OF_URL Function Module for









BBP_OUTPUT_X_DOMAIN_OF_URL is a standard bbp output x domain of url SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for bbp output x domain of url FM, simply by entering the name BBP_OUTPUT_X_DOMAIN_OF_URL into the relevant SAP transaction such as SE37 or SE38.

Function Group: BBP_OUTPUT
Program Name: SAPLBBP_OUTPUT
Main Program: SAPLBBP_OUTPUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function BBP_OUTPUT_X_DOMAIN_OF_URL pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'BBP_OUTPUT_X_DOMAIN_OF_URL'"
EXPORTING
* IV_URL = "
* IV_URL_STRING = "

IMPORTING
EV_DOMAIN = "
EV_PORT = "
EV_PATH = "
EV_FILE = "

EXCEPTIONS
URL_EMPTY = 1 NO_VALID_URL = 2
.



IMPORTING Parameters details for BBP_OUTPUT_X_DOMAIN_OF_URL

IV_URL -

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_URL_STRING -

Data type: STRING
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BBP_OUTPUT_X_DOMAIN_OF_URL

EV_DOMAIN -

Data type: STRING
Optional: No
Call by Reference: Yes

EV_PORT -

Data type: STRING
Optional: No
Call by Reference: Yes

EV_PATH -

Data type: STRING
Optional: No
Call by Reference: Yes

EV_FILE -

Data type: STRING
Optional: No
Call by Reference: Yes

EXCEPTIONS details

URL_EMPTY -

Data type:
Optional: No
Call by Reference: Yes

NO_VALID_URL -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BBP_OUTPUT_X_DOMAIN_OF_URL Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_iv_url  TYPE C, "   
lv_ev_domain  TYPE STRING, "   
lv_url_empty  TYPE STRING, "   
lv_ev_port  TYPE STRING, "   
lv_no_valid_url  TYPE STRING, "   
lv_iv_url_string  TYPE STRING, "   
lv_ev_path  TYPE STRING, "   
lv_ev_file  TYPE STRING. "   

  CALL FUNCTION 'BBP_OUTPUT_X_DOMAIN_OF_URL'  "
    EXPORTING
         IV_URL = lv_iv_url
         IV_URL_STRING = lv_iv_url_string
    IMPORTING
         EV_DOMAIN = lv_ev_domain
         EV_PORT = lv_ev_port
         EV_PATH = lv_ev_path
         EV_FILE = lv_ev_file
    EXCEPTIONS
        URL_EMPTY = 1
        NO_VALID_URL = 2
. " BBP_OUTPUT_X_DOMAIN_OF_URL




ABAP code using 7.40 inline data declarations to call FM BBP_OUTPUT_X_DOMAIN_OF_URL

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!