RAINZU10N is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for copied (with modifications) from general long text AA_REP_RAINZU The report determines the investment support in the selected fiscal year...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RAINZU10N into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
AR11 - Investment Grants
AR11N - Investment Grants
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: SO_INVSL = D .
Selection Text: SO_BWASL = D .
Selection Text: P_VARI = D .
Selection Text: PA_TEST = D .
Selection Text: PA_SGTXT = D .
Selection Text: PA_ROUND = D .
Selection Text: PA_RNDNO = D .
Selection Text: PA_RDKFM = D .
Selection Text: PA_RDAUF = D .
Selection Text: PA_PERID = D .
Selection Text: PA_IBWAS = D .
Selection Text: PA_BZDAT = D .
Selection Text: PA_BUDAT = D .
Selection Text: PA_BLDAT = D .
Selection Text: PA_BLART = D .
Selection Text: PA_AIBUZ = Rec.trans.prior-yr acq.frm AuC
Title: Investment Support
Text Symbol: Q05 = Error
Text Symbol: Q04 = A document could not be created due to errors
Text Symbol: Q03 = &V1& documents could not be created due to errors
Text Symbol: Q02 = A document was created successfully
Text Symbol: Q01 = &V1& documents were created successfully
Text Symbol: H04 = Report Date
Text Symbol: H03 = Created At
Text Symbol: H02 = Creation Date
Text Symbol: F03 = Upd. Run:
Text Symbol: F02 = Test Run:
Text Symbol: E01 = Errors occurred during run. Check error log.
Text Symbol: BL2 = Further Settings
Text Symbol: BL1 = Further Selections
INCLUDE RAINZU10NTOP.
INCLUDE LAFARCON.
INCLUDE LAMBUCD0.
INCLUDE DBADACOM. "> 803236
INCLUDE RAINZU10NF1.
INCLUDE RAINZU10NF2.
INCLUDE RAINZU10NF3.
INCLUDE RAINZU10NF4.
No SAP DATABASE tables are accessed within this REPORT code!
TCURX_READ CALL FUNCTION 'TCURX_READ' EXPORTING i_curr = t001-waers IMPORTING e_currdec = tcurx-currdec.
DATE_TO_PERIOD_CONVERT CALL FUNCTION 'DATE_TO_PERIOD_CONVERT' EXPORTING i_date = berdatum i_periv = hlp_periv IMPORTING e_buper = hlp_buper e_gjahr = hlp_gjahr.
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = hlp_gjahr i_monmit = t093c-monmit i_periv = hlp_periv i_poper = con_firstper IMPORTING e_date = hlp_gjbeg EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
LAST_DAY_IN_YEAR_GET CALL FUNCTION 'LAST_DAY_IN_YEAR_GET' EXPORTING i_date = berdatum i_periv = hlp_periv IMPORTING e_date = hlp_gjend EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
FAA_NEWDCP_BUFFER_REFRESH CALL FUNCTION 'FAA_NEWDCP_BUFFER_REFRESH' EXPORTING ib_refresh_asset_manager = 'X' ib_refresh_segment_buffer = 'X' ib_refresh_buffer_registry = 'X'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.