Application Development 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: 

Disable screen fields

former_member227596
Participant
0 Kudos

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

vikas

3 REPLIES 3

gopi_narendra
Active Contributor
0 Kudos

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

Regards

Gopi

0 Kudos

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

Former Member
0 Kudos

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