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 SQL server table that has a date field in it called LOADDATE. In the description of the column in SQL Server it says LOADDATE (date, not null)
When I have a DEFINE using the DOWK(LOADDATE, 'A4') I get blanks returned. When I just report out the LOADDATE field I get 2016/08/29 When I substitute &YYMD in DOWK(&YYMD, 'A4') then MON is returned as it should be. When I report out &YYMD by itself I get the date in the 2016/08/29 format.
So why if the two fields have the same format does the DOWK(LOADDATE, 'A4') not work?
Thanks TrudyThis message has been edited. Last edited by: Trudy,
DOWK expects the date in legacy I8YYMD format (like &YYMD). Your LOADDATE will be defined as a SmartDate in the FOCUS synonym. Try this to print the day of week for a SmartDate:
TABLE FILE xxxx
PRINT LOADDATE/WT
.
.
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
The PRINT LOADDATE/WT did give me the day of the week but I want to filter on that value so I was looking more for a DEFINE way of getting to the day of week. Sorry I should have made that clearer in the original post.