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 ran this code in both 7.6.4 and 8.0.9 and got different format results...webfocus 8 is adding a "V" after the alpha formats. Does anyone have any ideas on why? :
-SET &ECHO=ALL;
ENGINE SQLORA SET OPTIMIZATION ON ENGINE SQLORA SET OPTIFTHENELSE ON
from "SAPBWP".ZRLSLSBB where FISCPER >= '2015001' AND SOLD_TO IN ('C2601','C4586','C4711','0001397434','0001416356','0001416625') END -RUN TABLEF FILE SQLOUT PRINT MANDT MATERIAL SOLDTO SHIPTO IDPLANT PRMPLANT BACKUP PLANT
ON TABLE HOLD AS HOLD END -RUN
--------Version 7.6.4 format ------- FILENAME= HOLD MANDT E01 A3 MATERIAL E02 A18 SOLDTO E03 A10 SHIPTO E04 A10 IDPLANT E05 A4 PRMPLANT E06 A4 BACKUP E07 A4 PLANT E08 A4
--------Version 8.0.9 format ------- FILENAME= HOLD MANDT E01 A3 MATERIAL E02 A18V SOLDTO E03 A10V SHIPTO E04 A10V IDPLANT E05 A4V PRMPLANT E06 A4V BACKUP E07 A4V PLANT E08 A4VThis message has been edited. Last edited by: <Kathryn Henning>,
Data_Type in Oracle is a "VARCHAR2" . is there any way to control that so the hold will remain the same as 7.6.4 version? This is a fairly big issue since we are joining to various tables and when joining an "A10V" to a "A10" key in a table the join now fails.
David, Thanks for your help. I made the change to a test program and it worked. So I went ahead and added to the Server Profile and that seemed to take care of all the issues.