Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     ( Solved ) Converting date to days

Read-Only Read-Only Topic
Go
Search
Notify
Tools
( Solved ) Converting date to days
 Login/Join
 
Gold member
posted
I just have a little question

In our system, for example today's date is 1140327 in a P8 field

I used the informations found of FocalPoint and created a calculation to get the day of the week

Here is the define I made

DEFINE FILE MSCALDAY
FindDay01/P8=CDAT32 + 19000000;
FindDay02/A8=EDIT(FindDay01);
FindDay03/I6YMD=DATECVT( FindDay02 , 'A8YYMD', 'YMD');
FindDay04/A4=DOWK(FindDay03, FindDay04);
END


I get the following result

CDAT32 FindDay01 FindDay02 FindDay03 FindDay04
1140327 20140327 20140327 14/03/27 FRI

Am I doing something wrong

Help would be appreciated

This message has been edited. Last edited by: YKK,


7.6. / Win 7 / Excel
 
Posts: 56 | Location: St-Laurent QC Canada | Registered: February 04, 2009Report This Post
Expert
posted Hide Post
I think that the issue here is that you dropped the century from the DATECVT function, and it thinks its 1914.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
quote:
FindDay03/I6YMD=DATECVT( FindDay02 , 'A8YYMD', 'YMD');


should be /I8YYMD = ...
What Waz said...




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Virtuoso
posted Hide Post
Raymond,

quote:
DEFINE FILE MSCALDAY
FindDay01/P8=CDAT32 + 19000000;
FindDay02/A8=EDIT(FindDay01);
FindDay03/I6YMD=DATECVT( FindDay02 , 'A8YYMD', 'YMD');
FindDay04/A4=DOWK(FindDay03, FindDay04);
END


Since your date has a leading 1, then something a bit simpler:
  
FindDay01/I8YYMD=CDAT32 + 19000000;
FindDay02/YYMD=FindDay01;
FindDay04/WT=FindDay02;

You can try this:
DEFINE FILE CAR
CC/I2 WITH COUNTRY = 1 + LAST CC;
P8DATE/P8=1140326 + CC;
IDATE/I8YYMD=P8DATE + 19000000;
FDATE/YYMD=IDATE;
WDAY/WT=FDATE;
END
TABLE FILE CAR
PRINT COUNTRY CC P8DATE FDATE WDAY
END


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, 2006Report This Post
Gold member
posted Hide Post
Thank you all

I changed field format as suggested by Waz
Worked perfect
Then I saw Daniel's simpler calculation and applied it

Again thank you all


7.6. / Win 7 / Excel
 
Posts: 56 | Location: St-Laurent QC Canada | Registered: February 04, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     ( Solved ) Converting date to days

Copyright © 1996-2020 Information Builders