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.
NUMBER OF RECORDS IN TABLE= 6614532 LINES=6614532 0 ERROR AT OR NEAR LINE 69 IN PROCEDURE brenda_aFOCEXEC * (FOC205) THE DESCRIPTION CANNOT BE FOUND FOR FILE NAMED: usedethold (FOC205) THE DESCRIPTION CANNOT BE FOUND FOR FILE NAMED: USEDETHOLD BYPASSING TO END OF COMMAND
Below is the code I'm using. Does anyone have any idea what might be causing the error? Thank you!
WHERE J001.TELCO EQ ('450C' OR '458C' OR '4644' OR '5084' OR '530C' OR '587C' OR '6053' OR '6059' OR '6123' OR '6329' OR '635C' OR '653C' OR '7035' OR '7075' OR '7125' OR '7135' OR '7136' OR '7138' OR '7139' OR '7140' OR '7142' OR '7143' OR '7144' OR '7145' OR '7146' OR '7147' OR '7148' OR '7194' OR '7213' OR '7216' OR '7217' OR '7218' OR '7308' OR '7309' OR '7310' OR '7314' OR '7315' OR '7325' OR '7351' OR '7378' OR '7421' OR '7529' OR '7530' OR '7531' OR '7532' OR '7658' OR '7678' OR '7679' OR '7680' OR '7681' OR '7682' OR '7683' OR '7684' OR '7685' OR '7686' OR '7687' OR '7688' OR '7689' OR '7690' OR '7691' OR '7692' OR '7693' OR '7694' OR '7695' OR '7696' OR '7697' OR '7698' OR '7699' OR '770E' OR '7808' OR '7890' OR '7891' OR '7921' OR '7922' OR '7923' OR '7924' OR '7925' OR '7926' OR '7927' OR '7928' OR '7929' OR '7930' OR '7931' OR '7932' OR '7933' OR '7934' OR '7935' OR '7941' OR '7942' OR '7962' OR '7963' OR '7964' OR '802C' OR '8271' OR '8299' OR '8300' OR '8344' OR '8389' OR '8392' OR '8405' OR '8406' OR '8418' OR '8419' OR '8420' OR '8500' OR '8995' OR '8822' OR 'ATNT');
(FOC205) THE DESCRIPTION CANNOT BE FOUND FOR FILE NAMED: USEDETHOLD
Do you have your HOLDMAST ALLOCated?? MASTER???
HOLD masters are written to HOLDMAST unless that PDS is concatenated to MASTER DDNAME and you do not have write permissions to the MASTER PDS. Should be separate DDNAME's...
On an IBM mainframe a DDNAME can be from one to eight characters long, so I'm not sure how a hold file name of more than eight characters would work...
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Gonna throw out some stuff here - justtrying ot help. Place an end before ON TABLE HOLD AS USEDETHOLD Also,mainframe did have an 8 character name restriction at one point. I thought that was to be extended to 16 but not sure on that one.
I would break up the code step by step and see where code works and when it stops. I have not used tso/mvs in over 10 years (shh dont tell anyone-lol) but here goes my .02
try a ? tso ddname to see what you allocated.. assume nothing is allocated automatically did you allocate your own sorting space? did you allocate enough? curious if you tried only dynam concat on say 5 datasets (i know you are nowhere near the limit. But I always try to get small stuff to work then expand. How about shortening the 'where' list. these are some basics that you may have already tried.
if you place a -exit after -remote end. do you get results or error message? if results, then go to next step and stop job there, etc...
Are you not passing the request to wfserver DBWFRKV2 to create the HOLD file with -REMOTE BEGIN and then returning to the default wfserver.
Since the default server will not have the same filesystem you will have to copy the hold file and master from the remote server or extend the -REMOTE END
Server: WF 7.6.2 ( BID/Rcaster) Platform: W2003Server/IIS6/Tomcat/SQL Server repository Adapters: SQL Server 2000/Oracle 9.2 Desktop: Dev Studio 765/XP/Office 2003 Applications: IFS/Jobscope/Maximo
Posts: 888 | Location: Airstrip One | Registered: October 06, 2006
Hammo1j is on the right track. What you need it to change ON TABLE HOLD AS USEDETHOLD to ON TABLE PCHOLD AS USEDETHOLD - this sends the hold file back to the "host" system. You are executing code in a REMOTE environment. When it finishes you just hold the file which holds it on that remote environment. Then you try to run a fex on the local system against data on the remote system - won't happen. The on table pchold when used with the -REMOTE execution sends the data and MFD back to the "calling" or "host" environment so you can do further processing.
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007