Hello Experts, Need your expertise in running this macro.
when ever I am trying to run macro, It says "expected =" in the syntax coloured RED. I am trying to run data manager package named "SCRIPTLOGIC1", FROM GROUP "FUNCTIONAL_GROUP". Is the syntax correct, or am I missing anything. I am trying to run script logic using Data Manager Package.
Option Explicit
Sub save()
Dim save As New EPMAddInAutomation
save.SaveAndRefreshWorksheetData
End Sub
Sub refresh()
Dim refresh As New EPMAddInAutomation
Call save
Call logic
refresh.RefreshActiveSheet
End Sub
Sub logic()
Dim test As New FPMXLClient.EPMAddInAutomation
test.DataManagerRunPackage("SCRIPTLOGIC1", "FUNCTIONAL_GROUP", "")
End Sub
Thank you
Praveen