GRID_UPDATE_TABLES is a standard ABAP INCLUDE 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 GRID_UPDATE_TABLES 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_SUGGESTION_MATCHUP CALL FUNCTION 'RH_SUGGESTION_MATCHUP' EXPORTING begin_date = im_upd_cell_wa-sel_date *xqi 1286191 begin * end_date = im_upd_cell_wa-sel_date end_date = end_date *xqi xqi 1286191 end sel_pernr = im_upd_cell_wa-pernr no_message_output = 'X' auto_assign_flag = 'X' TABLES assignments = req_assign ptimeinfo = person_record p_param_tab = local_param_tab request_tab = local_request_tab.
RH_SUGGESTION_MATCHUP * call function 'RH_SUGGESTION_MATCHUP' * exporting * begin_date = sel_date * end_date = sel_date * sel_pernr = pernr * no_message_output = 'X' * auto_assign_flag = 'X' * tables * assignments = req_assign * ptimeinfo = person_record ** p_param_tab = param_tab "L9CK015858 * p_param_tab = local_param_tab "L9CK015858 * request_tab = local_request_tab. "L9CK006899HP
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.