Search This Blog

Saturday, September 28, 2013

Workflow mailer configuration setup



1)      Login to Oracle Applications Manager using sysadmin account
2)      In the drop down box choose “Workflow Manager” and click GO
3)      Click on Service componets
4)      Choose Workflow Notification Mailer and then click on Edit
Make sure you brought down the workflow services before edit to avoid the unnecessary notifications




   5) Enter the "Outbound Server Name"


   6) Edit the "From"
   7) Edit the "Reply-to-Address"


   8) Disable/Enable scheduled workflow start/stop events if needed.


  9) Review the details and Finish


SQL query to verify the workflow details:

set lines 1000
col VALUE for a40
select p.parameter_id,
p.parameter_name,
v.parameter_value value
from fnd_svc_comp_param_vals_v v,
fnd_svc_comp_params_b p,
fnd_svc_components c
where c.component_type = 'WF_MAILER'
and v.component_id = c.component_id
and v.parameter_id = p.parameter_id
and p.parameter_name in ('OUTBOUND_SERVER', 'INBOUND_SERVER','ACCOUNT', 'FROM', 'NODENAME', 'REPLYTO','DISCARD' ,'PROCESS','INBOX');

SQL query to verify the workflow services status:

set lines 1000
col COMPONENT_STATUS_INFO for a40
col COMPONENT_NAME for a50
SELECT component_name, component_status, component_status_info
FROM fnd_svc_components_v
WHERE component_name like 'Workflow%';

Few reference documents:

How to Verify/Start WorkFlow Background Engine? [ID 112935.1]
How to Stop/Start Workflow Service Containers From Command Line (Doc ID 743264.1)
How To Automatically Refresh, Resume, Start, Stop, Suspend, or Launch Summary Notifications for the Workflow Mailer as needed? (Doc ID 443643.1)

Saturday, September 21, 2013

ORA-12899: value too large for column "APPLSYS"."FND_OAM_APP_SYS_STATUS"."NODE_NAME"

Error: OAM Applications Dashboard Collection concurrent request failing with below error

+---------------------------------------------------------------------------+
Start of log messages from FND_FILE
+---------------------------------------------------------------------------+
java.sql.SQLException: ORA-12899: value too large for column "APPLSYS"."FND_OAM_APP_SYS_STATUS"."NODE_NAME" (actual: 34, maximum: 30)
ORA-06512: at "APPS.FND_OAM_COLLECTION", line 635
ORA-06512: at "APPS.FND_OAM_COLLECTION", line 1246
ORA-01403: no data found
ORA-06512: at "APPS.FND_OAM_COLLECTION", line 1350
ORA-06512: at line 1

Solution:

Verified the fnd_nodes and found DB node not exist in table

SQL> select NODE_NAME,SUPPORT_CP,SUPPORT_FORMS,SUPPORT_WEB,SUPPORT_ADMIN,SUPPORT_DB from fnd_nodes;
NODE_NAME                      S S S S S
------------------------------ - - - - -
AUTHENTICATION                 N N N N N
NSAPPS196                          Y Y Y Y N

Brought down the apps node , ran autoconfig on DB and Apps nodes, brought up the services.

NODE_NAME                      S S S S S
------------------------------ - - - - -
AUTHENTICATION                 N N N N N
NSAPPS196                Y Y Y Y N
NSDB191                N N N N Y


The request completed successful now.

+---------------------------------------------------------------------------+

Updated system property java.protocol.handler.pkgs to HTTPClient
Refreshing All ...
Refreshing Applications System Status ...
Refreshing Activity ...
Refreshing Configuration Changes ...
Refreshing Throughput ...
Refreshing Exceptions Summary ...
Refreshing User Alert Summary ...
Done Refreshing All ...
Checking collected data for alerting ...
Cancelling any pending requests for FNDOAMCOL ...
Done Cancelling any pending requests for FNDOAMCOL ...

+---------------------------------------------------------------------------+


About The Applications Dashboard
The Applications Dashboard provides a "snapshot" of your Oracle E-Business Suite system. Information is grouped under the following tabs: Overview, Performance, Critical Activities, Diagnostics, Business Flows, Security, and Software Updates.
From the Dashboard you can navigate to the Site Map, or use the drop-down menu to navigate to any of the following pages:
  • Application Services
  • Configuration - Overview
  • Forms Sessions
  • Database Status
  • Applied Patches
  • Patch Wizard
  • Workflow Manager
Oracle Applications Manager uses the collection program OAM Applications Dashboard Collection (short name: FNDOAMCOL) to gather the information displayed. The default repeat interval for this program is 10 minutes. To immediately regather the data and update the display for a particular region, click the corresponding Refresh icon. If the OAM Applications Dashboard Collection request is not running when you log in to the Oracle Applications Manager, a request will be submitted automatically under your username.

Transportable tablespace refresh

  1.check tablespace for the user which need to refresh -------------------------------------------------------------------  SQL> select ...