RPCGETG0 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 RPCGETG0 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.
Title: Data Collection (Great Britain)
INCLUDE RPIAPMG0.
No SAP DATABASE tables are accessed within this REPORT code!
HR_GB_RE5G30 call function 'HR_GB_RE5G30' exporting schid = p0071-scref(3) pdate = aper-begda importing h_t5g30 = h_t5g30 exceptions scheme_id_not_found = 1 others = 2.
HR_GB_TAX_YEAR call function 'HR_GB_TAX_YEAR' exporting p08_date = aper-chkdt importing p08_begin_of_txyear = begin_of_txyear exceptions others = 1.
HR_GB_PAYROLL_TYPE call function 'HR_GB_PAYROLL_TYPE' exporting abkrs = aper-abkrs importing no_of_base_periods = base_prds ratio = base_mult exceptions permo_not_found = 1 payroll_type_not_supported = 2 others = 3.
RP_CHECK_PAY_PERIOD call function 'RP_CHECK_PAY_PERIOD' exporting abkrs = aper-abkrs abrpr = aper-paper zanzl = p0070-zanzl zdate = p0070-zdate zeitx = p0070-zeinz zfper = p0070-zfper importing rcode = returncode tables tabelle = idates EXCEPTIONS "CH note 650832 OTHERS = 1. "
RP_PERIOD_SALARY_FROM_PERNR call function 'RP_PERIOD_SALARY_FROM_PERNR' exporting f_pernr = pernr-pernr f_date = read_date importing f_period_salary = salary exceptions internal_error = 1 others = 2.
RP_HIRE_FIRE call function 'RP_HIRE_FIRE' "Reading of hiring/firing events exporting beg = aper-begda end = aper-endda importing fire_date = fired hire_date = hired tables pphifi = phifi pp0000 = p0000 pp0001 = p0001 exceptions others = 1.
HR_GB_TAXCODE_CHECK CALL FUNCTION 'HR_GB_TAXCODE_CHECK' EXPORTING BEGDA = APER-ENDDA ENDDA = APER-ENDDA IMPORTING TXNMB = P0065-TXNMB TXLET = P0065-TXLET TXREG = P0065-TXREG CHANGING TAXCODE = P0065-TXCOD EXCEPTIONS INVALID_TXCD = 1 INVALID_TXRG = 2 INVALID_TXNO = 3 INVALID_TXLT = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.