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 PROGRAM

Former Member
0 Kudos

Hi All,

How do i use SUBMIT PROGRAM for a program that has more than 1 selection screen,

ie once i enter in 1 selection screen and execute it will take me to second selection screen

2 REPLIES 2

0 Kudos

Hi,

Use SELECTION-TABLE with SUBMIT .

Selction table structure is of type rsparams.

Regards,

Surendar Reddy.

Former Member
0 Kudos

Hi,

try this way....


" Submit using individual values
  SUBMIT   <rkaep000>   "Program name
          WITH r_budat IN s_budat          "r_budat is sumit program input varaible ns s_budat is local variable
          WITH kostl   IN s_kostl
          WITH kstar   IN s_kstar
          AND RETURN.


"Submit using Varinats
SUBMIT <rkaep000>              "program name
     USING SELECTION-SET 'BPC TEST'           "BPC TEST is the Variant name
           AND RETURN.

Prabhudas