run multiple report at the same time [message #551414] |
Wed, 18 April 2012 01:33 |
annu-agi
Messages: 238 Registered: July 2005 Location: Karachi
|
Senior Member |
|
|
dear experts
i have 3 reports combination like and eg, rep1, rep2 and rep3. I want all these reports run in same time and display on the screen. for that i use
host ('RWRUN60 report='||rep_path||'bank_stat_cash.rep userid=pr/pr@lemstst DESTYPE=preview paramform=NO maximize=yes background=YES '
||' p_fiscal_year='||:ctrl_block.p_fiscal_year
||' p_loc_code='||:global.payroll_location_code
||' p_trans_month='||:ctrl_block.p_trans_month
||' p_relg='||:ctrl_block.p_relg
||' p_relg_x='||:ctrl_block.p_relg_x
||' p_bank='||:ctrl_block.p_bank
||' p_empl_type='||:ctrl_block.p_empl_type);
host ('RWRUN60 report='||rep_path||'bank_stat_other.rep userid=pr/pr@lemstst DESTYPE=preview paramform=NO maximize=yes background=YES '
||' p_fiscal_year='||:ctrl_block.p_fiscal_year
||' p_loc_code='||:global.payroll_location_code
||' p_trans_month='||:ctrl_block.p_trans_month
||' p_relg='||:ctrl_block.p_relg
||' p_relg_x='||:ctrl_block.p_relg_x
||' p_bank='||:ctrl_block.p_bank
||' p_empl_type='||:ctrl_block.p_empl_type);
it isnt working, because with background=yes you cant set destype=preview or screen.
anyways is there any other solution or idea so how can i run multiple reports at one time
regards
Anwer
|
|
|