‎2008 Jun 23 6:19 PM
Hi Experts,
How to set default value in the select option of web dynpro.
thanks,
‎2008 Jun 23 6:25 PM
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
‎2008 Jun 23 6:25 PM
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
‎2008 Jun 23 6:32 PM
Hello,
Try to use the method SET_VALUE_OF_PARAMETER_FIELD.
Regards.
‎2008 Jun 23 6:57 PM
Hi Sascha ,
what is the type defination of lr_headerline.
Thanks,