NR
Hi all,
I am trying to use a value obtained in a report later in a macro, is it possible to have some global variable or an alternative which would allow me to reuse that value ? Basically i need Obj Def Attribute values in the macro, which can only be fetched in the report.
And also, is it possible to customize tooltips of objects in a model ?
1. To reuse data from macro between macro and report
In macro:
reportInfo = Report.createExecInfo(.....
reportInfo.setProperty("Data","")
result = Report.execute(reportInfo, false);
result.getProperty("Data")
In report:
Context.setProperty("Data", "SomeData");
2. I don't think it's possible... I don't know
best regards,