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

Default Value

Former Member
0 Likes
640

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
605

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,

4 REPLIES 4
Read only

Former Member
0 Likes
606

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,

Read only

Former Member
0 Likes
605

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

Read only

Former Member
0 Likes
605

Hi,

Assigh the default value in PBO to the screen field.

Regards,

viven

Read only

Former Member
0 Likes
605

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.