GRPC_WF_NOTIFICATION is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter GRPC_WF_NOTIFICATION into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_EPIL = After Work Item Description
Selection Text: P_EXADR = FM for Address Determination
Selection Text: P_EXPRE = FM for Preparation Phase
Selection Text: P_FROMD = From work item creation date
Selection Text: P_FROMT = From work item creation time
Selection Text: P_JOBSUF = Job Suffix
Selection Text: P_LOGON = SAPLOGON_ID
Selection Text: P_NEW = Only New Work Items
Selection Text: P_PROL = Before Work Item Description
Selection Text: P_PSUBST = With Passive Substitution
Selection Text: P_S_NAC = Message Class for Subject
Selection Text: P_S_NAN = Message Number for Subject
Selection Text: P_TASKS = Tasks (Blank = All)
Selection Text: P_USER = Users (Blank = All)
Selection Text: X_14ALL = Collective Message
Selection Text: X_ALW_TR = All
Selection Text: X_ERR_TR = Errors Only
Selection Text: X_N14ALL = One Message per Work Item
Selection Text: X_SC_DIS = Work Item Display
Selection Text: X_SC_EXE = Work Item Execution
Selection Text: X_SC_INB = Workflow Entry
Title: Send Notifications for Work Items
Text Symbol: T08 = Exits
Text Symbol: T07 = SAP Shortcut Parameter
Text Symbol: T06 = Instance Data
Text Symbol: T05 = Log
Text Symbol: T04 = Data for an individual run (time stamp is consequently not set)
Text Symbol: T03 = Default Text for Mail Message
Text Symbol: 001 = *** Texts for RSWUWFML2 ***
Text Symbol: 002 = SAPoffice
Text Symbol: 003 = Message
Text Symbol: 004 = Execute the work item by opening the attachment
Text Symbol: 005 = To Workflow Inbox
Text Symbol: M01 = Program Error or Customizing Error:
Text Symbol: M02 = Form tasks could not be determined
Text Symbol: M03 = Work Item:
Text Symbol: M04 = Message sent to:
Text Symbol: M05 = Send failed
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SWF_DOCUMENTATION_CHECK CALL FUNCTION 'SWF_DOCUMENTATION_CHECK' EXPORTING docu_object = p_prol EXCEPTIONS documentation_not_found = 1 OTHERS = 2.
SWF_DOCUMENTATION_CHECK CALL FUNCTION 'SWF_DOCUMENTATION_CHECK' EXPORTING docu_object = p_epil EXCEPTIONS documentation_not_found = 1 OTHERS = 2.
DOCU_VALUE_REQUEST CALL FUNCTION 'DOCU_VALUE_REQUEST' EXPORTING id = c_docu_id_dialog_text object = l_dynp_valu * LANGU = SY-LANGU typ = c_docu_typ_e * FOR_MAINTAIN = 'X' for_display = 'X' * WINDOW_TITLE = IMPORTING value_object = p_prol .
DOCU_VALUE_REQUEST CALL FUNCTION 'DOCU_VALUE_REQUEST' EXPORTING id = c_docu_id_dialog_text object = l_dynp_valu * LANGU = SY-LANGU typ = c_docu_typ_e * FOR_MAINTAIN = 'X' for_display = 'X' * WINDOW_TITLE = IMPORTING value_object = p_epil .
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = l_repid TABLES selection_table = lt_selection_table.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_repid dynumb = '1000' translate_to_upper = ' ' TABLES dynpfields = dynp_tab EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.