Application Development 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: 

Submit help!!

Former Member
0 Kudos

Hi,

In the report iam calling a submit for transaction vl04 and i need the second screen after i pass shipping point andd sales order number to it. How do i achieve this@!!

Thanks

Vicky

1 ACCEPTED SOLUTION

former_member181962
Active Contributor
0 Kudos

Instead , pass the mandatory parameters for the first screen using set parameter statements and use

call transaction 'VL04' and skip first screen.

Regards,

Ravi

5 REPLIES 5

former_member181962
Active Contributor
0 Kudos

Instead , pass the mandatory parameters for the first screen using set parameter statements and use

call transaction 'VL04' and skip first screen.

Regards,

Ravi

0 Kudos

Here is the code.



tables: vbak.

ranges: r_vbeln for vbak-vbeln.

r_vbeln-sign = 'I'.

r_vbeln-option = 'EQ'.

r_vbeln-low = '123456'.

append r_vbeln.

 

submit rv50sbt1 

with VSTEL = '6000'

with s_vbeln in r_vbeln

and return.

 


Regards,

Rich Heilman

0 Kudos

I need the second screen as my output for the report how do i do this

Thanks

Vicky

0 Kudos

You have to use call transaction method with skip initial screen.

Not sure about achieving with SUBMIT statement.

Regds

Manohar

0 Kudos

Hi Vicky,

You CANNOT display the report output using submit.

You can only get the output to go to the spool.

After the SUBMIT, YOU CAN CALL THE FUNCTION:

RSPO_RID_SPOOLREQ_DISP

rEGARDS,

rAVI