‎2008 Dec 11 9:24 AM
In ABAP Query, how to get a default value into the field which is in selection screen?
‎2008 Dec 11 9:25 AM
‎2008 Dec 11 9:27 AM
But is about variants, if I create a variant in Development then what about Quality and Production?
‎2008 Dec 11 9:31 AM
You can create variants in Quality and Production as well or transport it from Development.
‎2008 Dec 11 9:30 AM
hi priya,
You can specify a default value to both a Parameter and a Select-Option with the following addition
Default <value>
E.g. Parameters : p_date TYPE sy-datum DEFAULT sy-datum.
Select-options s_date for sy-datum default sy-datum.
thanks
Sachin
‎2008 Dec 11 9:34 AM
in ABAP query, apart from variants, is there any option where we can mention that default value of a selection-screen field.
‎2008 Dec 11 9:40 AM
‎2008 Dec 11 10:02 AM
You can mention default values in the Query also without creating the variants as well.
When you declare the output variables at that time you can specify the values. This would be saved in the Standard variant.
Revert if anything is not clear.
Thanks.