SAP TRINT_POPUP_EDIT_CANCEL_SHOW Function Module for









TRINT_POPUP_EDIT_CANCEL_SHOW is a standard trint popup edit cancel show 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 trint popup edit cancel show FM, simply by entering the name TRINT_POPUP_EDIT_CANCEL_SHOW into the relevant SAP transaction such as SE37 or SE38.

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



Function TRINT_POPUP_EDIT_CANCEL_SHOW 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 'TRINT_POPUP_EDIT_CANCEL_SHOW'"
EXPORTING
* IV_FUNC_EDIT = 'X' "
* IV_MSGV1 = ' ' "
* IV_MSGV2 = ' ' "
* IV_MSGV3 = ' ' "
* IV_MSGV4 = ' ' "
* IV_TEXT1 = ' ' "
* IV_TEXT2 = ' ' "
* IV_TEXT3 = ' ' "
* IV_TEXT4 = ' ' "
* IV_DYNNR = ' ' "
* IT_E071 = "
* IV_FUNC_GO_ON = 'X' "
* IT_E071K = "
* IV_FUNC_LOCK_OVER = 0 "
* IV_FUNC_OBJ_ATTR = 0 "
* IV_FUNC_OBJ_OVER = 'X' "
* IV_FUNC_SHOW = 'X' "
* IV_FUNC_GO_ON_ALL = ' ' "
* IV_MSGID = ' ' "
* IV_MSGNO = 0 "

IMPORTING
EV_FUNCTION = "
.



IMPORTING Parameters details for TRINT_POPUP_EDIT_CANCEL_SHOW

IV_FUNC_EDIT -

Data type: TRFUNCWANT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_MSGV1 -

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

IV_MSGV2 -

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

IV_MSGV3 -

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

IV_MSGV4 -

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

IV_TEXT1 -

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

IV_TEXT2 -

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

IV_TEXT3 -

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

IV_TEXT4 -

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

IV_DYNNR -

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

IT_E071 -

Data type: TR_OBJECTS
Optional: Yes
Call by Reference: Yes

IV_FUNC_GO_ON -

Data type: TRFUNCWANT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_E071K -

Data type: TR_KEYS
Optional: Yes
Call by Reference: Yes

IV_FUNC_LOCK_OVER -

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

IV_FUNC_OBJ_ATTR -

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

IV_FUNC_OBJ_OVER -

Data type: TRFUNCWANT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_FUNC_SHOW -

Data type: TRFUNCWANT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_FUNC_GO_ON_ALL -

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

IV_MSGID -

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

IV_MSGNO -

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

EXPORTING Parameters details for TRINT_POPUP_EDIT_CANCEL_SHOW

EV_FUNCTION -

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

Copy and paste ABAP code example for TRINT_POPUP_EDIT_CANCEL_SHOW 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_ev_function  TYPE TRFUNCPOP, "   
lv_iv_func_edit  TYPE TRFUNCWANT, "   'X'
lv_iv_msgv1  TYPE SYMSGV, "   ' '
lv_iv_msgv2  TYPE SYMSGV, "   ' '
lv_iv_msgv3  TYPE SYMSGV, "   ' '
lv_iv_msgv4  TYPE SYMSGV, "   ' '
lv_iv_text1  TYPE TRTEXT132, "   ' '
lv_iv_text2  TYPE TRTEXT132, "   ' '
lv_iv_text3  TYPE TRTEXT132, "   ' '
lv_iv_text4  TYPE TRTEXT132, "   ' '
lv_iv_dynnr  TYPE SCRFDYNNR, "   ' '
lv_it_e071  TYPE TR_OBJECTS, "   
lv_iv_func_go_on  TYPE TRFUNCWANT, "   'X'
lv_it_e071k  TYPE TR_KEYS, "   
lv_iv_func_lock_over  TYPE SYTABIX, "   0
lv_iv_func_obj_attr  TYPE SYTABIX, "   0
lv_iv_func_obj_over  TYPE TRFUNCWANT, "   'X'
lv_iv_func_show  TYPE TRFUNCWANT, "   'X'
lv_iv_func_go_on_all  TYPE TRFUNCWANT, "   ' '
lv_iv_msgid  TYPE SYMSGID, "   ' '
lv_iv_msgno  TYPE SYMSGNO. "   0

  CALL FUNCTION 'TRINT_POPUP_EDIT_CANCEL_SHOW'  "
    EXPORTING
         IV_FUNC_EDIT = lv_iv_func_edit
         IV_MSGV1 = lv_iv_msgv1
         IV_MSGV2 = lv_iv_msgv2
         IV_MSGV3 = lv_iv_msgv3
         IV_MSGV4 = lv_iv_msgv4
         IV_TEXT1 = lv_iv_text1
         IV_TEXT2 = lv_iv_text2
         IV_TEXT3 = lv_iv_text3
         IV_TEXT4 = lv_iv_text4
         IV_DYNNR = lv_iv_dynnr
         IT_E071 = lv_it_e071
         IV_FUNC_GO_ON = lv_iv_func_go_on
         IT_E071K = lv_it_e071k
         IV_FUNC_LOCK_OVER = lv_iv_func_lock_over
         IV_FUNC_OBJ_ATTR = lv_iv_func_obj_attr
         IV_FUNC_OBJ_OVER = lv_iv_func_obj_over
         IV_FUNC_SHOW = lv_iv_func_show
         IV_FUNC_GO_ON_ALL = lv_iv_func_go_on_all
         IV_MSGID = lv_iv_msgid
         IV_MSGNO = lv_iv_msgno
    IMPORTING
         EV_FUNCTION = lv_ev_function
. " TRINT_POPUP_EDIT_CANCEL_SHOW




ABAP code using 7.40 inline data declarations to call FM TRINT_POPUP_EDIT_CANCEL_SHOW

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.

 
DATA(ld_iv_func_edit) = 'X'.
 
DATA(ld_iv_msgv1) = ' '.
 
DATA(ld_iv_msgv2) = ' '.
 
DATA(ld_iv_msgv3) = ' '.
 
DATA(ld_iv_msgv4) = ' '.
 
DATA(ld_iv_text1) = ' '.
 
DATA(ld_iv_text2) = ' '.
 
DATA(ld_iv_text3) = ' '.
 
DATA(ld_iv_text4) = ' '.
 
DATA(ld_iv_dynnr) = ' '.
 
 
DATA(ld_iv_func_go_on) = 'X'.
 
 
 
 
DATA(ld_iv_func_obj_over) = 'X'.
 
DATA(ld_iv_func_show) = 'X'.
 
DATA(ld_iv_func_go_on_all) = ' '.
 
DATA(ld_iv_msgid) = ' '.
 
 


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!