Purpose You want to enable UI logging on the screen and be able to enter some parameters directly |
Solution
Include the following simple scripts.
Hint:
The specified project must already exist in the database. If necessary,
create it beforehand by specifying the project in the selection and then clicking on "Configuration".
GuiXT script
// Administration for UI logging
InputField (3,121) "Project Name" (3,141) _
Radiobutton (5,121) "On" name="uilogconf_status" value="X"
InputScript script "activate_ui_logging.txt" Parameter TA
Parameter PN
Parameter ST
If U[ST]
if not U[TA]
ProcessingOption uiLog="On" uiLogProject="&U[PN]" _
uiLogLicense="MyCompany20200831.uilog..." _
uiLogInterval="1"
message "UI Logging activated: All transactions" -statusline
else
ProcessingOption uiLog="On" uiLogProject="&U[PN]" _
uiLogLicense="MyCompany20200831.uilog..." _
uiLogInterval="1"
message "UI Logging activated: Transactions &U[TA]" -statusline
endif
else
ProcessingOption uiLog="off"
message "UI Logging deactivated" -statusline
endif
|
Components InputAssistant |