Hi there,
I have a stored procedure that show a record like below.
AccountID | AccountName | Amount | ParentAccountID | ParentAccountName |
ABI01 | Cost of infrastructure A | 1077665 | INF | Infrastructure |
ABI02 | Cost of infrastructure B | 42000 | INF | Infrastructure |
ABM01 | Cost of Maintenance A | 465900 | MTN | MAINTENANCE |
ABM02 | Cost of Maintenance B | 3450000 | MTN | MAINTENANCE |
ABO01 | Cost of Operational A | 110500 | ABM02 | Cost of Maintenance B |
I want a crystal report to showing result like this:
INF : Infrastructure
ABI01 Cost of infrastructure A 1077665
ABI02 Cost of infrastructure B 42000
MTN : Maintenance
ABM01 Cost of Maintenance A 465900
ABM02 Cost of Maintenance B 3450000
ABO01 Cost of Operational A 110500
Is it possible to be made? Thanks for the help..