Hi
I am trying to genarate report in java.
my basic requirement is like:
1. i have to print sales invoice in .txt format.
2. In application, user will select sales invoice no in drop down list.
after clicking print button, user can show his invoice .
3. invoice contain only three column ( simple invoice format)
1. item name 2. rate. 3.qty 4. amount
finally in detail, it will print Total amount.
---------------------------------------------
item name Rate Qty Amount
---------------------------------------------
ABC 10 10 100
PQR 05 10 50
--------------------------------------------
Total: 150
--------------------------------------------
Whether it is possible to print above format report without using
any report tool like Eclipse Birt,Jasper Report, IReport
Kindly suggest any solution.
Thanks