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.
Has anyone ever synchronized an AHTML graph to an AHTML report in an HTML page? If so, have you ever run into the problem where the fields are not in the dropdown menu for the X and Y axis on the graph properties? This is the code that I have made for my AHTML report inside the HTML file:
FILEDEF RADORDTOBEG DISK //LEITH/IBI/APPS/HELDFILES/RADORDTOSIG.FTM TABLE FILE RADORDTOBEG PRINT * ON TABLE HOLD AS ORDTOBEG1 END DEFINE FILE ORDTOBEG1 REALDEP/A15 = IF DEPARTMENT CONTAINS 'EMERGENCY' THEN 'EMERGENCY' ELSE 'OTHER'; ROWORDER/I10 = IF ORDER_TO_BEG EQ '< 1 HOUR' THEN 1 ELSE IF ORDER_TO_BEG EQ '1 TO 2 HOURS' THEN 2 ELSE IF ORDER_TO_BEG EQ '2 TO 3 HOURS' THEN 3 ELSE IF ORDER_TO_BEG EQ '3 TO 4 HOURS' THEN 4 ELSE IF ORDER_TO_BEG EQ '4 TO 5 HOURS' THEN 5 ELSE IF ORDER_TO_BEG EQ '>5 HOURS' THEN 6 ELSE 0 ; END TABLE FILE ORDTOBEG1 SUM NUMBER BY MONTH BY PROC_CAT -*BY REALDEP -*BY ROWORDER NOPRINT -*BY ORDER_TO_BEG ON TABLE HOLD AS ORDTOBEG2 END TABLE FILE ORDTOBEG2 PRINT * ON TABLE PCHOLD FORMAT AHTML END
Very simple fex, nothing fancy, yet when I include a graph and synchronize it to this report, the field names do not show up in the dropdown menu for x and y axis on the graph properties.This message has been edited. Last edited by: Mark1,
I found the answer. I am posting in case anyone else runs across this problem. You cannot use the PRINT * and expect to see the field names in the X and Y axis dropdown menus. You need to list all of the field names out in the final print statement that contains the ON TABLE PCHOLD FORMAT AHTML