‎2007 Jun 13 11:04 AM
I required help to disable screen fields when User command runs in PBI not in case of PBO. Pl. help.
vikas
‎2007 Jun 13 11:05 AM
It is not possible to change the screen attribute or screen field attributes in the USER_COMMAND
Regards
Gopi
‎2007 Jun 13 11:06 AM
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
‎2007 Jun 13 11:08 AM
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