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

POs scheduling

Former Member
0 Likes
477

Hi Experts,

I have one requirement. i have to create a Program for PO s scheduling ,

in my program i have to use submit statement at one condition. which program i am using for submit i have two parameters in selection screen for that program. how can i pass those 2 fields using SUBMIT statement from my custom program.

SYNTAX:

   SUBMIT ZXXXXXXX VIA SELECTION-SCREEN WITH s_bsart EQ r_bsart_sub
                                                                                                           s_ebeln EQ r_ebeln_sub.

In ZXXXXX i have bsart and ebeln in selection screen. if i write like this it not allowing to pass second field (S_EBELN). how can i achive this.

Thanks in advance,

Sravan

Hi Experts,

I have one requirement. i have to create a Program for PO s scheduling ,

in my program i have to use submit statement at one condition. which program i am using for submit i have two parameters in selection screen for that program. how can i pass those 2 fields using SUBMIT statement from my custom program.

SYNTAX:

   SUBMIT ZXXXXXXX VIA SELECTION-SCREEN WITH s_bsart EQ r_bsart_sub
                                                                                                           s_ebeln EQ r_ebeln_sub.

In ZXXXXX i have bsart and ebeln in selection screen. if i write like this it not allowing to pass second field (S_EBELN). how can i achive this.

Thanks in advance,

Sravan

1 REPLY 1
Read only

RaymondGiuseppi
Active Contributor
0 Likes
440

Just check the statement syntax : (you forget a WITH) - Read WITH expr_syntax1 WITH expr_syntax2 ... in SUBMIT documentation (or press F1).

SUBMIT zxxxxxxx VIA SELECTION-SCREEN WITH s_bsart EQ r_bsart_sub
                                      WITH s_ebeln EQ r_ebeln_sub.

Regards;

Raymond