Focal Point
[CLOSED] Issue with cascading filters in InfoAssist+

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

October 17, 2018, 10:10 AM
WFConsultant
[CLOSED] Issue with cascading filters in InfoAssist+
In InfoAssist+, I have series of filters and they are chained. Normally, a child filter control looks at all the parent control values in the chain before populating. However, in InfoAssist+, a child control is only looking at its immediate parent and not all the parents in the chain hierarchy. Is there a way to force it to apply all the parent values? Please let me know.

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


WebFOCUS 8207.11
App Studio 8207
October 17, 2018, 10:34 AM
FP Mod Chuck
WFConsultant

If you create a document with Active Report as the output IA+ will allow you to insert dropdown boxes or Lists which you can cascade and all these controls work as you wish. I don't think filters behave that way.


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
October 17, 2018, 10:46 AM
BabakNYC
Are your parameters Multi Select or single Select?


WebFOCUS 8206, Unix, Windows
October 17, 2018, 10:54 AM
WFConsultant
quote:
Originally posted by BabakNYC:
Are your parameters Multi Select or single Select?


I am using multi select controls.


WebFOCUS 8207.11
App Studio 8207
October 17, 2018, 10:57 AM
BabakNYC
Using IB sample table that has a hierarchy for Product Category/subcategory/model, I created this example in InfoAssist:

  
ENGINE INT CACHE SET ON
SET PAGE-NUM=NOLEAD
SET SQUEEZE=ON
-DEFAULTH &WF_HTMLENCODE=ON;
SET HTMLENCODE=&WF_HTMLENCODE

SET HTMLCSS=ON
-DEFAULTH &WF_EMPTYREPORT=ON;
SET EMPTYREPORT=&WF_EMPTYREPORT

-DEFAULTH &WF_SUMMARY='Summary';
-DEFAULTH &WF_TITLE='WebFOCUS Report';
TABLE FILE WF_RETAIL
SUM WF_RETAIL.WF_RETAIL_SALES.COGS_US
WF_RETAIL.WF_RETAIL_SALES.GROSS_PROFIT_US
WF_RETAIL.WF_RETAIL_SALES.REVENUE_US
BY WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_CATEGORY
BY WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_SUBCATEG
BY WF_RETAIL.WF_RETAIL_PRODUCT.MODEL
WHERE WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_CATEGORY EQ &PRODUCT_CATEGORY.(OR(FIND WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_CATEGORY IN WF_RETAIL |FORMAT=A40V,SORT=ASCENDING)).Product Category:.;
WHERE WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_SUBCATEG EQ &PRODUCT_SUBCATEG.(OR(FIND WF_RETAIL.WF_RETAIL_PRODUCT.PRODUCT_SUBCATEG IN WF_RETAIL |FORMAT=A50V,SORT=ASCENDING ,WITHIN=PRODUCT_CATEGORY)).Product Subcategory:.;
WHERE WF_RETAIL.WF_RETAIL_PRODUCT.MODEL EQ &MODEL.(OR(FIND WF_RETAIL.WF_RETAIL_PRODUCT.MODEL IN WF_RETAIL |FORMAT=A50V,SORT=ASCENDING ,WITHIN=PRODUCT_SUBCATEG)).Product Model:.;
ON TABLE PCHOLD FORMAT HTML
ON TABLE NOTOTAL
ON TABLE SET CACHELINES 100
ON TABLE SET GRWIDTH 1
ON TABLE SET STYLE *
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/ibi_themes/Warm.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, SUMMARY=&WF_SUMMARY.QUOTEDSTRING, ORIENTATION=LANDSCAPE, $
ENDSTYLE
END

-RUN



When I pick a Product and go to Model, only those Models that belong to the Product show up, even though I'm not selecting a Subcategory. Is this the behavior you're not seeing?


WebFOCUS 8206, Unix, Windows
October 17, 2018, 10:59 AM
WFConsultant
quote:
If you create a document with Active Report as the output IA+ will allow ...


Thanks for your suggestion. It is true that the document adds cascading filters. However, documents are not great for large reports. It adds lot of overheads to the report. Unfortunately, I am dealing with large a report.


WebFOCUS 8207.11
App Studio 8207
October 17, 2018, 11:44 AM
WFConsultant
quote:
Originally posted by BabakNYC:
Using IB sample table that has a hierarchy for Product Category/subcategory/model, I created this example in InfoAssist:


The cascading works great if the data is not repeating in the parent control. For example, in the following metrics the Sub Category value, Professional, is repeating for Camcorder and Computers. So, when you choose the value, Professional, in the Sub Category then the Model values belonging to Camcorder and Computers will show up as they both have same Sub Category, Professional. Essentially, InfoAssist is looking at immediate parent control value. Not the entire chain.

Category | Sub Category | Model
---------------------------------------
Camcorder | Professional | Canon XHA1S
Camcorder | Professional | JVC GYHD200U
Camcorder | Standard | Canon FS300
Camcorder | Standard | JVC GZHD620B


Computers | Professional | Dell Latitude
Computers | Professional | Dell Inspiron
Computers | Tablet | MicroSoft Surface
Computers | Tablet | Apple iPad


WebFOCUS 8207.11
App Studio 8207
October 17, 2018, 01:19 PM
BabakNYC
I can see your point. However, what would you rather see happen when you pick professional in Subcategory?


WebFOCUS 8206, Unix, Windows
October 17, 2018, 01:59 PM
WFConsultant
quote:
Originally posted by BabakNYC:
I can see your point. However, what would you rather see happen when you pick professional in Subcategory?


For Category = Computers and Sub Category = Professional, I am expected to see only Dell Latitude and Dell Inspiron in Model. Instead, I am seeing 4 records in Models.

1. Canon XHA1S
2. JVC GYHD200U
3. Dell Latitude
4. Dell Inspiron


WebFOCUS 8207.11
App Studio 8207
October 17, 2018, 02:01 PM
FP Mod Chuck
WFDeveloper

I would agree with you and I think you should open a case and report this as a problem.


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats