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

Populating a select-options table on INTIALIZATION

Former Member
0 Likes
528

Hello,

I need to have a report where all of the parameters are already entered. The parameters (select-options) are shipping points (likp-vstel). I have a list of 7 shipping points. How do I go about adding them to the table so_vstel?

Davis

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
507

tables:

likp.

select-options:

so_vstel for likp-vstel.

INITIALIZATION.

so_vstel-low = '1000'.

APPEND so_vstel.

so_vstel-low = '2000'.

APPEND so_vstel.

Hello,

I need to have a report where all of the parameters are already entered. The parameters (select-options) are shipping points (likp-vstel). I have a list of 7 shipping points. How do I go about adding them to the table so_vstel?

Davis

3 REPLIES 3
Read only

Former Member
0 Likes
507

Hi,

In the Initialization event, you can populate default values to select options and parameters.

Check these links for more details -

Hope this helps.

ashish

Read only

Former Member
0 Likes
508

tables:

likp.

select-options:

so_vstel for likp-vstel.

INITIALIZATION.

so_vstel-low = '1000'.

APPEND so_vstel.

so_vstel-low = '2000'.

APPEND so_vstel.

Read only

0 Likes
507

Rajesh, thanks for that info! I wasn't sure if I would duplicate the so_vstel-low or if the -low part would be replaced with something new for each append.

Thanks again!

Davis.