Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Submit statement

Former Member
0 Likes
450

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
423

Hi usha,

1. I just tried, its working fine.

2. When we pass with Fieldname = '',

it works perfectly fine.

regards,

amit m.

3 REPLIES 3
Read only

Former Member
0 Likes
424

Hi usha,

1. I just tried, its working fine.

2. When we pass with Fieldname = '',

it works perfectly fine.

regards,

amit m.

Read only

0 Likes
423

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

Read only

Former Member
0 Likes
423

hi,

try this code.

SUBMIT zreport with p_param1 = 'value'

with p_param2 = 'value'.

i think this will help u