Schedule event in Microflow scheduler showing error while executing microflow from java action

0
Hi guys, while running the schedule events , there is  java action in that schedule event microfow , in the respective java action i call one microflow while executing it its showing as mxobjects in null… while debugging from microflow i dnt get any current user and current session since its a schedule event…… after that i created one user and get the respective user context and pass inside core.execute since its showing context object is null……...   The below one is my piece of code….. if(!(boolean) Core.execute(context, "TcConnector.ShowLoginPage",params))   
asked
2 answers
1

Is your microflow expecting any parameters? Maybe it’s a missing parameter.

answered
1

Note that scheduled events never have a current user. If you need a user use the cumminty commons runAsUser java action.

Regards,

Ronald

answered