How to report output like below
supplier name date amount
abc software jan/11 10000 /* jan month total transactions*/
abc software feb/12 30000 /* feb month total transactions*/
dell computers jan/13 45000 /* jan month total transactions*/
Answers were Sorted based on User's Feedback
Answer / sovan
select supplier_name "supplier name" ,to_char
(trx_date,'mon/yy') "date",amount "amount"||'/*'||to_char(trx_date,'mon')||'
month total transactions */' from <Table_NAME>;
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / aditya
Hi,
Just write a report function which takes the date and finds
the month then concatenate it with the text /* (<Month>)
month total transactions*/
Regards,
Aditya
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ram
select supplier_name ,to_char
(sysdate,'mon/yy'),amount||'/*'||to_char(sysdate,'mon')||'
month total transactions */' from <Table_NAME>;
| Is This Answer Correct ? | 1 Yes | 1 No |
can we write sql statement in Format trigger?
please send me forms, xml pulisher questions,answers
Form development process?
in one report using two layout models.if yes how to do
which API to return the parameters & valuesets etc
WHAT IS CUSTOM VIEW AND CUSTOM COMPONENT?
How to attach the multiple templates in XML Pub Report?
In hierarchical structure of a database? we have write query from where we should start?
How to create multi-layout reports ? If we have 5 layouts , then how to get into the 4th one ?
what is instead of trigger in where u will use?
sourcing in GL
in oracle workflow if i want to send a mail to the user after sending if the user didn't approve the mail after 10 mins it is automatimatically approved how we can approach?