Oracle Alerts and Notification

Dear Hussein,
I have configured Workflow in R12, but neither the alerts nor the notifications are working ...
Please guide
REgds
Bilal

Bilal,
Can you find any errors in the log files?
Please refer to the following document ("Diagnostics and Logging" section) for data gathering and troubleshooting.
Note: 741769.1 - Oracle Workflow Release Notes, Release 12.0.6
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=741769.1
Regards,
Hussein

Similar Messages

  • BO FC 10.0 problem with alerts and notifications for Workflow

    HI guyz.
    I can't save e-mail password in option Tools -> General Options -> Alert and Notification. So if you had the same problem, how did you solve it?
    Thank you.

    Join us to the question. Password is not saved.
    http://i003.radikal.ru/1202/b8/d8b8275efbcd.bmp
    Edited by: Roman Abramov on Feb 22, 2012 9:10 AM

  • Help! not alert and notification for sms incoming

    All sounds of my IPhond working, but if I recive text or imessage there is no alert and no notification (ther isn't the little number near the icon). In general setting the sound are activate.. 
    What's the problem??

    I have the same problems so did the reset.
    Now I have lost all my text messages. Any idea I how I can get them back?

  • Oracle Alert and sql query

    Hello, I am working on an oracle alert for PO's.
    goal- when a PO is not approved/rejected by the approver and is waiting on approver's queue for more than 3 business days, an email should be sent to the approver every day saying "PO waiting for +xx+ days".
    Working on R:12.1.1
    Here is the script I could write and get emails of all unattended PO's. I am not able to use the dates.
    Please help me out. Here is my script.
    SELECT distinct poh.segment1,
    TO_CHAR(SUM((pll.quantity - pll.quantity_cancelled) *
    pll.price_override),
    '$99999990.90'),
    he.full_name,
    NVL(fu1.email_address, '[email protected]') approver,
    NVL(he.email_address, '[email protected]') owner,
    pv.vendor_name,
    vd.name
    INTO &PO_NO,
    &PO_AMT,
    &CREATED_BY,
    &APPROVER_EMAIL,
    &CREATOR_EMAIL,
    &VENDOR,
    &DB_NAME
    from wf_item_activity_statuses wias,
    wf_notifications wfn,
    po_headers_all poh,
    po_line_locations_all pll,
    fnd_user fu1,
    fnd_user fu2,
    hr_employees he,
    ap_suppliers pv,
    v$database vd
    where wias.notification_id is not null
    and wias.notification_id = wfn.group_id
    AND poh.last_updated_by = fu2.user_id
    and wfn.recipient_role = fu1.user_name
    AND fu2.employee_id = he.employee_id
    AND pll.po_header_id = poh.po_header_id
    AND poh.vendor_id = pv.vendor_id
    AND poh.type_lookup_code IN ('STANDARD', 'PLANNED')
    and wfn.status = 'OPEN'
    and wias.item_type = 'POAPPRV'
    and wias.item_key = poh.wf_item_key
    and poh.org_id = 81
    AND poh.type_lookup_code IN ('STANDARD', 'PLANNED')
    and poh.authorization_status IN ('IN PROCESS', 'PRE-APPROVED')
    Thanks
    Raj
    Edited by: 936248 on Sep 20, 2012 7:15 AM

    Hi Sree,
    I tried this below script. This results in an error- APP-ALR-04106.
    Thanks for the help.
    SELECT distinct poh.segment1,
    TO_CHAR(SUM((pll.quantity - pll.quantity_cancelled) *
    pll.price_override),
    '$99999990.90'),
    he.full_name,
    NVL(fu1.email_address, '[email protected]') approver,
    NVL(he.email_address, '[email protected]') owner,
    pv.vendor_name,
    vd.name,
    count(gd.transaction_date)
    INTO &PO_NO,
    &PO_AMT,
    &CREATED_BY,
    &APPROVER_EMAIL,
    &CREATOR_EMAIL,
    &VENDOR,
    &DB_NAME,
    &datediff
    from wf_item_activity_statuses wias,
    wf_notifications wfn,
    po_headers_all poh,
    po_line_locations_all pll,
    fnd_user fu1,
    fnd_user fu2,
    hr_employees he,
    ap_suppliers pv,
    v$database vd,
    GL_TRANSACTION_DATES gd
    where wias.notification_id is not null
    and wias.notification_id = wfn.group_id
    AND poh.last_updated_by = fu2.user_id
    and wfn.recipient_role = fu1.user_name
    AND fu2.employee_id = he.employee_id
    AND pll.po_header_id = poh.po_header_id
    AND poh.vendor_id = pv.vendor_id
    AND poh.type_lookup_code IN ('STANDARD', 'PLANNED')
    and wfn.status = 'OPEN'
    and wias.item_type = 'POAPPRV'
    and wias.item_key = poh.wf_item_key
    and poh.org_id = 81
    AND poh.type_lookup_code IN ('STANDARD', 'PLANNED')
    and poh.authorization_status IN ('IN PROCESS', 'PRE-APPROVED')
    and gd.business_day_flag='Y'
    and gd.transaction_date between (sysdate-3) and poh.submit_date
    GROUP BY poh.segment1

  • Oracle Alert and subquery

    I am using sub query in oracle alert it is not working fine any person guide me

    select distinct
    employee_number,
    full_name,
    c.proposed_salary decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.')1,9),'Allowance',c.proposed_salary*25/100,'None%',0,0)+
    decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.',1,2)+1,4),'Allo',c.proposed_salary*15/100,'None',0,0) +
    decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.',1,4)+1,4),'None',0,200) as net
    INTO
    &EMPNO,
    &EMPNAME,
    &NET
    from per_all_people_f a , Per_all_assignments_f b,PER_PAY_PROPOSALS_v c
    where a.person_id = b.person_id
    and b.assignment_id = c.assignment_id
    AND c.element_name = 'Basic Salary'
    and c.pay_proposal_id = (select max(pay_proposal_id) from PER_PAY_PROPOSALS_v where ASSIGNMENT_ID =b.assignment_id
    and element_name = 'Basic Salary'
    and approved = 'Y')
    and
    DECODE (b.assignment_type,
    'E', hr_general.decode_lookup ('EMP_CAT', b.employment_category),
    'C', hr_general.decode_lookup ('CWK_ASG_CATEGORY',
    b.employment_category
    )='Labor'
    and TRUNC(sysdate) between a.effective_start_date and a.effective_end_date
    AND TRUNC(sysdate) between b.effective_start_date and b.effective_end_date
    and c.proposed_salary decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.')1,9),'Allowance',c.proposed_salary*25/100,'None%',0,0)+
    decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.',1,2)+1,4),'Allo',c.proposed_salary*15/100,'None',0,0) +
    decode(substr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),instr(HR_GENERAL.DECODE_PEOPLE_GROUP(b.people_group_id),'.',1,4)+1,4),'None',0,200) >= 3000

  • Oracle alerts and microsoft exchange server

    Hi,
    We are working on Oracle Applications 11i (fail over on 2 servers) which is installed on Solaris 64 bit .
    AND I am trying to configure Oracle Alerts with Microsoft Exchange Server.
    I am following the note: Oracle Applications And Microsoft Exchange Server-Interoperability Guide.
    At the step of configuring the exchange Server I need to know the account used to run the Concurrent Manager service.
    How can i check that?
    Thanks.

    Hi,
    At the step of configuring the exchange Server I need to know the account used to run the Concurrent Manager service.
    How can i check that?Most probably it is applmgr user.
    To verify, issue "cd $COMMON_TOP/admin/scripts/<CONTEXT_NAME>", then "ls -l adcmctl.sh". This should should the OS owner of the script (the OS user which is used to start the CM). Or, you could check the value of the "s_appsuser" context variable in the application context file to determine the user.
    Regards,
    Hussein

  • WP8 email alerts and notifications

    Hi,
    I have a Windows Phone 8.  The default email app on the phone does not support specific email alerts or notifications.  Do you know if there is a email app for company email that will support specific email alerts.  Now when I am talking about
    specific email alerts, is when a specific email comes in to your inbox from a specific email address it will alert you with a ding or sound or tone, so far I am not seeing this on the Windows Phone.  Does anybody know if this is capable on the Windows
    Phone?
    Thank You,
    Frank

    Did you ever get this resolved?  I am still getting emails sent to an old email address.  I do get emails to my current address, but they tell me that the old address is "gone", even though I still get the alerts.
    What a pain.

  • Clarification of Mitigating Alerts and Notifications

    I am investigating mitigating controls in 5.2 and have a query regarding the difference between 'generate action log' and 'alert notifications'. In the configuration tab when maintaining background jobs for mit controls there are the above 2 options. None of the supporting documents clearly explain the difference between these. They're obviously both emails.  I expect one advises that mitigating control is due to be executed (alert notificiation).  That leaves 'generate action log' which seems to have something to do with capturing transactional data from R3.  Can anybody clarify how these are used?
    Many thanks in advance

    Hi
    Firstly thank you to Tavi, Frank and Hersh.  I really appreciate your speedy responses and it has shone light on this topic for me.
    I'd like to summarise to ensure I have clearly understood.  The mitigating controls, users, controllers and approvers are maintained in the 'Mitigation' tab.
    The alerts are emails and relate to the execution of the defined mitigating controls (reports).  If the controls are not executed in defined period an alert will be sent to the monitor to remind them or alert them that this activity is to be performed.  The Monitor is the person assigned to run these controls reports in specified period. 
    The notification logs read from R3 logs and will look specifically for mitigated users.  It will check to see if they run a combination of the mitigated transactions e.g. create vendor, raise invoice.  If this combination of transactions occur a log will generate with relevant details.   My question here is 'are notification logs sent my e mail and who is person to receive them, is it the monitor?'    If not, where are they to be found.  Is this a resource hungry activity and is it recommended.
    Is the Monitor the only role relating to above.
    Thanks so much in advance.

  • Alert and notification question

    We are running LMS 3.1. Notification services are configured under DFM. We do receive alerts with event occurance, but don't get notification when device come back to normal state per event code. Any help will be appreciated.
    Thanks,
    Mohammad.

    This probably has to do with how you have configured your notification group.  Make sure you have both active and cleared checked as well as both critical and informational.  The informational severity is required because cleared events/alerts are informational even though the event/alert they describe may have been critical.

  • Azure Monitoring Alerts and Notifications email

    When we receive an alert from Azure monitoring it comes from the email address "[email protected]". The domain mail.windowsazure.com is not valid and our mail firewall blocks these messages due to this. Does anyone know if
    it is possible to customize the "From" address for these monitoring notices? Perhaps Microsoft Azure guys will create a valid domain for this.......?
    -Jason

    hi Jason,
    Thanks for your posting!
    For this issue, it seems that changing the setting of mail server is related to Exchange Server or office outlook issue.
    I am not sure which type of mail server you used, but if you use Exchange server, you can Customize junk e-mail protection. Please see this page:
    http://office.microsoft.com/en-ca/mac-outlook-help/customize-junk-e-mail-protection-HA102928289.aspx
    Or you could post this issue on office forum for more support.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I disable emails, alerts, and notifications sent from iCals which I subscribe to?

    My wife subscribes to one of my iCal and uses it to know when I have class or am indisposed. I use my school calendar very heavily especially the To dos. The problem occurs when she recieves hundreds of emails generated from my constant updating of my calendar and To dos. We want her to recieve updates but not of the To Dos. How can she opt out of the To do list, the emails, and the constant updating; once daily would be enough.
    -Josh

    What phone?
    You would need to disable data on the phone itself.  You wouldn't do it online on your account.
    Note also that text messages do not count toward your data allowance.

  • Sending Email by Oracle Alert when no rows returned

    Hello All,
    I am having one problem.
    In the Oracle Alert i wrote one query which is returing 0 rows.
    But sometimes it will returns some rows.
    And my requirement is that when this query doesn't return any rows , i want to send one email to user that there is no data
    and if the data is present then i have to send the data.
    But currently there is no data so i made one Oracle Alert and when i am running that Alert then it is showing me a one message and mail doesn't sent
    Oracle Alert did not perform the summary action "My Test Alert" because no exceptions were returned for this action set.
    Please Suggest
    Thanks & Regards

    Write a second alert that fires near about the same time.
    select 'send email'
    from dual
    where 0 = (select count(1) from your_table)
    This alert will send a "no rows found" email.
    Hope this helps,
    Sandeep Gandhi

  • Oracle Alert Configuration in 11i

    Hi Hussein:
    I am trying to configure oracle alerts for my application ( Test ) following article
    How To Check Oracle Alert Setup? [ID 577392.1]
    But when I run the query in the third step , I am not getting the two rows that is expected.
    3) Login into SQL*Plus as the 'APPS' user and run the following SQL.
    select object_name, status from user_objects
    where object_type = 'TRIGGER'
    and object_name like 'ALR_FND_PROFILE_OPTIONS%';
    Do I have to run any scripts to get this triggers created? I am kind of last.
    I went through the whole document and changed a user profile so I can check if the alerts is working. Nothing came out , Not an email or even a printout.
    Regards,
    Bala

    Hi Bala,
    Please run the test in (Note: 271367.1 - Oracle Alert Alert Check Setup Test) and see if it returns any error/warning messages.
    If you are on 11i and you have RUP4 patch installed (or above), then you need to consider having Workflow configured.
    Please see these documents/threads for details.
    Note: 422782.1 - Changes Introduced in Alerts Post RUP4 and its Impact
    Note: 428193.1 - How to determine what email system is being utilized for Oracle Alert processing?
    Oracle Alert and WF mailer
    Oracle Alert and WF mailer
    Regards,
    Hussein

  • Oracle alert not working in 11i but working on R12 on same server

    Hi Friends,
    I have an R12(R12.1.1) Instance and I configured Oracle Alert with the following details
    Mail systems : Windows NT Mail
    Mail Database/Server Name: server1
    Send Mail Account/password : wf/wf
    Response Mail Account/password: wf/wf
    Enable Response Processing:no
    Workflow mailer is working and I tested a sample Oracle Alert and it works fine.I received mail also.
    I also have a 11i (11.5.10.2) instance on the same server and i configured the alert options exactly as i did for R12 and the workflow mailer is also running but the alert is throwing error:
    APP-ALR-04124: Oracle Alert was unable to deliver your message
    To <mail id>
    Apps Version : 11.5.10.2(Default Installation,No patches applied)
    Server OS : Red Hat Linux ES 4.4
    Mail server : Exchange 5.5 on windows
    Both the instances are on the same server.
    what is the change needs to be done on 11i compared with R12(R12.1.1)which is working fine.
    Please let me know.
    Regards,
    DB

    Pl run the 11i Diagnostics Test outlined in MOS Doc 271367.1 (11i : Oracle Alert Alert Check Setup Test)
    HTH
    Srini

  • Oracle Alert: Access before and after update values of a table column

    We have a requirement where a notification needs to be sent when 'END_DATE' attribute (column in a table X) is set, in an Oracle Applications form.
    I have defined an Event based Oracle Alert which fires 'On Update' of the table X.
    Could anyone please let me know as how to access the value of 'END_DATE' before and after update (i.e :new.END_DATE and :old.END_DATE) in the sql query of the alert.
    The need to use the before update and after update values of the attribute 'END_DATE' is that if we add the condition END_DATE is not null, the alert is sent even if any other attrbutes are updated in the Oracle form which is not the intended behavior.
    Appreciate any help.
    Thanks

    Hi
    use selectionlistener for your first table then add clientlistener and serverlistener so that you will get the rows on click in back bean.
    then get second table vo and and create and add row for that view object. add partial target to refresh your second table from back bean.
    on click of save call commit operation.

Maybe you are looking for

  • Signed java applet is very slow with 1.4.2_06

    We have an application which has a signed jar applets was working fine with Java Plug-in (JPI) version 1.4.1_02. Due to customer requirement they want to run the same applet with JPI version 1.4.2_06, After JPI upgrade the applet is running slow. I a

  • How to use HTML Tags in webdynpro java

    Hi,      Can any body tell me how to use HTML Tags in webdynpro java. If u provide me with sample code it will become more usefull. Thanks & Regards, SN

  • Licensing Server 2008 R2 RDS with SPLA licenses?

    I haven't used SPLA for doing any RDS licenses and am having trouble finding info on where to get the licenses. Where do I get licenses from? I can't find any info on the SPLA site or on the Microsoft Volume Licensing Service Center site. Thanks!

  • Batch Convert PowerPoint to Movies file name issue

    I need to batch convert powerpoint presentations to movie. But the save option forces me to use the same name on every movie. I want it to just save the presentation with the same file name. So if the powerpoint is: MyPresentation.ppt then the movie

  • Forms9i and Outlook

    I have a Forms9i with a button called 'Email'. Using the When-Button-Click trigger, I invoked a new message creation in Outlook, but not to auto send the new message. The focus for the user should be this new message window so that s/he can modify th