‎2008 Aug 13 2:00 PM
Is it possible to dynamically enable/disable some buttons in application toolbar in GUI Status regarding to some parameter chosen on selection screen.
F.a. I have 5 plants and I want to enable some option (button) just for one plant.
Thanks in advance
Tomy
‎2008 Aug 13 2:07 PM
Using
SET PF-STATUS 'STATUS' excluing 'FUNCTION'.
you can hide the Button.
if plant = '1000'.
SET PF-STATUS 'STATUS' .
else.
SET PF-STATUS 'STATUS' excluing 'FUNCTION'.
endif.
‎2008 Aug 13 2:07 PM
Using
SET PF-STATUS 'STATUS' excluing 'FUNCTION'.
you can hide the Button.
if plant = '1000'.
SET PF-STATUS 'STATUS' .
else.
SET PF-STATUS 'STATUS' excluing 'FUNCTION'.
endif.
‎2008 Aug 13 2:21 PM
Hi,
You can check the condition in use the command
SET PF-Status <name> excluding '<function code>' Immediately.
regards
padma
‎2008 Aug 14 8:34 AM
Thanks a lot! Problem solved!
Rewards to Vijay Babu Dudla - he was the first one