SAP SIN_GRID_EXECUTE_WF_I Function Module for









SIN_GRID_EXECUTE_WF_I is a standard sin grid execute wf i 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 sin grid execute wf i FM, simply by entering the name SIN_GRID_EXECUTE_WF_I into the relevant SAP transaction such as SE37 or SE38.

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



Function SIN_GRID_EXECUTE_WF_I 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 'SIN_GRID_EXECUTE_WF_I'"
EXPORTING
FCODE = "Function Code
* OWNER = "Owner
FOLRG = "
* SUBCLASS = "Subordinate class
* ROW = "
* COLUMN = "
* BUFFER_REFRESH = 'X' "

IMPORTING
E_ITEM_LOST = "
E_ITEM_CHANGED = "

CHANGING
* C_TITLE_TEXT = ' ' "

TABLES
ROW_TABLE = "Selected lines
I_OUTTAB = "
.



IMPORTING Parameters details for SIN_GRID_EXECUTE_WF_I

FCODE - Function Code

Data type: SY-UCOMM
Optional: No
Call by Reference: No ( called with pass by value option)

OWNER - Owner

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

FOLRG -

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

SUBCLASS - Subordinate class

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

ROW -

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

COLUMN -

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

BUFFER_REFRESH -

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

EXPORTING Parameters details for SIN_GRID_EXECUTE_WF_I

E_ITEM_LOST -

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

E_ITEM_CHANGED -

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

CHANGING Parameters details for SIN_GRID_EXECUTE_WF_I

C_TITLE_TEXT -

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

TABLES Parameters details for SIN_GRID_EXECUTE_WF_I

ROW_TABLE - Selected lines

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

I_OUTTAB -

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

Copy and paste ABAP code example for SIN_GRID_EXECUTE_WF_I 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_fcode  TYPE SY-UCOMM, "   
lt_row_table  TYPE STANDARD TABLE OF LVC_S_ROW, "   
lv_e_item_lost  TYPE IBOOLEAN, "   
lv_c_title_text  TYPE LVC_TITLE, "   SPACE
lv_owner  TYPE SY-UNAME, "   
lt_i_outtab  TYPE STANDARD TABLE OF SWLWP1_T, "   
lv_e_item_changed  TYPE IBOOLEAN, "   
lv_folrg  TYPE SIN_FOLRG, "   
lv_subclass  TYPE SIN_SUBCL, "   
lv_row  TYPE LVC_S_ROW, "   
lv_column  TYPE LVC_S_COL, "   
lv_buffer_refresh  TYPE XFELD. "   'X'

  CALL FUNCTION 'SIN_GRID_EXECUTE_WF_I'  "
    EXPORTING
         FCODE = lv_fcode
         OWNER = lv_owner
         FOLRG = lv_folrg
         SUBCLASS = lv_subclass
         ROW = lv_row
         COLUMN = lv_column
         BUFFER_REFRESH = lv_buffer_refresh
    IMPORTING
         E_ITEM_LOST = lv_e_item_lost
         E_ITEM_CHANGED = lv_e_item_changed
    CHANGING
         C_TITLE_TEXT = lv_c_title_text
    TABLES
         ROW_TABLE = lt_row_table
         I_OUTTAB = lt_i_outtab
. " SIN_GRID_EXECUTE_WF_I




ABAP code using 7.40 inline data declarations to call FM SIN_GRID_EXECUTE_WF_I

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 UCOMM FROM SY INTO @DATA(ld_fcode).
 
 
 
DATA(ld_c_title_text) = ' '.
 
"SELECT single UNAME FROM SY INTO @DATA(ld_owner).
 
 
 
 
 
 
 
DATA(ld_buffer_refresh) = 'X'.
 


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!