GRID_SHIFT_CHECK 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_SHIFT_CHECK 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!
HR_T77ED_VALUE_REQUEST CALL FUNCTION 'HR_T77ED_VALUE_REQUEST' EXPORTING dienst = dienst dienstgr = dienstgr *xqi 1137865 begin * sel_date = wa_day_struc-date_sp sel_date = sel_date *xqi 1137865 end motpr = person_groupings-motpr moabw = person_groupings-moabw mover = person_groupings-mover IMPORTING sel_prog = dienst EXCEPTIONS t77ed_empty = 1 OTHERS = 2.
HR_READ_TIMEDATA_PSP CALL FUNCTION 'HR_READ_TIMEDATA_PSP' EXPORTING begin_date = im_before_begda end_date = im_before_begda person_id = im_pernr TABLES pers_avail = ipdpsp EXCEPTIONS OTHERS = 4.
HR_READ_TIMEDATA_PSP CALL FUNCTION 'HR_READ_TIMEDATA_PSP' EXPORTING begin_date = im_after_endda end_date = im_after_endda person_id = im_pernr TABLES pers_avail = ipdpsp EXCEPTIONS OTHERS = 4.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = im_pernr infty = '2001' begda = im_begda endda = im_endda bypass_buffer = ' ' TABLES infty_tab = ex_i2001.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = im_pernr infty = '2002' begda = im_begda endda = im_endda bypass_buffer = ' ' TABLES infty_tab = ex_i2002.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.