Archive for September, 2009

$APPLCSF/out and log directories filling up with em*.rti and *.txt files

Wednesday, September 2nd, 2009
If you have a clean up script or a cron job or appworx -
you might consider adding the removal of the files below.

We used something called ud2490 ( just for my own reference)

find .  -mtime +1 -name "*.rti" -exec rm "{}" ";" 

Run time information (RTI)  files are  automatically generated and  cleaned
up when the  user logs in/out of our financials forms sessions.  They are
created by the f60webmx program.  In some cases when  the user logs out of
the forms sessions abruptly we get the orphaned  rti files.  We should
manually clean these up but only when they are not activie. 

 --------------

find . -mtime +1 -name "FNDCPGSC*.txt" -exec rm "{ }"
";" 

The FNDCPGSC*.txt   files are created by the oracle workflow manager
process.  We did not have any issues with these files being created before
we started doing XML payroll.  I believe there is a configuration problem
and we should find out what the problem is and I will continue to look for
a solution.   However, as a interim fix  -- oracle says  we should delete
these files at this time (service request number  7677613.993 ). 

visit this website to learn more about what files to delete and who and what is generating them and
what their file extension mean:

http://onlineappsdba.com/index.php/2008/01/12/log-files-in-applcsfappllog-directory/