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     Help with Period-Yr (MM-YYYY)

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Help with Period-Yr (MM-YYYY)
 Login/Join
 
<tkota>
posted
Hello, I am new to webfocus and trying to figure out dynamic way to filter month based on year selection.

My report have two parameters &year and &month.
on launch HTML page when user chooses a drop down list year as 2007 it should filter out entries in second dropdown list and display just jan,feb,mar,apr,may . I have referred to previous posts about chainlinking but it didn't work for my case. Please suggest. I can upload my code if any one likes to see.
Thank you,
 
Report This Post
Virtuoso
posted Hide Post
Hi Tkota,

uploading the code helps and upgrading your signature with the versions you're working with would help too.




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Platinum Member
posted Hide Post
tkota,

Welcome to Focal Point!

Hopefully this code will get you going in the right direction:


-* Set reference year
-SET &MYYEAR = 2007;

-* Get current year and month in numeric format
-SET &CURRYEAR = &DATEYY;
-SET &CURRMONTH = &DATEM;

-* If we are not in the current year, load all months in array, otherwise
-* only load array for months that have occurred this year
-SET &CURRMONTH = IF &MYYEAR NE &CURRYEAR THEN 12 ELSE &CURRMONTH;

-REPEAT :MONTHLOOP FOR &IDX FROM 1 TO &CURRMONTH

-SET &MONTH = DECODE &IDX
-    ( 1 'January' 2 'February' 3 'March' 4 'April' 
-      5 'May' 6 'June' 7 'July' 8 'August' 9 'September' 
-     10 'October' 11 'November' 12 'December');

-SET &MONTHARRAY.&IDX = &MONTH;

-:MONTHLOOP

-* Display the array
-REPEAT :PRINTLOOP FOR &IDX FROM 1 TO &CURRMONTH
-TYPE IDX(&IDX) : &MONTHARRAY.&IDX

-:PRINTLOOP


Regards,
Sean


------------------------------------------------------------------------
PROD: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
TEST: WebFOCUS 7.6.2 on Unix AIX/Tomcat/Servlet Mode
 
Posts: 210 | Location: Ottawa | Registered: November 03, 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     Help with Period-Yr (MM-YYYY)

Copyright © 1996-2020 Information Builders