Hii, Try to take the start date and time from the global table using custom code.
code used :-
string startDate = Table("GlobalTable1")[1][1];
string Date = startDate+ " " + "06:00:00";
DateTime newStartTime = DateTime(Date, "%d/%m/%Y %I:%M:%S");
treenode startNode = getmodelunit(START_TIME_NODE);
startNode.value = newStartTime.value;
applicationcommand("convertunixtime", startNode, startNode.value);
It is not working.
Attached model for reference. Support1.fsm
Thanks in advance.