SAP G_RW_INITIALIZE_POPUPS Function Module for









G_RW_INITIALIZE_POPUPS is a standard g rw initialize popups 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 g rw initialize popups FM, simply by entering the name G_RW_INITIALIZE_POPUPS into the relevant SAP transaction such as SE37 or SE38.

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



Function G_RW_INITIALIZE_POPUPS 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 'G_RW_INITIALIZE_POPUPS'"
EXPORTING
JOB_TABLE = "

CHANGING
* SUBMIT_P = "
OUT_FILE = "
* RECIPIENT_KEY = "
INDXN = "
* INDXPWD = "
INDXT = "
EDITION = "
DATE = "
OUT_DEVI = "
OUT_FORM = "
OUT_TYPE = "
.



IMPORTING Parameters details for G_RW_INITIALIZE_POPUPS

JOB_TABLE -

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

CHANGING Parameters details for G_RW_INITIALIZE_POPUPS

SUBMIT_P -

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

OUT_FILE -

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

RECIPIENT_KEY -

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

INDXN -

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

INDXPWD -

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

INDXT -

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

EDITION -

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

DATE -

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

OUT_DEVI -

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

OUT_FORM -

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

OUT_TYPE -

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

Copy and paste ABAP code example for G_RW_INITIALIZE_POPUPS 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_submit_p  TYPE C, "   
lv_job_table  TYPE T804A-TAB, "   
lv_out_file  TYPE LGRWO-OUT_FILE, "   
lv_recipient_key  TYPE SWOTOBJID-OBJKEY, "   
lv_indxn  TYPE GRIX_TXT-LTEXT, "   
lv_indxpwd  TYPE RGRWA-INDXPWD, "   
lv_indxt  TYPE RGRWA-INDXT, "   
lv_edition  TYPE RGRWA-EDITION, "   
lv_date  TYPE RGRWA-MASTERDATE, "   
lv_out_devi  TYPE RGRWA-OUT_DEVI, "   
lv_out_form  TYPE RGRWA-OUT_FORM, "   
lv_out_type  TYPE LGRWO-PC_FORMAT. "   

  CALL FUNCTION 'G_RW_INITIALIZE_POPUPS'  "
    EXPORTING
         JOB_TABLE = lv_job_table
    CHANGING
         SUBMIT_P = lv_submit_p
         OUT_FILE = lv_out_file
         RECIPIENT_KEY = lv_recipient_key
         INDXN = lv_indxn
         INDXPWD = lv_indxpwd
         INDXT = lv_indxt
         EDITION = lv_edition
         DATE = lv_date
         OUT_DEVI = lv_out_devi
         OUT_FORM = lv_out_form
         OUT_TYPE = lv_out_type
. " G_RW_INITIALIZE_POPUPS




ABAP code using 7.40 inline data declarations to call FM G_RW_INITIALIZE_POPUPS

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 TAB FROM T804A INTO @DATA(ld_job_table).
 
"SELECT single OUT_FILE FROM LGRWO INTO @DATA(ld_out_file).
 
"SELECT single OBJKEY FROM SWOTOBJID INTO @DATA(ld_recipient_key).
 
"SELECT single LTEXT FROM GRIX_TXT INTO @DATA(ld_indxn).
 
"SELECT single INDXPWD FROM RGRWA INTO @DATA(ld_indxpwd).
 
"SELECT single INDXT FROM RGRWA INTO @DATA(ld_indxt).
 
"SELECT single EDITION FROM RGRWA INTO @DATA(ld_edition).
 
"SELECT single MASTERDATE FROM RGRWA INTO @DATA(ld_date).
 
"SELECT single OUT_DEVI FROM RGRWA INTO @DATA(ld_out_devi).
 
"SELECT single OUT_FORM FROM RGRWA INTO @DATA(ld_out_form).
 
"SELECT single PC_FORMAT FROM LGRWO INTO @DATA(ld_out_type).
 


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!