Focal Point
Calling web service function webFocusRunFex. How do I change report output format ?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/6481063922

May 24, 2007, 02:00 PM
<David Ronne>
Calling web service function webFocusRunFex. How do I change report output format ?
How do I change report output format to PDF or EXL2K?
I tried the following but it did not work.
ValuesArrayEntry[] param;
param = new ValuesArrayEntry[2];
ValuesArrayEntry param1 = new ValuesArrayEntry();
param1.setName("SALES");
param1.setVal("100");
param[0] = param1;
May 25, 2007, 10:54 AM
Fernando
Try creating a parm for the output format in your fex. Say OUT and then set the value of it using your code.

Ex:
fex:
ON TABLE PCHOLD FORMAT &OUT

code:
ValuesArrayEntry param2 = new ValuesArrayEntry();
param2.setName("OUT");
param2.setVal("PDF");
...


Prod WF 8.1.04, QA WF 8.2.03, Dev WF 8.2.03