Avatar

Level 10

LiveCycle stores the document variables into GDS (global document storage). The filename on the GDS is what you are seeing in the result.

You can assign file name to a document variable by using setDocAttribute(com.adobe.idp.Document, att_name, att_value) method.

Add a SetValue activity within your process and set the following assignment.

outDoc = setDocAttribute(outDoc,"wsfilename","YourFileName.XLSX")

That should work as you expected.

Thanks,

Nith