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.
I actually use the field as an input to an HTML page so it tries displaying in a text field !IBI.AMP.CUST_NAME; The HTML page just spins and doesn't load .... every.
I've done some more tracing and it does look like all the dialogue manager code is executing just fine, it's when it hits that HTML page.
WebFOCUS 8202M Client: Windows Server 2012R2/Tomcat 8.0/IIS Server: IBM i v7r2m0 MS-SQL
You could replace any customer names that have a & symbol to &| so 'N&R CONCRETE' becomes 'N&|R CONCRETE' and then it will not error because it can't resolve &R. Ian
_______________________ *** WebFOCUS 8.1.05M ***
Posts: 196 | Location: London, UK | Registered: December 06, 2005
lenny, once you have read the custname into the variable &CUSTNAME, then whenever you reference that variable later, be SURE to use &CUST_NAME.QUOTEDSTRING and that should avoid the & problem. eg: DEFINE FILE CAR somename/A30 WITH CAR = &CUST_NAME.QUOTEDSTRING ; ... or IF SOMEFIELD EQ &CUST_NAME.QUOTEDSTRING
If you're having issues still, with your html page, then do it the hard way and sledge hammer some quotes around it -SET &CUST_NAME='''| &CUST_NAME || '''; (you may have to tinker with that, i can't log on to test it right now)
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Hi, try with this.. May be it will help.... ========================== TABLE FILE TBL1 PRINT CUSTNAME WHERE CUSTNO EQ &CNO ON TABLE HOLD AS CNAME FORMAT ALPHA END -RUN -READ CNAME &DUMMY.A6. &CUST_NAME.A30. -RUN
Thanks! @vi
WebFOCUS 8105, Dev Studio 8105, Windows 7, ALL Outputs