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 have a need to drilldown to an ASP page and pass the multiple parameters. I was able to save the code but when I run it, gives back an error: "(FOC3202) Bad value in Stylesheet at line: 21".
Below is the code: TABLE FILE DMR_INFO PRINT LINE LOT WHERE ( DISPOSDATE GT DT(2005-04-16 13:58:59) ); ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE SET ONLINE-FMT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, PAGESIZE='Letter', LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', BACKCOLOR='NONE', STYLE=NORMAL, $ TYPE=DATA, COLUMN=N2, URL=http://efab/LotNumber/LotnumberFrameSet.asp?LotNumber=N2, $ ENDSTYLE END
It looks to me that the = sign throws it off.
Also, if you have multiple parameters to pass, I would need to define the url as such: URL=http://efab/LotNumber/LotnumberFrameSet.asp?LotNumber=N2&Linecode=N1
How do I make WF recognize that the field after the & variable is not really a parameter but a delimiter in ASP?
Thank you in advance for your help.
Dan dan.ballesteros@necsam.com
Posts: 197 | Location: Roseville, CA | Registered: January 24, 2005
dballest, also in answer to your question about the &, use the pipe character to escape the & . so for ex, to insert a blank space in a text field, would be written in focus as &|nbsp; Put pipes after the & in your url statement.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003