‎2006 Jul 31 9:21 AM
Hi all!
I had created a screen field and associated a check table to it to provide possible input values.Now my requirement is to give a default value to the field everytime this program is run.
How to achieve this.Please advise..
Regards
Praneeth.
‎2006 Jul 31 9:32 AM
Hi,
If this is a report program, default the values using Initialization event or in the declaration of selection screen with default parameter, if this is a module pool program default the values using PBO event,
You need to assign the value to Screen field,
Hope this helps,
Rgds,
‎2006 Jul 31 9:32 AM
Hi,
If this is a report program, default the values using Initialization event or in the declaration of selection screen with default parameter, if this is a module pool program default the values using PBO event,
You need to assign the value to Screen field,
Hope this helps,
Rgds,
‎2006 Jul 31 9:39 AM
u can assign it in PBO
screen-field = value.
before the screen is loaded the value will be there if u assign it in PBO
‎2006 Jul 31 9:41 AM
Hi,
Assigh the default value in PBO to the screen field.
Regards,
viven
‎2006 Jul 31 1:47 PM
Hai,
Whether a static value is to be displayed or a dynamic value from database is to be displayed. If static/dynamic you can do that in PBO/Initialization Event.
You can also create variant for the screen with default values.