Focal Point
Resource layout painter

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

February 22, 2005, 07:40 AM
<We_Focus>
Resource layout painter
on radio button selection how to generate report in diffrent format in Resource layout painter
February 22, 2005, 04:44 PM
reFOCUSing
What do you mean by different format? Are you trying to get PDF, HTML or EXCEL output?
February 23, 2005, 06:39 AM
<We_Focus>
YES HTML pdf exl
February 23, 2005, 12:31 PM
<WFUser>
First thing to remember about Resource Layout is always create your report with your parameters first. You can have the defaults done for you (5.2.3 or higher) by selecting User from the report format drop drop list in dev studio. Or, just go into the code and change the ON TABLE SET ONLINE-FMT line to ON TABLE PCHOLD FORMAT &OUTPUT (or any other variable name). Then in Resource Layout, add a button and link that button to your report. If the parameter defaults to a drop down, just change it to a radio button , select static and add your values.
February 23, 2005, 01:04 PM
TexasStingray
When using WebFOCUS 5.3 when you can create your report under report output select user as the Select Format. Developer Studio will add the below code to the report.


ON TABLE PCHOLD FORMAT
&WFFMT.(,,,,
).Select type of display output.
The above code is on multiple line for this example. However Developer Studio creates it on one line.

Then when you goto resource layout it will add a dropdown menu option. you can change it to radio buttons if you want.

Hope this helps

This message has been edited. Last edited by: <Mabel>,
February 24, 2005, 05:29 AM
<We_Focus>
THANKS WFUSER it works