SAP Reports / Programs | Financial Accounting | Localization(FI-LOC) SAP FI

RFIDUS99C SAP ABAP Report - Cancellation of Debt (1099-C)







RFIDUS99C is a standard Executable ABAP Report 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 RFIDUS99C into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFIDUS99C. "Basic submit
SUBMIT RFIDUS99C AND RETURN. "Return to original report after report execution complete
SUBMIT RFIDUS99C VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_CCITY = City
Selection Text: P_CNAME1 = Company name 1
Selection Text: P_CNAME2 = Company name 2
Selection Text: P_CORR = Correction file ind.
Selection Text: P_CSTATE = State
Selection Text: P_CZIP = Zip code
Selection Text: P_EMAIL = Contact Email Address
Selection Text: P_F1PI = Form
Selection Text: P_F1PR = Output Device
Selection Text: P_FMPR = Print Form
Selection Text: P_IRS = IRS file name
Selection Text: P_KUNNR = Customer account
Selection Text: P_LOCAL = Download on Local File
Selection Text: P_LOFILE = Local File
Selection Text: P_MINCK = Mininum amount check
Selection Text: P_MNUM = Transmitter Media Number
Selection Text: P_NAME1 = Name 1
Selection Text: P_NAME2 = Name 2
Selection Text: P_PADDR = Mailing address
Selection Text: P_PAYER = Payer (P) / Transfer A
Selection Text: P_PCITY = City
Selection Text: P_PCTL = Payer name control
Selection Text: P_PDF = PDF Form
Selection Text: P_PERSON = Contact person
Selection Text: P_PNAME = Payer name 1
Selection Text: P_PNAME1 = TA name 1/ Payer name
Selection Text: P_PSTATE = State
Selection Text: P_PTEL = Phone
Selection Text: P_PTIN = TIN
Selection Text: P_PZIP = Zip code
Selection Text: P_SEFILE = Application Server File
Selection Text: P_SERVER = Download on Application Server
Selection Text: P_SF = Smartform
Selection Text: P_TAPE = Magnetic tape file
Selection Text: P_TCC = Transmitter control
Selection Text: P_TEL = Phone
Selection Text: P_TEST = Test file
Selection Text: P_TIN = TIN





Selection Text: P_VAR1 = Write-off list
Selection Text: P_CADDR = Company mailing address
Selection Text: P_BUCHDT = Posting date
Selection Text: P_BLDATE = Document date
Selection Text: P_ALPHA = Alpha Replacement Co
Selection Text: PAR_TRID = Format tree
Title: Cancellation of Debt (1099-C)
Text Symbol: C04 = Collapse Payer/Transfer Agent
Text Symbol: C03 = Collapse Transmitter
Text Symbol: C02 = Collapse Mininum Check
Text Symbol: C01 = Collapse General Selections
Text Symbol: 040 = Configuration
Text Symbol: 017 = Doc Nr CDate Debt Amt Debt description
Text Symbol: 011 = List
Text Symbol: 010 = Form
Text Symbol: 009 = File
Text Symbol: 008 = Cust no. Address
Text Symbol: 007 = Configuration
Text Symbol: 006 = Output
Text Symbol: 005 = Record File Properties
Text Symbol: 004 = Payer/Transfer Agent
Text Symbol: 003 = Transmitter
Text Symbol: 002 = Mininum Check
Text Symbol: 001 = General selections
Text Symbol: C05 = Collapse Record File Properties
Text Symbol: C06 = Collapse Output
Text Symbol: E01 = Expand General Selections
Text Symbol: E02 = Expand Mininum Check
Text Symbol: E03 = Expand Transmitter
Text Symbol: E04 = Expand Payer/Transfer Agent
Text Symbol: E05 = Expand Record File Properties
Text Symbol: E06 = Expand Output
Text Symbol: S00 = Transmitter control
Text Symbol: S01 = City/State/Zip
Text Symbol: S02 = Test file
Text Symbol: S03 = Magnetic tape file
Text Symbol: S04 = Correction file ind.
Text Symbol: S05 = TIN
Text Symbol: S06 = List Section





Text Symbol: S07 = Layout
Text Symbol: S08 = Write-off list


INCLUDES used within this REPORT RFIDUS99C

INCLUDE I_RFIDUS99C_001.
INCLUDE I_RFIDUS99C_002.
INCLUDE I_RFIDUS99C_003.
INCLUDE I_RFIDUS99C_004_PDF.
INCLUDE I_RFIDUS99C_005.


TABLES used within REPORT and the associated SELECT statement:

No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

KD_GET_FILENAME_ON_F4 CALL FUNCTION 'KD_GET_FILENAME_ON_F4' EXPORTING static = 'X' CHANGING file_name = p_lofile.

ADDR_GET CALL FUNCTION 'ADDR_GET' EXPORTING address_selection = addr1_sel read_texts = 'X' IMPORTING address_value = wa_address_value * ADDRESS_ADDITIONAL_INFO = returncode = wa_sadr_rc address_text = wa_addr1_text sadr = sadr EXCEPTIONS parameter_error = 1 address_not_exist = 2 version_not_exist = 3 internal_error = 4 OTHERS = 5."SADR40A

ICON_CREATE CALL FUNCTION 'ICON_CREATE': "ACC30 >>> EXPORTING name = 'ICON_COLLAPSE' text = text-001 info = text-c01 IMPORTING result = pushb_c1, EXPORTING name = 'ICON_COLLAPSE' text = text-002 info = text-c02 IMPORTING result = pushb_c2, EXPORTING name = 'ICON_COLLAPSE' text = text-003 info = text-c03 IMPORTING result = pushb_c3, EXPORTING name = 'ICON_COLLAPSE' text = text-004 info = text-c04 IMPORTING result = pushb_c4, EXPORTING name = 'ICON_COLLAPSE' text = text-005 info = text-c05 IMPORTING result = pushb_c5, EXPORTING name = 'ICON_COLLAPSE' text = text-006 info = text-c06 IMPORTING result = pushb_c6. "ACC30 <<<

ICON_CREATE CALL FUNCTION 'ICON_CREATE': "ACC30 >>> EXPORTING name = 'ICON_EXPAND' text = text-001 info = text-e01 IMPORTING result = pushb_o1, EXPORTING name = 'ICON_EXPAND' text = text-002 info = text-e02 IMPORTING result = pushb_o2, EXPORTING name = 'ICON_EXPAND' text = text-003 info = text-e03 IMPORTING result = pushb_o3, EXPORTING name = 'ICON_EXPAND' text = text-004 info = text-e04 IMPORTING result = pushb_o4, EXPORTING name = 'ICON_EXPAND' text = text-005 info = text-e05 IMPORTING result = pushb_o5, EXPORTING name = 'ICON_EXPAND' text = text-006 info = text-e06 IMPORTING result = pushb_o6. "ACC30 <<<



Contribute (Add Comments)

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 RFIDUS99C or its description.