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.
The procedure1 is connected to procedure2 and it passes the a date.
more specifically procedure1 passes "DT(mm/dd/yyy)"
the procedure2 is looking for "mm/dd/yyyy" but it recieves "DT(mm/dd/yyyy)" from procdure1
Then it gives me this error
0 ERROR AT OR NEAR LINE 40 IN PROCEDURE futuresellchanges4 (FOC177) INVALID DATE CONSTANT: DT(05/23/2011 (FOC009) INCOMPLETE REQUEST STATEMENT BYPASSING TO END OF COMMAND
I hope someone understands and is able to help! Thank you so much!
it is very frustrating and i can't figure out why it can't just pass the dateThis message has been edited. Last edited by: Charles Richards,
procedure 1 passes parameters to procedure 2 via drilldown parameter
CODE:
WHERE SELLEFFECTIVEDATE EQ DT(&SDATE);
procedure 2 recieves parameters from procedure 1 via the drilldown parameter
procedure 2 has this where statement
SELLEFFECTIVEDATE EQ DT(&SDATE)
I still get the error
0 ERROR AT OR NEAR LINE 40 IN PROCEDURE futuresellchanges4 (FOC177) INVALID DATE CONSTANT: DT(05/23/2011 (FOC009) INCOMPLETE REQUEST STATEMENT BYPASSING TO END OF COMMAND
and if i change the format from MDYY to MDY
0 ERROR AT OR NEAR LINE 40 IN PROCEDURE futuresellchanges4 (FOC177) INVALID DATE CONSTANT: DT(05/23/11 (FOC009) INCOMPLETE REQUEST STATEMENT BYPASSING TO END OF COMMAND
when you use the GUI to add a where statement involving dates it adds the "DT()" around the data. Then when you use the drilldown GUI to pass a date it also puts a "DT()" around the date ending up with one to many "DT()"
Solution
In the where statement I deleted the "DT()" around the parameter DT(&TEST) leaving just &TEST