Posts

Showing posts from July, 2017

How to send all the notifications to a single email address ( Workflow mailer EBS R12 )

Option 1: Configure From Front end: The Override Address is set after the clone is completed as it will be set in OAM. Oracle Workflow sends the Notification Mailer Override Address Verification message when an administrator sets an override address where the notification mailer should send all outgoing e-mail notifications for testing purposes. It can be set as follows: 1. To setup Test Override please do the following: a. Please log in to OAM. b. Select Workflow Manager from "Navigate to" LOV and click "GO". c. Click "Notification Mailers". d. Click "View Details". e. Click "Set Override Address". f. Populate "New Override Address" with a Test address and click "Submit". g. Populate the verification code that appears in the email notification that was sent to the 'Override Address' and click "APPLY". Example: Verification Code: 896424928 h. Conformation of the change will be prov

Report Output in PDF giving junk characters issue faced in EBS R12.2.5

Hi, To apply the solution, simply log in to application Tier and run the enviroment and change in below file Edit file  $ORACLE_HOME/guicommon/tk/admin/uifont.ali  After line  [ PDF ]  Add line--  Symbol = Arial  Regards Soban Ali

Diagnosing Failed Cron job via server logs

Open your preferred your ssh client. If you need an ssh client, we recommend PuTTY. You can  download it here . Log into your server via your ssh client . Once logged in as the root user, use the following command to check the log for the cron script. The command will use the following format:  grep "script.php" /path/file.ext . For instance, the code below is looking for the script  cronscript.php  in the  cron.log  file, which is in the  /var/log  folder. grep "cronscript.php" /var/log/cron Hit  Enter  after that and the results, if any, will display like below: Feb 24 02:33:02 ecbiz108 crond[9772]: (userna5) CMD (php -q /home/userna5/public_html/cronscript.php) Feb 25 02:33:01 ecbiz108 crond[16587]: (userna5) CMD (php -q /home/userna5/public_html/cronscript.php) Feb 25 11:45:01 ecbiz108 crond[21887]: (userna5) CMD (php -q /home/userna5/public_html/cronscript.php) Looking at the output, you will see the date and time the cron job has run. This is follo