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 working on webfocus server 7.6.11, i am new to webfocus .
probelm Description: I am reading one xml file using FILEDEF copmmand and writing in to another xml. I am able to write a file properly , but after that if use any copy command or Rename command i am getting error like " The process cannot access the file because it is being used by another process.".
Please see my code
-SET &ECHO =ALL; -SET &LOGDIR = 'E:\'; -SET &FILE == 'WORKFILE.XML'; -SET &WORKDIR =&LOGDIR; -SET &FILENAME=&FILE; -SET &FDFILE=&WORKDIR | &FILE; -SET &OUTRES =&WORKDIR | 'YYRESULT.XML; -SET &OUTRES1 ='YYRESULTNEW.XML'; -*APP FI TMPFILE DISK &OUTRES FILEDEF TMPFILE DISK &OUTRES(LRECL 200 RECFM F FILEDEF GPRS DISK &FDFILE TABLE FILE GPRS PRINT FIELD1 ON TABLE HOLD AS INPTXT FORMAT ALPHA END -RUN -SET &ECHO =ON; -READLOOP -READ INPTXT NOCLOSE &FIELD1.A120. -IF &IORETURN NE 0 GOTO ENDLOOP ; -WRITE TMPFILE NOCLOSE &FIELD1 -GOTO READLOOP -ENDLOOP -RUN
Before you do the rename you have to close the file with:
-CLOSE TMPFILE
.. but I think you donot have to have the NOCLOSE in your example during reading and writing (there is no -RUN in the loop)This message has been edited. Last edited by: <FreSte>,