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

Enter data to multiple selection with submit

zhlish
Explorer
0 Likes
1,604

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
Read only

Maciej_DomagaBa
Contributor
1,550
3 REPLIES 3
Read only

Maciej_DomagaBa
Contributor
1,551
Read only

0 Likes
1,550

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

Read only

Sandra_Rossi
Active Contributor
1,550

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