SAP REL5_REL5_EVENT_DTITL Function Module for









REL5_REL5_EVENT_DTITL is a standard rel5 rel5 event dtitl 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 rel5 rel5 event dtitl FM, simply by entering the name REL5_REL5_EVENT_DTITL into the relevant SAP transaction such as SE37 or SE38.

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



Function REL5_REL5_EVENT_DTITL 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 'REL5_REL5_EVENT_DTITL'"
IMPORTING
E_XTOTAL = "
E_XCHANGED = "

CHANGING
C_TITLE_TOTAL = "
C_TITLE_OBJAP = "
C_TITLE_ACTVT = "
C_TITLE_SCREEN = "
.



EXPORTING Parameters details for REL5_REL5_EVENT_DTITL

E_XTOTAL -

Data type: BUS000FLDS-CHAR1
Optional: No
Call by Reference: Yes

E_XCHANGED -

Data type: BUS000FLDS-CHAR1
Optional: No
Call by Reference: Yes

CHANGING Parameters details for REL5_REL5_EVENT_DTITL

C_TITLE_TOTAL -

Data type: RSEU1-TIT_TEXT
Optional: No
Call by Reference: Yes

C_TITLE_OBJAP -

Data type: TBZ1T-OTITL
Optional: No
Call by Reference: Yes

C_TITLE_ACTVT -

Data type: BUS000FLDS-ACTIVIT
Optional: No
Call by Reference: Yes

C_TITLE_SCREEN -

Data type: TBZ3B-DTITL
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for REL5_REL5_EVENT_DTITL 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_e_xtotal  TYPE BUS000FLDS-CHAR1, "   
lv_c_title_total  TYPE RSEU1-TIT_TEXT, "   
lv_e_xchanged  TYPE BUS000FLDS-CHAR1, "   
lv_c_title_objap  TYPE TBZ1T-OTITL, "   
lv_c_title_actvt  TYPE BUS000FLDS-ACTIVIT, "   
lv_c_title_screen  TYPE TBZ3B-DTITL. "   

  CALL FUNCTION 'REL5_REL5_EVENT_DTITL'  "
    IMPORTING
         E_XTOTAL = lv_e_xtotal
         E_XCHANGED = lv_e_xchanged
    CHANGING
         C_TITLE_TOTAL = lv_c_title_total
         C_TITLE_OBJAP = lv_c_title_objap
         C_TITLE_ACTVT = lv_c_title_actvt
         C_TITLE_SCREEN = lv_c_title_screen
. " REL5_REL5_EVENT_DTITL




ABAP code using 7.40 inline data declarations to call FM REL5_REL5_EVENT_DTITL

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.

"SELECT single CHAR1 FROM BUS000FLDS INTO @DATA(ld_e_xtotal).
 
"SELECT single TIT_TEXT FROM RSEU1 INTO @DATA(ld_c_title_total).
 
"SELECT single CHAR1 FROM BUS000FLDS INTO @DATA(ld_e_xchanged).
 
"SELECT single OTITL FROM TBZ1T INTO @DATA(ld_c_title_objap).
 
"SELECT single ACTIVIT FROM BUS000FLDS INTO @DATA(ld_c_title_actvt).
 
"SELECT single DTITL FROM TBZ3B INTO @DATA(ld_c_title_screen).
 


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!