I'm using Download DataSubset plugin and I'm trying to follow the exampl

I'm using Download DataSubset plugin and I'm trying to follow the example from forum.appian.com/.../Download_DataSubset_Plugin.html
I'm using this plugin from Tempo Reports SAIL,
First, I have a Query Rule, getAllEmployees, which returns all Records from Emplyee CDT.
Then, I create an Export Rule (exact the same as the example): exportAllEmployees: =type!ExportableDataSubset(
datasubset: rule!getAllEmployees(topaginginfo(startIndex: 1, batchSize: -1)),
fieldNames: {"NAME"},
fieldLabels: {"NAME"},
filename: "employee"
)
when I test this rule directly from Rule Designer, it returns a lots of records.

Then I create a link:

with(
local!exportUri: getdatasubsetdownloadlinkfromrule(rule: rule!exportAllEmployees),
...........
a!dashboardLayout(
if(isNull(local!exportUri),
{},
a!linkField(
links: {
a!safeLink(
label: "Click Here to Export This Data to Excel",
uri: local!exportUri
...

OriginalPostID-156176

OriginalPostID-156176

  Discussion posts and replies are publicly visible

Parents
  • I tried and it's not working. I'm not sure it's somehow related to the version or not.

    So I downloaded the jar file and trying to compile it, and I get this error: The type com.appiancorp.process.expression.ServiceMatch cannot be resolved. It is indirectly referenced from required .class files.

    Also I don't know why the systemOut file has no output from this plugin, even though the log4j properties file has an entry for com.appiancorp.ps.plugins
Reply
  • I tried and it's not working. I'm not sure it's somehow related to the version or not.

    So I downloaded the jar file and trying to compile it, and I get this error: The type com.appiancorp.process.expression.ServiceMatch cannot be resolved. It is indirectly referenced from required .class files.

    Also I don't know why the systemOut file has no output from this plugin, even though the log4j properties file has an entry for com.appiancorp.ps.plugins
Children
No Data