For
buttons in the toolbar you can use the function key, e.g.
del
P[/30]
where /30 corresponds to Ctrl+F6 (Shift=+12, Ctrl=+24).
To
address different tabs, you can use the technical name that is
shown in the screen elements. It is built using the function
code for this button.
Example:
del
P[SP03]
deletes the "Classification" tab (function code SP03).
Another
possibility in such cases is to add language dependent coding in
the script:
if
Q[Language=E]
del P[Classification]
del P[Additional data]
endif
if Q[Language=J]
del ...
del ...
endif |