RFIDKRTPIB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report prints the tax invoices for goods movements between two business places, using the clearing documents created by report RFIDKRTCIB...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 RFIDKRTPIB into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RFKRIBR - Inter bus. place tax invoice reprint
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: P_IMAGE = PDF Form with Korean Image
Selection Text: P_NIMAGE = PDF Form Without Korean Image
Selection Text: SAUGBL = Clearing Documents
Selection Text: SBUKRS = Company Code
Selection Text: SDATE = Date
Selection Text: SGJAHR = Fiscal Year
Selection Text: SHKONT = G/L Account
Title: Print Tax Invoices Between Business Places
Text Symbol: 001 = Error in OPEN_FORM
Text Symbol: 002 = Error in START_FORM
Text Symbol: 004 = Clearing Documents
Text Symbol: 010 = Error in END_FORM
Text Symbol: 011 = Error in CLOSE_FORM
Text Symbol: 020 = Basic Settings
Text Symbol: 050 = Error in WRITE_FORM, element ADRESSE1
Text Symbol: 051 = Error in WRITE_FORM, element ADRESSE2
Text Symbol: 053 = Error in WRITE_FORM, element TOTAL_AMOUNT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_BUPLA_ADDRESS CALL FUNCTION 'GET_BUPLA_ADDRESS' EXPORTING BUKRS = AUSGLOP_ITAB-BUKRS BUPLA = AUSGLOP_ITAB-BUPLA IMPORTING ADRESSE = S_ADRESSE.
GET_BUPLA_ADDRESS CALL FUNCTION 'GET_BUPLA_ADDRESS' EXPORTING BUKRS = AUSGLOP_ITAB-BUKRS BUPLA = AUSGLOP_ITAB-BUPLA IMPORTING ADRESSE = R_ADRESSE.
OPEN_FORM *CALL FUNCTION 'OPEN_FORM' * EXPORTING * DEVICE = 'PRINTER' * DIALOG = 'X' * OPTIONS = OPTIONS * EXCEPTIONS * CANCELED = 1 * DEVICE = 2 * FORM = 3 * OPTIONS = 4 * UNCLOSED = 5 * OTHERS = 6.
START_FORM *CALL FUNCTION 'START_FORM' * EXPORTING * FORM = FORM * EXCEPTIONS * OTHERS = 1.
WRITE_FORM *CALL FUNCTION 'WRITE_FORM' * EXPORTING * WINDOW = 'ADDRESS' * ELEMENT = 'ADRESSE1' * EXCEPTIONS * OTHERS = 1.
WRITE_FORM *CALL FUNCTION 'WRITE_FORM' * EXPORTING * WINDOW = 'ADDRESS2' * ELEMENT = 'ADRESSE2' * EXCEPTIONS * OTHERS = 1.
WRITE_FORM *CALL FUNCTION 'WRITE_FORM' * EXPORTING * ELEMENT = 'TOTAL_AMOUNT' * EXCEPTIONS * OTHERS = 1.
END_FORM *CALL FUNCTION 'END_FORM' * EXCEPTIONS * OTHERS = 1.
CLOSE_FORM *CALL FUNCTION 'CLOSE_FORM' * IMPORTING * RESULT = RESULT * EXCEPTIONS * OTHERS = 1.
FP_FUNCTION_MODULE_NAME CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' EXPORTING i_name = gv_formname IMPORTING e_funcname = gv_fm_name e_interface_type = gv_interface_type.
FP_JOB_OPEN CALL FUNCTION 'FP_JOB_OPEN' CHANGING ie_outputparams = gv_fp_outputparams EXCEPTIONS cancel = 1 usage_error = 2 system_error = 3 internal_error = 4 OTHERS = 5.
/1BCDWB/SM00000710 CALL FUNCTION gv_fm_name "'/1BCDWB/SM00000710' EXPORTING krftiv_kr_deb_param = gt_taxin_ibp output_type = b_nimage
IMPORTING /1bcdwb/formoutput = gv_fpformoutput EXCEPTIONS usage_error = 1 system_error = 2 internal_error = 3 OTHERS = 4 .
FP_JOB_CLOSE CALL FUNCTION 'FP_JOB_CLOSE' EXCEPTIONS usage_error = 1 system_error = 2 internal_error = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.