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.
Hi, I have a FOC file that is generating a hold file on DB2 (As400). When I run the report, the file gets generated with data in the correct library and with the right name. However, the ACX and MAS files dont get generated and I get the following error:
(FOC348) ERROR WRITING HOLD FILE DESCRIPTION TO HOLD MASTER
Any help would be appreciated ...
This is my code:
APP HOLDMETA sandbox
SQL DB2 SET ISOLATION NC
TABLE FILE myFile
PRINT
myFile.myFile.EHWHSE
myFile.myFile.EHRECN
myFile.myFile.EHERCN
myFile.myFile.EHSUPL
WHERE ( myFile.myFile.EHWHSE EQ 07 ) AND ( myFile.myFile.EHSUPL EQ 'COLGTE' );
ON TABLE HOLD AS 'HSIUSRFLE/DCIFILE' FORMAT DB2
END
This message has been edited. Last edited by: Kerry,
Is sandbox a valid app folder name? Try capitalizing sandbox to see if that makes a difference. Make a simple test to see if writing metadata to the sandbox app folder works at all:
APP HOLDMETA SANDBOX
-*
TABLE FILE CAR
PRINT CAR
BY COUNTRY
ON TABLE HOLD AS CARTEST
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Thanks for the reply Dan. Tried the capitalization: no difference. Ran your CARS test script and the MAS file got created correctly. Tried running the procedure from both MR and Server with same result. What's funny is that the DB2 file gets created ok, and I'm able to manually create the synonym over the file following the error. It just doesn't want to create the MAS automatically...
I'm suspecting that it might write the master in a directory HSIUSRFLE (instead of SANDBOX) once that directory exists.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
Wep, Your suggestion worked! I created application HSIUSRFLE and ran my script. The master file got created in that application. Great. Now, how do I keep creating the DB400 file in library HSIUSRFLE but place the master file in the SANDBOX application?