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 am currently defining different synonyms to be used as data sources and have all of my different tables joined in the synonym and they appear to be working correctly when testing in infoassist.
I am attempting to create different user filters that are commonly asked for in our ad hoc requests. An example of a common request is to include our internal reps in a report. So we would do the following in SQL.
select RepNumber from Rep r left join HouseReps h ON r.RepNumber = h.RepNumber where h.RepNumber is null
this little snippet would exclude all the repnumbers in the HouseReps table.
In my synonym I have a one to one left join set up between the Rep table and house reps table but i can't get the filter to work. Has anyone encountered this problem and how did you work around it?This message has been edited. Last edited by: Tamra,
WebFOCUS 8 Windows, All Outputs
Posts: 49 | Location: United States | Registered: April 21, 2015
I would use set shortpath=sql instead of set pass = all. One thing to keep in mind is that not all commands will translate to sql. This can cause unforeseen consequences. For instance lst. And fst. Are not a part of the sql adapter, so the Sql won't parse as you expect and instead focus will handle that part on the reporting server. I would suggest trying a few queries and running sql traces to understand how the adapter trabslates things in different scenarios
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
That setting worked and the SQL trace joins exactly how I would if I wrote it myself.
That brings me to a side question. At the end of my select there is MAX(T1.RepNumber) that is there even though I have no column asking for a max.
Also everything is in group by even though I'm not grouping. I'm assuming this done for the nature of infoassist's analytics but the MAX column through me through a loop.
WebFOCUS 8 Windows, All Outputs
Posts: 49 | Location: United States | Registered: April 21, 2015