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.
Hello, I am hoping someone may be able to help me understand why I am getting the following error message when I attempt to enter the following define statement below?
IF DAYS_TO_SHIP GT 0 AND DAYS_TO_SHIP LT 8 THEN '1 to 7 Days' ELSE IF DAYS_TO_SHIP GT 7 AND LT 15 THEN '8 to 14 Days' ELSE IF DAYS_TO_SHIP GT 14 THEN '>14 Days' ELSE IF DAYS_TO_SHIP GT -8 AND DAYS_TO_SHIP LT 0 THEN '-1 to -7 Days' ELSE IF DAYS_TO_SHIP GT -15 AND DAYS_TO_SHIP LT -7 THEN '-8 to -14 Days' ELSE IF DAYS_TO_SHIP LT -14 THEN '<-14 Days' ELSE IF DAYS_TO_SHIP EQ 0 THEN '0 Days'
James, You can probably simplify your code by doing something like: IF DAYS_TO_SHIP LT -14 THEN '<-14 Days' ELSE IF DAYS_TO_SHIP LT -7 THEN '-8 to -14 Days' ELSE ..... I think it shortens up the code and makes it easier to spot any problems.
IF DAYS_TO_SHIP GT 0 AND DAYS_TO_SHIP LT 8 THEN '1 to 7 Days' ELSE IF DAYS_TO_SHIP GT 7 AND LT 15 THEN '8 to 14 Days' ELSE IF DAYS_TO_SHIP GT 14 THEN '>14 Days' ELSE IF DAYS_TO_SHIP GT -8 AND DAYS_TO_SHIP LT 0 THEN '-1 to -7 Days' ELSE IF DAYS_TO_SHIP GT -15 AND DAYS_TO_SHIP LT -7 THEN '-8 to -14 Days' ELSE IF DAYS_TO_SHIP LT -14 THEN '<-14 Days' ELSE IF DAYS_TO_SHIP EQ 0 THEN '0 Days'
I would suggest not using a from..to type of condition but writing in order:
IF DAYS_TO_SHIP GT 14 THEN '>14 Days' ELSE
IF DAYS_TO_SHIP GT 7 THEN '8 to 14 Days' ELSE
IF DAYS_TO_SHIP GT 0 THEN '1 to 7 Days' ELSE
IF DAYS_TO_SHIP EQ 0 THEN '0 Days' ELSE
IF DAYS_TO_SHIP GT -8 THEN '-1 to -7 Days' ELSE
IF DAYS_TO_SHIP GT -15 THEN '-8 to -14 Days' ELSE
'<-14 Days' ;
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Thank you for the tip; I have used the from to for similar define conditions and did not run into such issues. However, your suggestion was very helpful and I will try it out. Thanks again