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

Disable screen fields

former_member227596
Participant
0 Likes
622

I required help to disable screen fields when User command runs in PBI not in case of PBO. Pl. help.

vikas

3 REPLIES 3
Read only

gopi_narendra
Active Contributor
0 Likes
517

It is not possible to change the screen attribute or screen field attributes in the USER_COMMAND

Regards

Gopi

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
517

Hi,

You cannot disable fileds in PAI, what you can do is set some flag in PAI module and then in the PBO check that flag and disable fields.

Regards,

Sesh

Read only

Former Member
0 Likes
517

Hi,

PBI? assuming PAI...

u can disable filed useing :


loop at screen.
if screen-name = '<ur_fld_name>'.
screen-input = 1. "or may be 0
modify screen.
endif.
endloop.

Jogdand M B