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.
Does anyone know what is the purpose of having semi-colon at the end of WHERE/DEFINE statement? Even the code works without having the semi colon. Please let me know.
WHERE COUNTRY EQ 'USA' ;This message has been edited. Last edited by: Venkat-,
product release:8203 o/s: windows 10 expected o/p formats: HTML,EXCEL,PDF
In DEFINE, it's required between one definition and the next -- without it, the interpreter will think it's all one definition, usually resulting in an "undefined variable" message. The interpreter does not require it after the last definition -- end of definition is implied by the "END card", but I doubt that's documented.
BTW, same goes for ENDSTYLE -- if absent, it's implied by END.
In WHERE clauses of a TABLE request it's an optional part of the syntax (optional, whether de jure or de facto). If present, the interpreter know it's reached the end of the expression. If absent, the interpreter can generally deduce from the following word whether or not it's is a continuation -- but why leave it to chance. Even though the interpreter does not require it (and does a good job of inferring end or continuation of the expression when it reads the next word), supplying the closing s/c is a good habit.
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005