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

Web Dynpro

Former Member
0 Likes
494

Hi Experts,

How to set default value in the select option of web dynpro.

thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
476

Hi,

Is it necessary to use memory id's for you?

It is quiet easy to work with field-symbols and

add a value to the range table:

code

data:
ls_tmprange type rsparams.

field-symbols:
<fs_param> type any,
<fs_range> type any,
<fs_rangetable> type table.

ls_tmprange-low = some value.
ls_tmprange-sign = some value.
ls_tmprange-option = some value.

assign lt_range_table->* to <fs_rangetable>.
create DATA lr_headerline like LINE OF <fs_rangetable>.
ASSIGN lr_headerline->* to <fs_range>.
move-CORRESPONDING ls_tmprange to <fs_range>.
append <fs_range> to <fs_rangetable>.

Check these links too

Thanks

Vikranth

3 REPLIES 3
Read only

Former Member
0 Likes
477

Hi,

Is it necessary to use memory id's for you?

It is quiet easy to work with field-symbols and

add a value to the range table:

code

data:
ls_tmprange type rsparams.

field-symbols:
<fs_param> type any,
<fs_range> type any,
<fs_rangetable> type table.

ls_tmprange-low = some value.
ls_tmprange-sign = some value.
ls_tmprange-option = some value.

assign lt_range_table->* to <fs_rangetable>.
create DATA lr_headerline like LINE OF <fs_rangetable>.
ASSIGN lr_headerline->* to <fs_range>.
move-CORRESPONDING ls_tmprange to <fs_range>.
append <fs_range> to <fs_rangetable>.

Check these links too

Thanks

Vikranth

Read only

Former Member
0 Likes
476

Hello,

Try to use the method SET_VALUE_OF_PARAMETER_FIELD.

Regards.

Read only

0 Likes
476

Hi Sascha ,

what is the type defination of lr_headerline.

Thanks,