Focal Point
[SOLVED] Designer - Filter Return Values

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

September 14, 2020, 05:50 PM
FHCole04
[SOLVED] Designer - Filter Return Values
In previous versions of WF when working in the portal you could show one value in the filter drop-down and return a corresponding value to you procedure.

For example:

You have a list of key value pairs say zip code and city name. You use the city name to populate the drop down and the zip code would be the return value.

Can this be done in designer.

This message has been edited. Last edited by: FP Mod Chuck,


WF 8.2.06 Windows/Linux
September 15, 2020, 11:08 AM
FP Mod Chuck
FHCole04

I think you are referring to using App Studio to create an HTML composer page where you can specify a display value and a value from value. You can still do that and put that html form into a designer page. There is currently no way to modify the filter within designer to specify two fields to use in the filter.


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
September 15, 2020, 12:13 PM
dbeagan
You can code the variable to accomplish this. For example, &PCD.(FIND PCD,PRODUCT IN ggsales). The following fex when dropped into the Designer page will create a dropdown that displays the PRODUCT field, but will pass the PCD field to the fex for the user's selection:
-DEFAULT &PCD = '_FOC_NULL';
-SET &ALLPCD  = IF &PCD EQ '_FOC_NULL' THEN 1 ELSE 0;

 SET PAGE=NOLEAD,STYLE=warm
 
 TABLE FILE ggsales
 SUM UNITS/I8C
     DOLLARS/I8M
  COMPUTE PCD_DISPLAY/A20 = IF &ALLPCD THEN 'All Products' ELSE PRODUCT; NOPRINT     
  BY REGION 
  BY ST 
  BY CITY
 WHERE PCD EQ '&PCD.(FIND PCD,PRODUCT IN ggsales).'
 HEADING
 "Sales for <PCD_DISPLAY (&PCD)"
 END



WebFOCUS 8.2.06
September 15, 2020, 02:33 PM
FHCole04
Thanks. I'll give your syntax a try. It looks to be exactly what I want.


WF 8.2.06 Windows/Linux