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

Skip the Screen

Former Member
0 Likes
894

Hi Experts,

i have created an RFC.In that i am calling a Report program by Using Submit statement.

I kept a Export statement in the Repot program for exporting the Output internal table to my RFC.

While executing the RFC , i am getting the a screen....after that going back i am getiing the Output Internal table of the RFC exactly what i need.

Please suggest me how can i skip that screen.

Regards

Babu

Hi Experts,

i have created an RFC.In that i am calling a Report program by Using Submit statement.

I kept a Export statement in the Repot program for exporting the Output internal table to my RFC.

While executing the RFC , i am getting the a screen....after that going back i am getiing the Output Internal table of the RFC exactly what i need.

Please suggest me how can i skip that screen.

Regards

Babu

6 REPLIES 6
Read only

Former Member
0 Likes
857

Hi,

Try the submit statement this way

SUBMIT zlge1029_delete_delivery

WITH p_deli EQ delivery "Delivery

WITH p_item EQ item_number

AND RETURN.

  • Retrieve Return table from ABAP Memory

IMPORT return5 FROM MEMORY ID 'RETURN5'.

FREE MEMORY ID 'RETURN5'

Regards,

Aditya

Read only

0 Likes
857

Hi Aditya,

Sorry, its not in the Submit program.

Here the problem is , If i executed the Report Program...getting the ALV output list...if i go back i am getting a screen with message

" Report to delete or display Valid Rules".

Please suggest me how to resolve it.

Regards

Vijay

Read only

0 Likes
857

Hi Experts,

here my issue is once i got the Output ALV list...Press F3(Back)...i should go to the selection screen,but i am getting a screen

with the Report Titils.

Regards

Babu

Read only

Former Member
0 Likes
857

Hi,

if u pass all the mandatory fields it will not display the screen until u have not written VIA SELECTION-SCREEN.

say

REPORT ZTEST_TCODE.

tables : mara,marc,mch1.

SELECT-OPTIONS SO_MATNR FOR mara-MATNR. "OBLIGATORY.

SELECT-OPTIONS SO_CHARG FOR mch1-CHARG. "OBLIGATORY.

SUBMIT ZTEST123 and return with SO_matnr = so_matnr

with so_charg = so_charg.

thanks,,

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
857

Just read the F1 help of submit statement.

Report to delete or display Valid Rules

Looks like a custom message, debug and check.

Edited by: Keshav.T on Jan 22, 2010 8:21 PM

Read only

0 Likes
857

Hi Keshav,

Its a Report Title...Displaying in a screen.

Thanks

Babu