RFIDKRTC_R is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report creates a tax invoice using selected
If you would like to execute this report or see the full code listing simply enter RFIDKRTC_R into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RFIDKRTC_R - Create Tax Bill
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: BILLING = D .
Selection Text: CHCKBOXH = Checkbox at Header Level
Selection Text: CHCKBOXI = Checkbox at Item Level
Selection Text: CHK_PRAD = D .
Selection Text: CHK_PRTI = D .
Selection Text: P_AMEND = D .
Selection Text: P_COLOPT = Optimize Columns
Selection Text: P_DETPOP = Detail Screen as Dialog Box
Selection Text: P_ETI = D .
Selection Text: P_EXC = D .
Selection Text: P_FLIST = D .
Selection Text: P_HQRTS = D .
Selection Text: P_MAXROW = Number of Data Records
Selection Text: P_PDF = D .
Selection Text: P_REMK = Amendment Status Date
Selection Text: P_UEXIT = D .
Selection Text: P_VARI = Layout
Selection Text: P_ZEBRA = Striped Pattern
Selection Text: RECEIPT = D .
Selection Text: S11OP = D .
Selection Text: SBELNR = FICA Document Number
Selection Text: SBUDAT = Posting Date
Selection Text: SBUKRS = Company Code
Selection Text: SBUPLA = Business Place
Selection Text: SGPART = Business Partner
Selection Text: SN1OP = D .
Selection Text: STA1 = D .
Selection Text: STA2 = D .
Selection Text: STXDAT = Tax Invoice Date
Selection Text: SVKONT = Contract Account
Title: Creation of Tax Invoices
Text Symbol: ZTI = Terms of Payment:
Text Symbol: ZTE = Terms of Payment
Text Symbol: ZET = Electronic Tax Invoice
Text Symbol: OPN = Copy Open Items
Text Symbol: 001 = Company Code
Text Symbol: 002 = Do not clear any documents belonging to different
Text Symbol: 003 = business partners.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_save = g_save CHANGING cs_variant = gx_variant EXCEPTIONS not_found = 2.
FKK_COMP_CODE_DATA CALL FUNCTION 'FKK_COMP_CODE_DATA' EXPORTING i_bukrs = ausglop_itab-bukrs IMPORTING e_t001 = t001.
REUSE_ALV_HIERSEQ_LIST_DISPLAY
CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = g_status i_callback_user_command = g_user_command is_layout = gs_layout it_fieldcat = gt_fieldcat[] * IT_EXCLUDING = it_special_groups = gt_sp_group[] * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * i_default = g_default i_save = g_save is_variant = g_variant it_events = gt_events[] * IT_EVENT_EXIT = i_tabname_header = g_tabname_header i_tabname_item = g_tabname_item is_keyinfo = gs_keyinfo * IS_PRINT = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = TABLES t_outtab_header = gt_kunde t_outtab_item = gt_ausglop.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * I_PROGRAM_NAME = i_internal_tabname = g_tabname_header i_structure_name = 'KNA1' * I_CLIENT_NEVER_DISPLAY = 'X' CHANGING ct_fieldcat = e01_lt_fieldcat[].
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * I_PROGRAM_NAME = i_internal_tabname = g_tabname_item i_structure_name = 'AUSGLOP_ITAB' * I_CLIENT_NEVER_DISPLAY = 'X' CHANGING ct_fieldcat = e01_lt_fieldcat[].
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = e03_lt_events.
ADDR_PERSON_NAME_FORMAT CALL FUNCTION 'ADDR_PERSON_NAME_FORMAT' EXPORTING name_format = but000-nameformat name_country = but000-namcountry * LANGUAGE = SY-LANGU name_fields = name_fields length = '35' IMPORTING formatted_name = name_line EXCEPTIONS country_not_exist = 1 language_not_exist = 2 nameformat_not_exist = 3 OTHERS = 4.
FKK_BUPA_READ_SINGLE CALL FUNCTION 'FKK_BUPA_READ_SINGLE' EXPORTING i_partner = fkkvkp-gpart i_xaddr_mult = a_m IMPORTING e_but000 = b_ext TABLES t_address = ty_address EXCEPTIONS partner_not_found = 1 partner_in_role_not_found = 2 internal_error = 3 OTHERS = 4.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_list_top_of_page.
FKK_FPE0_START_TRANSACTION CALL FUNCTION 'FKK_FPE0_START_TRANSACTION' EXPORTING tcode = 'FPE3' opbel = gt_ausglop-opbel EXCEPTIONS document_not_found = 1 OTHERS = 2.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = g_variant i_save = g_save i_tabname_header = g_tabname_header i_tabname_item = g_tabname_item * it_default_fieldcat = IMPORTING e_exit = g_exit es_variant = gx_variant EXCEPTIONS not_found = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING i_save = g_save CHANGING cs_variant = gx_variant.
FKK_TAXINV_NUMBER_GET CALL FUNCTION 'FKK_TAXINV_NUMBER_GET' EXPORTING e_txinv_nrrng = '01' * X_NREX = x_bukrs = iv_bukrs x_txinvdte = iv_stxda x_txyer = iv_stxda(4) IMPORTING y_txinv = lv_save_txinv TABLES tb_fkktxinv = lt_ausglop_itab_tmp[] EXCEPTIONS general_fault = 1 no_range_number_found = 2 number_not_in_interval = 3 interval_not_found = 4 OTHERS = 5.
FKK_TAXINV_NUMBER_GET CALL FUNCTION 'FKK_TAXINV_NUMBER_GET' EXPORTING e_txinv_nrrng = '01' * X_NREX = x_bukrs =
-bukrs x_txinvdte = iv_stxda x_txyer = iv_stxda(4) IMPORTING y_txinv = lv_save_txinv TABLES tb_fkktxinv = lt_ausglop_itab_tmp[] EXCEPTIONS general_fault = 1 no_range_number_found = 2 number_not_in_interval = 3 interval_not_found = 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.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name RFIDKRTC_R or its description.
RFIDKRTC_R - Creation of Tax Invoices RFIDKRTC_R - Creation of Tax Invoices RFIDKRTCR - Print Tax Invoices (South Korea) RFIDKRTCR - Print Tax Invoices (South Korea) RFIDKRTCIB - Tax Invoice Between Business Places: Open Item Clearing RFIDKRTCIB - Tax Invoice Between Business Places: Open Item Clearing