‎2006 Dec 08 10:03 AM
Hi all,
I have a requirement to call a report through a module pool program with some of the fields in the reoprt selection screen populated. I am using the submit statement -
SUBMIT REPORT VIA SELECTION SCREEN WITH values.
But the report selection screen has certain default fields populated. I have to clear these fields too. How do I do it ?
If i pass WITH ' ' in the submit statement, the value is set as = BLANK. I do not want this.
Cheers,
Usha
‎2006 Dec 08 10:20 AM
Hi usha,
1. I just tried, its working fine.
2. When we pass with Fieldname = '',
it works perfectly fine.
regards,
amit m.
‎2006 Dec 08 10:20 AM
Hi usha,
1. I just tried, its working fine.
2. When we pass with Fieldname = '',
it works perfectly fine.
regards,
amit m.
‎2006 Dec 08 10:31 AM
Hello Amit,
Thank you. But this condition adds a condition in the selection screen as = BLANK. This will not fetch all the records. it works fine if it is a parameter, but not for select option.
- Usha
‎2006 Dec 08 10:23 AM
hi,
try this code.
SUBMIT zreport with p_param1 = 'value'
with p_param2 = 'value'.
i think this will help u