2023 Feb 14 6:12 PM
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
2023 Feb 14 6:38 PM
2023 Feb 14 6:38 PM
2023 Feb 15 8:41 AM
maciej.domagaa thank you so much, it was exactly what I was searching for, i didn't notice it while reading the documentation.
2023 Feb 14 6:51 PM
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