Jason,
If you created a HTML form populating a list box with the FACILITY values, and, allowing the user to select MULTIPLE values, with FOC_NONE being the default, then your code S/B changed to:
WHERE FACILITY_CODE EQ &FACILITY_CODE;
If you are actually using the AUTOPROMPTER, as this indicates, you need to convert the blanks and quotes to values you can pass to the next FEX:
-* Translate Special Characters in PARMS so Multiple Drilldown(s) Work
-*
-* CHANGE BLANK(32) TO UNDERSCORE(95)
-* CHANGE QUOTE(39) TO ASTERISK(42)
-* CHANGE AMPER(38) TO EXCLAMATION(33)
-*
-* Convert Parms for &Organization
-*
-SET &LEN=&Organization.LENGTH ;
-SET &FMT='A' | &LEN.EVAL ;
-SET &C_ORG1= CTRAN(&LEN, &Organization, 32, 95,'&FMT');
-SET &C_ORG2= CTRAN(&LEN, &C_ORG1, 39, 42, '&FMT');
-SET &C_ORG3= CTRAN(&LEN, &C_ORG2, 38, 33, '&FMT');
-SET &CONVERT_ORG=IF &Organization EQ 'FOC_NONE' THEN &Organization ELSE &C_ORG3;
-TYPE Organization = &CONVERT_ORG
Then reverse them in the next FEX.
Did I confuse the issue???
Tom
Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe