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.
Im trying to join two hold files but the fields of join have different format The 1st one is P4 and 2nd one is A2V so i converted the first one by using the fuction PTOA to alphanumeric and i joined my new define with the second but when i run my report i have this error message :
If VIOL_VIM may contain characters other than just numbers you must convert Var_VIM to a /A4 and VIOL_VIM to also /A4. However, if it contains only numbers, converting both in number can make JOIN more efficient.
Can be something like:
DEFINE FILE ABC
VIOL_VIMD/D4 = EDIT(VIOL_VIM);
VIOL_VIMP/P4 = VIOL_VIMD;
END
But both must have the same length and format; it is the key to solve your issue.
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
Does the report execute properly outside ReportCaster ? It's always a good idea to insure that report does York properly by itself prior to add it the a schedule or dashboard per example.
What is your code ?
Does it produce a report or just a hold file ? If the result of the execution is a hold file and not a report, ReportCaster will gives you that error because it assume that he must return a report. Change schedule Advanced Setting to not display error or add a fake report as the last step.
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
I checked the SQL and i found that we have a problem with conversion of the defines to SQL :
FOC2590 - AGGREGATION NOT DONE FOR THE FOLLOWING REASON: FOC2565 - THE OBJECT OF BY/ACROSS CANNOT BE CONVERTED TO SQL FOC2566 - DEFINE Var_Vim1_D CANNOT BE CONVERTED TO SQL FOC2576 - COMBINATION OF PARAMETERS OF FUNCTION EDIT CANNOT BE CONVERTED TO SQ
It's just a warning telling you that SQL cannot proceed with Var_Vim1 because it is a Focus variable that will take effect and exist only in the internal matrix.
Var_Vim1 is not a field that exist in the source table so SQL cannot work with it. This is what it's happen with variables uses in DEFINE, COMPUTE, BY TOTAL COMPUTE and WHERE TOTAL that doesn't exist in the source.
Your error is somewhere else...
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013