RNAFSPER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program is used to change the value of the 'Billing block' field (NFAL-SPER) for one or more cases, that is, to block a case for billing or cancel a block...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 RNAFSPER into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ONA7 - IS-H: Change Billing Block
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: TEST = Test Mode (no Changes)
Selection Text: SELKZ = Case Selection
Selection Text: PROTE = Extended Log
Selection Text: O_FSPER = Only for Init.Val.Bill.Block
Selection Text: N_FSPER = New Value of Billing Block
Selection Text: FALNR = ..Including only Case
Selection Text: EINRI = Institution
Title: IS-H: Change Billing Block
Text Symbol: 001 = Selection Criteria
Text Symbol: 002 = Program Settings
Text Symbol: 003 = Billing Block
Text Symbol: 010 = No selection exists.
Text Symbol: 011 = Selection Run
Text Symbol: 012 = None of selected cases exist.
Text Symbol: 013 = No change since case canceled:
Text Symbol: 014 = --- Successfully Changed:
Text Symbol: 015 = Test mode active. No changes are made.
Text Symbol: 016 = Number of Select.:
Text Symbol: 017 = Cases Checked:
Text Symbol: 018 = Cases Changed:
Text Symbol: 019 = Already on Required Value:
Text Symbol: 020 = Billing block does not match initial value:
Text Symbol: 021 = Following selection(s) taken into account:
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_AUTH_CHECK_REPORT_EINRI CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_EINRI' EXPORTING repid = 'RNAFSPER' einri = einri messagetype = 'E'.
ISH_UPDATE_NFAL_FSPER CALL FUNCTION 'ISH_UPDATE_NFAL_FSPER' EXPORTING fsper = n_fsper n_nfal = nfal o_nfal = nfal tcode = 'NA06'.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid it_fieldcat = gt_fieldcat_list it_events = gt_eventtab_list is_layout = gs_layout_list TABLES t_outtab = gt_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_inclname = gv_repid i_internal_tabname = 'GT_OUTTAB' CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_eventtab_list EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid it_fieldcat = gt_fieldcat_list is_layout = gs_layout_list it_events = gt_eventtab_list TABLES t_outtab = gt1_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_inclname = gv_repid i_internal_tabname = 'GT1_OUTTAB' CHANGING ct_fieldcat = xt_fieldcat_list EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.