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] regarding date..

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] regarding date..
 Login/Join
 
Platinum Member
posted
Hi all,
i want to accomplish the following:
i have YRMO FIELD which gives me year and month,but i want to add the date also i.e;
for eg :if i have 200910 in YRMO field then i got to convert into 20091001,where 01 indicates october1.

please help.......

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


7.6.7
windows
PDF,EXCEL.
 
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009Report This Post
Expert
posted Hide Post
What is the format of the field ?

If its YYM, then DEFINE OR COMPUTE
DATEYYMD/YYMD = YRMOField ;

It will add the 01 by default.


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
Platinum Member
posted Hide Post
Thanks.


7.6.7
windows
PDF,EXCEL.
 
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009Report This Post
Platinum Member
posted Hide Post
i want to know how to set 2 dates using set command.
i used this,but not sure is it correct or wrong.
-SET &YRMO = '200905' OR '200807';

is the above way of assigning the dates is correct or not,if its wrong please advice How to assign two dates.


7.6.7
windows
PDF,EXCEL.
 
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009Report This Post
Expert
posted Hide Post
Must be too early in the morning.

What do you want to get from "-SET &YRMO = '200905' OR '200807';" ?


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
Platinum Member
posted Hide Post
How to set 2 dates using set command.


7.6.7
windows
PDF,EXCEL.
 
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009Report This Post
Virtuoso
posted Hide Post
quote:

Must be too early in the morning.


It's actually early evening here Wink

Swati, in FOCUS just as in pretty much any other language out there a variable can have ONE value at a time unless of course you're dealing with collections (such as arrays or more elaborated structures) which are not fully supported by FOCUS.

If you need to have 2 dates in WebFOCUS, you will need to have 2 different variables each one representing one of the dates you want and you'll write your code to use one or the other depending on business rules that only you know.

-SET &YRMO_A ='200905';
-SET &YRMO_B ='200807';
-SET &CRT_DT = IF (<your_rule_here>) THEN &YRMO_A || '01' ELSE &YRMO_B || '01'; 
...



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
 
Posts: 1533 | Registered: August 12, 2005Report This Post
Platinum Member
posted Hide Post
thanks...


7.6.7
windows
PDF,EXCEL.
 
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009Report This Post
Expert
posted Hide Post
So you want to supply "'200905' OR '200807'", and get two date out the end of the code ?

The first issue is that you are setting the variable incorrectly.

Try -SET &YRMO = '''200905'' OR ''200807''';

Are you trying to get the date to be auto prompted ?

The second thing, is adding the "01" to the end.


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
Virtuoso
posted Hide Post
Now, if you're relying on the Auto-prompting facility to be able to select a specific date from a drop down list you could attempt something like this:

-DEFAULT &YRMO='200905';
-PROMPT &YRMO.(OR('200905','200807')).Year_Month;
-TYPE &YRMO


Personally I would never use such a structure in any Production report but it has its place when it comes to quick and dirty development a/o debugging.

But the bottom line is, only ONE value will be assigned to your variable. In this case it will be the one you pick when actually running the code.



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
 
Posts: 1533 | Registered: August 12, 2005Report 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] regarding date..

Copyright © 1996-2020 Information Builders