Hi,
Iam doing a decode statment in my SQL and group on that decode statement in the report. the decode statement returns 2 values(child, parent).
eg: decode(tab1.field1,tab2.field1,'parent','child')
now in report Iam displaying as follows:
Indictaor Unit node amount
// This is placed in the group footer because need only subtotals and not details
--------------------------------------------
child 1111 a1a1a1a1 $43005
child 2222 a1a1a1a1 $8879
child 3333 a1a1a1a1 $54679
-----------------------------------------------
// this part is placed in details and suppress if the indicator is child
Indictaor Unit node subunit amount
------------------------------------------------
parent 1919 a0a0a0a0 1111 $43005
parent 1919 a0a0a0a0 2222 $8879
parent 1919 a0a0a0a0 3333 $54679
But Now My user wants to see the report as( 2nd part of the report)as:
// this part is placed in details and suppress if the indicator is child
Indictaor Unit node subunit Parentamt childamt
----------------------------------------------------------
parent 1919 a0a0a0a0 1111 $43005 $43005
parent 1919 a0a0a0a0 2222 $8879 $8879
parent 1919 a0a0a0a0 3333 $54679 $54679
so that they can compare the data loads have been correct or not. How can I do this. to show the child amount beside the parent amount for comparsion and if any sun unit is miss from I should be do a bold of that row.
Any help Please.
Thanks,
Sweetie
Iam doing a decode statment in my SQL and group on that decode statement in the report. the decode statement returns 2 values(child, parent).
eg: decode(tab1.field1,tab2.field1,'parent','child')
now in report Iam displaying as follows:
Indictaor Unit node amount
// This is placed in the group footer because need only subtotals and not details
--------------------------------------------
child 1111 a1a1a1a1 $43005
child 2222 a1a1a1a1 $8879
child 3333 a1a1a1a1 $54679
-----------------------------------------------
// this part is placed in details and suppress if the indicator is child
Indictaor Unit node subunit amount
------------------------------------------------
parent 1919 a0a0a0a0 1111 $43005
parent 1919 a0a0a0a0 2222 $8879
parent 1919 a0a0a0a0 3333 $54679
But Now My user wants to see the report as( 2nd part of the report)as:
// this part is placed in details and suppress if the indicator is child
Indictaor Unit node subunit Parentamt childamt
----------------------------------------------------------
parent 1919 a0a0a0a0 1111 $43005 $43005
parent 1919 a0a0a0a0 2222 $8879 $8879
parent 1919 a0a0a0a0 3333 $54679 $54679
so that they can compare the data loads have been correct or not. How can I do this. to show the child amount beside the parent amount for comparsion and if any sun unit is miss from I should be do a bold of that row.
Any help Please.
Thanks,
Sweetie