Hello,
we're currently using AppStudio scripting in order to set the footer of an AppStudio report. With the script, we set the current user, who prints the report, as well as the current date and a page count.
Sub Application_OnScriptStart ()
Spreadsheet.ActiveWorksheet.PageSetup.Footer = SetFooter
End Sub
Function SetFooter()
sUser = GetGlobalVariable ("_CurrentUser")
sRight = "&R&""Arial""&7Printed by: " + sUser + ", "
sRight = sRight + "&R&""Arial""&7Page: &P of &N" + ", "
sRight = sRight + "&R&""Arial""&7Print Date: &D"
SetFooter = sRight
End Function
Since in V12 there is no scripting, I was wondering how to get rid of that script. I know I can insert page number, page count and the date, but what about the current user? Is there a possibility to use the variable _CurrentUser in the footer settings?
Does anybody have experience with that or maybe knows, whether this will be possible in V12? Is there perhaps an enhancemenet request I can endorse?
Best regards, Daniela