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 trying to insert records in a table (SQL database) - by holding data, then using the MODIFY command.
ON TABLE HOLD AS TESTTEMP END MODIFY FILE TESTTABLE1 FIXFORM FROM TESTTEMP MATCH FIELD1 FIELD2 FIELD3 FIELD4 ON MATCH REJECT ON NOMATCH INCLUDE DATA ON TESTTEMP END
I get the following error message: (FOC437) THE FORMAT USED WITH FIXFORM IS INCOMPATIBLE WITH THE DATA FORMAT FIELD2 /CDATE
Any suggestions?
WF 766 Win2K
Posts: 50 | Location: North Carolina | Registered: May 16, 2006
What is the target DBMS? MS SQL 2000, Oracle, DB2 ....?
One thing you might have a problem with is HOLDing the date as a date format value. WebFOCUS holds this as an internal format that would not easily be recognised (binary I think as a count of days from a base date of 31/12 1900). So your code is probably failing because of that.
Try using SAVE instead of HOLD, which will provide you with an ALPHA formatted output file without an MFD (that you don't need anyway) or if you insist on using HOLD then use ON TABLE HOLD AS TESTTEMP FORMAT ALPHA.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
I could not get the SAVE to work, but when I tried it in my real code I realized that my temp table name was too long. I shortened the name and held with FORMAT ALPHA. It worked perfectly.
Thanks so much for your help and the quick responses!
WF 766 Win2K
Posts: 50 | Location: North Carolina | Registered: May 16, 2006