As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
OK I have 2 Combo boxes chained together the first Date Period (monthly, Quarterly, Rolling 12) The second Period Ending Date. I have a fex that extracts the data from a table and saves it PCHOLD format XML. I've done the dynamic procedure and called the fex. When I execute the HTML page it loads the first box correctly. the second box it loads every other record. The XML file looks correct. I've attached the HTML below: Anyone ever seen this before. Or is it something to do with 7.6.7 which I have loaded as a localhost on my desktop for a temp project.
Yes, Duane, Tony is right. When you use a fex to populate your listboxes, you have to have exactly two fields in the result set. One is for the item value, the other for the item display. That way you can have codes for the values and descriptions for the display.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
Thanks for the help However I needed to Display the both fields twice and the first once???
DEFINE FILE RPT_DT_DIM RPT_DATATYPE_M/A1='M'; RPT_DATATYPE_Q/A1=IF QTR_END_DT_IND EQ '1' THEN 'Q' ELSE ''; RPT_DATATYPE_P/A1=IF QTR_END_DT_IND EQ '1' THEN 'P' ELSE '';
END MATCH FILE RPT_DT_DIM PRINT RPT_PER_END_DT BY RPT_DATATYPE_M AS RPT_TYP_CD BY RPT_PER_END_DT WHERE RPT_DATATYPE_M EQ 'M'; RUN FILE RPT_DT_DIM PRINT RPT_PER_END_DT BY RPT_DATATYPE_Q AS RPT_TYP_CD BY RPT_PER_END_DT WHERE RPT_DATATYPE_Q EQ 'Q'; RUN FILE RPT_DT_DIM PRINT RPT_PER_END_DT BY RPT_DATATYPE_P AS RPT_TYP_CD BY RPT_PER_END_DT WHERE RPT_DATATYPE_P EQ 'P'; AFTER MATCH HOLD OLD-OR-NEW END
DEFINE FILE HOLD RPT_TYP/A10=DECODE RPT_TYP_CD('M','Monthly','Q','Quarterly','P','Rolling 12'); PER_END_DT/YYMD= HDATE(RPT_PER_END_DT, 'YYMD'); END TABLE FILE HOLD PRINT RPT_TYP PER_END_DT -* PER_END_DT BY RPT_TYP BY HIGHEST PER_END_DT ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT XML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='TIMES NEW ROMAN', SIZE=10, $
Duane
WebFOCUS 8.0.7 DS 8.0.7 AS 8.0.7 Windows Output: Excel, HTML, PDF, AHTML,Mobile In Focus 1982