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.
you can't interrupt a -SET with comments. and every continued line of a -SET needs an introductory dash -SET &something ..... - ELSE ..... - ELSE .... ; Otherwise, the IF/THEN works fine
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
You're missing the dash on column 1 for all the Dialogue Manager code in the ELSE IF statements.
-DEFAULT &CRIME = 'Forgery';
-SET &WHATCRIME =
- IF &CRIME EQ '%' THEN '%'
- ELSE IF &CRIME EQ 'All' THEN '%'
- ELSE IF &CRIME EQ 'Forgery' THEN '101%'
- ELSE IF &CRIME EQ 'Homicide' THEN '011%'
- ELSE IF &CRIME EQ 'Robbery' THEN '03%'
- ELSE IF &CRIME EQ 'Assault' THEN '08%'
- ELSE IF &CRIME EQ 'Larceny' THEN '06%'
- ELSE IF &CRIME EQ 'Burglary' THEN '05%'
- ELSE IF &CRIME EQ 'Auto Theft' THEN '071%'
- ELSE IF &CRIME EQ 'Family Offenses' THEN '%201%'
- ELSE IF &CRIME EQ 'Sex Offenses' THEN '%171%'
- ELSE IF &CRIME EQ 'Rape' THEN '%021%'
- ELSE IF &CRIME EQ 'Manslaugter' THEN '%0121%'
- ELSE IF &CRIME EQ 'Vandalism' THEN '14%'
- ELSE IF &CRIME EQ 'Traffic Collisions' THEN 'ACC'
- ELSE '???';
-TYPE CRIME: &CRIME / WHATCRIME: &WHATCRIME
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
WOW!! I totally overlooked that. I have been bumping my head on this for over 2 weeks now. For something so basic, I totally looked passed the "-". THANK YOU VERY MUCH!!!!