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: 

Enter data to multiple selection with submit

zhlish
Explorer
0 Kudos

Hi, I was wondering if there is any way to fill multiple selection from the code in a SUBMIT stantement.

For now i'm filling the range of my dates, but I still can't figure it out how to maintain ranges in the original program, and fill just the multiple selection from my SUBMIT

1 ACCEPTED SOLUTION

maciej_domagaa
Contributor
3 REPLIES 3

maciej_domagaa
Contributor

0 Kudos

maciej.domagaa thank you so much, it was exactly what I was searching for, i didn't notice it while reading the documentation.

Sandra_Rossi
Active Contributor

To complete Maciej answer, you may also use WITH ... IN :

DATA range TYPE RANGE OF ...
range = VALUE #( sign = 'I' option = 'EQ' ( low = 'V1' ) ( low = 'V2' ) ).
SUBMIT program ... WITH selopt IN range ...

SUBMIT, selscreen_parameters > ... WITH expr_syntax1 WITH expr_syntax2 ... > sel IN range_tab