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 need to create a financial spreadsheet in WebFOCUS that will display four fiscal year ends worth of income statement and balance sheet data. Also included in this report is a display of each of the four calendar quarters going back 4 years (3 mos data).
I believe I need to use looping code in order to select the last four years worth of data (which would change from one company to another). The only information requested when executing this program would be a company name.
Is there something available that I may use for reference while coding this project? Or does anyone have any experience in financial spreadsheet coding and could share some basic coding that would help me get a start on this? I imagine this report will take quite a bit of code.
I checked through the posts, going back several months and found nothing that fits my problem.
Thanks, vickie
Posts: 37 | Location: Springfield, MA | Registered: December 03, 2004
probably because we can't see where you're getting stuck. Are you having an excel problem, or is it just straight focus code you're stuck on? -DEFAULT &COMPANY = 'MYCOMPANY'; TABLE FILE whatever SUM somevariable ACROSS YEAR ACROSS QUARTER would seem to be the simplest layout approach. where your fex has a filter to limit years WHERE YEAR FROM 2001 TO 2004 or whatever WHERE COMPANY IS &COMPANY
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Just straight FOCUS code is my problem, finding the best way to approach coding this report.
I won't be using any hardcoded filters, since many people will be using this report for a particular company they wish to spread. FYEs will vary, but the constant is the number of periods to be reported. This program will reside on a Self Service App, available for anyone to use.
The database I'm going against uses start and stop dates to identify data. This is new to me and I'm sure these dates will effect my output.
Figured I'd get the financial data in and then go on from there.
vickie
Posts: 37 | Location: Springfield, MA | Registered: December 03, 2004
your filter is dynamicly set by your launch page. Your launch page, whereever it is, needs to provide the COMPANY choices, and if you name the variable &COMPANY then your filter IF COMPANY IS &COMPANY will pull data for the correct company.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003