EBS Duplicate Alerts problem

Hi Gurus- I have a question dealing with EBS Alerts.
I have an alert that runs off UPDATES to the WF_LOCAL_USER_ROLES table.
Basically, the customer wants an email every time one of 3 responsibility get added or dates change for a user.
I have an EVENT DRIVEN alert on UPDATES on the WF_LOCAL_USER_ROLES table with the below code and an email attached as an action.
The thing is, the email gets sent twice...once with the old info, and once with the new info. I think the table gets updated twice, and the change is made in the 2nd update. I came to this conclusion as I see every time I modify a responsibility, I get 2 rows in the ALR_ACTION_HISTORY table- and both are flagged w/ action_executed = 'Y' (email sent)
My question is the obvious one...how do I ignore the 1st update??? 'Supress Duplicates' does not work for this as when I check it, 2 updates again are in the action history table, but both get flagged w/ action_executed = 'N' (email not sent for either)
Thanks in advance for any help.
-Jason
SELECT
fu.user_name,
fu.description,
frt.responsibility_name,
fu.email_address,
wura.effective_start_date
INTO
&USER_NAME,
&DESCRIPTION,
&RESP_NAME,
&EMAIL,
&START_DATE,
from fnd_user fu, fnd_responsibility_tl frt, wf_local_user_roles wura
where fu.user_name = wura.user_name
and wura.role_orig_system_id = frt.responsibility_id
and frt.responsibility_name in (
'XXCUST Discoverer Root User',
'XXCUST Discoverer Super User',
'XXCUST Discoverer User'
and wura.role_name like 'FND_RESP|%'
and wura.effective_start_date <= wura.effective_end_date
and trunc(wura.last_update_date) = trunc(sysdate)
and wura.rowid = :rowid

Did you run the following commands and add 'C:\cygwin\bin' to the system path?
C:\cygwin\bin>copy gawk.exe awk.exe
C:\cygwin\bin>copy grep.exe egrep.exe
C:\cygwin\bin>copy make.exe gnumake.exe
C:\cygwin\bin>copy gcc.exe cc.exeFrom the command prompt, what does "which gnumake" return?
You may also have a look at the following thread:
Oracle E-Business Suite R12 Installation Steps on Windows XP
Oracle E-Business Suite R12 Installation Steps on Windows XP

Similar Messages

  • Anyone know if the long standing duplicate files problem with File History has been fixed yet?

    There are loads of public threads about the duplicate files problem
    with Windows 8/8.1 File History backup system.
    From all the threads I've looked at, there seems to be no solution,
    and no acknowledgement from MS that they can even repro the problem
    (which surprises me considerably as there are so many people who
    notice the problem).
    Is anyone aware of whether MS (may) have fixed this for Win10?
    Are MS aware of the problem and if they're able to fix it?
    Dave - with many GB of duplicated files in File History :)

    Hmm, is that the attitude MS would recommend? :)
    Why would I care what Microsoft would recommend?
    Clearly you don't, and you appear to have missed my smiley. Calm down
    Noel, many of us are as annoyed by aspects of modern Windows as you
    are. :)
    I'm all about making Windows actually WORK/./
    Aren't we all? Windows is software I use too many hours every day, I
    along with many millions of others need it to work really well. You
    are not alone.
    When they implement something that doesn't work, and even if it did work doesn't do what's needed - and/beyond that/ they remove features people DO need (such as the GUI for Windows Backup), I see no wrong in advising people of the way things
    really are.
    File History essentially does work - it's saved me a couple of times
    in the past couple of weeks. It just has a highly annoying habit of
    creating 100% duplicates of some files for no apparent reason. If MS
    have fixed that I won't have any known complaints about it.
    If you don't like it, you don't have to use it. I generally like it, I
    just want to see that its fixed.
    Dave

  • Text Alert problem

    Since upgrading to IOS 6 last night I only intermittently get alert when a text comes in. Does anyone have similar problem or fix. Also what is 'Lock Sounds' in settings/sounds?

    there is nothing you can do to go back to ios 5.1.1....thats why i went and bought another 4s with the old software....we dont know how long this sound alert problem is going to continue...it could be months before they come out with a new update fix....believe me, i spent 4 hours on the phone with apple support and we could not find a fix for this problem......i guess as more and more people call in they will realize that this is a real problem and not just random.....also they have employess who do nothing other than read these forums, so the more people who write about this issue they will recognize there is a problem with the message sound alert....
    <Edited By Host>

  • Duplicate records problem

    Hi everyone,
    I'm having a a little difficulty resolving a problem with a repeating field causing duplication of data in a report I'm working on, and was hoping someone on here can suggest something to help!
    My report is designed to detail library issues during a particular period, categorised by the language of the item issued. My problem is that on the sql database that out library management system uses, it is possible for an item to have more than one language listed against it (some books will be in more than one language). When I list the loan records excluding the language data field, I get a list of distinct loan records. Bringing the language data into the report causes the loan record to repeat for each language associated with it, so if a book is both in English and French, it will cause the loan record to appear like this:
    LOAN RECORD NO.     LANGUAGE CODE
      123456                             ENG
      123456                             FRE
    So, although the loan only occurred once I have two instances of it in my report.
    I am only interested in the language that appears first and I can exclude duplicated records from the report page. I can also count only the distinct records to get an accurate overall total. My problem is that when I group the loan records by language code (I really need to do this as there are millions of loan records held in the database) the distinct count stops being a solution, as when placed at this group level it only excludes duplicates in the respective group level it's placed in. So my report would display something like this:
    ENG     1
    FRE      1
    A distinct count of the whole report would give the correct total of 1, but a cumulative total of the figures calculated at the language code group level would total 2, and be incorrect. I've encountered similar results when using Running Totals evaluating on a formula that excludes repeated loan record no.s from the count, but again when I group on the language code this goes out of the window.
    I need to find a way of grouping the loan records by language with a total count of loan records alongside each grouping that accurately reflects how many loans of that language took place.
    Is this possible using a calculation formula when there are repeating fields, or do I need to find a way of merging the repeating language fields into one field so that the report would appear like:
    LOAN RECORD     LANGUAGE CODE
      123456                      ENG, FRE
    Any suggestions would be greatly appreciated, as aside from this repeating language data there are quite a few other repeating database fields on the system that it would be nice to report on!
    Thanks!

    if you create a group by loan
    then create a group by language
    place the values in the group(loan id in the loan header)
    you should only see the loan id 1x.
    place the language in the language group you should only see that one time
    a group header returns the 1st value of a unique id....
    then in order to calculate avoiding the duplicates
    use manual running totals
    create a set for each summary you want- make sure each set has a different variable name
    MANUAL RUNNING TOTALS
    RESET
    The reset formula is placed in a group header report header to reset the summary to zero for each unique record it groups by.
    whileprintingrecords;
    Numbervar  X := 0;
    CALCULATION
    The calculation is placed adjacent to the field or formula that is being calculated.
    (if there are duplicate values; create a group on the field that is being calculated on. If there are not duplicate records, the detail section is used.
    whileprintingrecords;
    Numbervar  X := x + ; ( or formula)
    DISPLAY
    The display is the sum of what is being calculated. This is placed in a group, page or report footer. (generally placed in the group footer of the group header where the reset is placed.)
    whileprintingrecords;
    Numbervar  X;
    X

  • Chart alert problem in BO 4.0

    Dear Experts
    We previously used BO XI 3.1 Edge series, Service pack 2. In this server we have develop some of the reports use alerts in line chart (Vertical Mixed Chart).
    Now we migrate our server to BO 4.0 Service Pack 2. After migration complete we have seen that alerts of the chart is not working. and also we can not use alert in any chart in a new report.
    Would anyone please help us to solve this problem.
    Thanks in advance.
    Md. Nahiduzzaman

    Hi H
    thanks for answering my question. Would you please help me a little more....
    Currently i used patch 2.10 and product version of my BO is 14.0.0 and Build No is 565.
    Is patch 2.12 is available and from where i can got it? i have checked it in "http://service.sap.com/support" and not find it..
    Thanks
    Md. Nahiduzzaman

  • XML Bursting duplicate entry Problem

    Hi,
    I have added XML bursting concept to one of my program. When I run my main program some times XML Publisher Report Bursting Program giving following error.
    duplicate entry: /Filename_14:00:41.pdf
    java.util.zip.ZipException: duplicate entry: /Filename_14:00:41.pdf
         at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:186)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:504)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:275)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Could you give me any Idea about this error?. Please help me in this.
    Thanks in advance

    Hi,
    I'm also getting this error, but my filenames are unique already. I tried with Bursting Designer, and it created the separate files.
    Any ideas?
    logfile:
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    ++---------------------------------------------------------------------------++
    Current system time is 25-NOV-2009 09:45:46
    ++---------------------------------------------------------------------------++
    XML/BI Publisher Version : 5.6.3
    Request ID: 68702228
    All Parameters: Dummy for Data Security=Y:ReportRequestID=68702207:DebugFlag=Y
    Report Req ID: 68702207
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:PRIMO2
    Preparing parameters
    null output =/opt/apps/ebs/conc/out/o68702228.out
    inputfilename =/opt/apps/ebs/conc/out/o68702207.out
    Data XML File:/opt/apps/ebs/conc/out/o68702207.out
    Set Bursting parameters..
    Temp. Directory:/opt/apps/ebs/apps/apps_st/comn/temp
    +[112509_094600328][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production+
    +[112509_094600331][][STATEMENT] setOAProperties called..+
    Bursting propertes.....
    +{user-variable:cp:territory=US, user-variable:cp:ReportRequestID=68702207, user-variable:cp:language=en, user-variable:cp:responsibility=20678, user-variable.OA_MEDIA=http://primo-app.natinst.com:8000/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=68702207, user-variable:cp:locale=en-US, user-variable:cp:user=A2MESZAR, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=68702228, user-variable:cp:org_id=5935, user-variable:cp:reportdescription=NI Invoice Print Selected Invoices XML, user-variable:cp:Dummy for Data Security=Y}+
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception+
    duplicate entry: /NI_RAXINV_SEL_XML_1328363.PDF
    java.util.zip.ZipException: duplicate entry: /NI_RAXINV_SEL_XML_1328363.PDF
    +     at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:175)+
    +     at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:524)+
    +     at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:292)+
    +     at oracle.apps.fnd.cp.request.Run.main(Run.java:157)+
    Regards,
    Attila

  • Another "duplicate email" problem.

    I asked the following question over on the Office 2013 forum and the only response I got basically told me to "go ask this on the Outlook forum", so here goes:
    "I too am experiencing rabid email duplication with Outlook 2013.  I've found a way to avoid the problem, and also a way to fairly reliably CAUSE it.  I'm posting in the hope that this will help Microsoft with information that will allow them
    to correct their buggy code.
    My configuration:
    LAN/Domain network running Server 2008 R2 and a 3rd party (not Microsoft) email server. (Code-Crafters Ability Mail Server). 
    Physical network is a mix of hard-wired Gigabit Cat6 and wireless (Ubiquiti Pico M2 HP).
    A mix of Windows workstations, desktops and laptops running a mix of XP-Pro, Vista Ultimate, Win 7 Pro, and 8.1 Pro.
    A mix of Outlook versions, the XP and Vista machines are mostly running Outlook 2003 (yeah, I know, it's ancient but it generally still works fine for these users and they hate change).  The 7 and 8.1 users are all on Outlooks 2013 (installed as Office
    2013 Professional Plus 2013).
    All of the users access their email on the OEM Ability server via IMAP. All users have at least "a couple" of sub-folders defined in their account and all use at least "some" Outlook rules to route some email at both receive and send
    time into various folders.  Some users have a lot of rules and folders, some have only a small handful.  These users also have external IMAP access to their email on the server via their Android phones, generally using the "Type" (formerly
    Bluemail) Android email client.
    Everything from the server down (including the email server and the domain controller)  is mine and under my direct control.
    What happens fairly consistently for a few users is this:
    If they have Outlook 2013 running on more than one workstation at the same time, eventually it will go insane duplicating a handful of emails, both in the inbox and in one or more of their folders, at the rate of once every few seconds.  They are also
    connected via their android phone when this happens.  All clients (all the Outlook instances and their phones) go nuts trying to send 'new mail' notifications out at a very rapid rate.  It's not possible to delete them fast enough to keep up, no
    matter how quick they are on the trigger.  The emails in question ARE in fact duplicates - everything about them including the header information matches - and they are "real" (the duplicate copies are also visible through the web interface
    directly into the email server), so I'm sure the duplication is not just inside the Outlook view of the user's email folder(s).
    Stopping all of the user's instances of Outlook stops the duplication.  Stopping just the android client does not.  If the user shuts down all his/her instances of Outlook and uses the webmail interface to delete all the duplicates (even the 'original'
    email) and then starts exactly ONE instance of Outlook 2013, things are fine.  Starting a second instance of Outlook 2013 on another machine (for the same user) will eventually cause the duplication to start again.  Sometimes immediately, sometimes
    not, but in my experience it has always started again within an hour of starting the second Outlook 2013 instance.  When it starts, the duplicated mail is the same as before - even though the user previously deleted all copies of it, they 'magically'
    start re-appearing.
    I'd really like for this to get fixed.  Now, before anyone replies, if you're going to just write "you shouldn't run multiple instances of Outlook for the same account from different machines",  don't.  I don't want to hear
    it and the reasons that some of my users want to do this are none of your concern.  If it's DOCUMENTED in official Microsoft documentation that this is not a supported action, then I want to see the reference myself.  Otherwise, keep it to yourself
    - thanks.
    Also, don't suggest that I delete and rebuild the user's email profiles and/or email accounts on the server.  Been there, done that (multiple times), it doesn't solve the problem.
    Dont' suggest that I ditch my existing email server and convert to something else (like Exchange). I happen to like my existing email server (and so do my users).  I've already worked this problem with their support structure fairly extensively and
    we're both satisfied that the problem is not being caused by their server code.
    Finally, don't tell me to run scanpst.  Also been there, done that (multiple times) and that too does not fix the problem, so either the problem is somewhere other than in a corrupted pst/ost file, or scanpst is too dumb to find and correct whatever
    corruption might exist.
    Having said all that, any insights into what's going on?"
    Another symptom, which may or may not be related that I'm seeing on one of the problem machines is that Outlook "sometimes" does not show recent email on the user's account.  The user can access his email account via direct web access into
    the email server and is able to see, sometimes, several days worth of email traffic that does not appear in Outlook (again, using an IMAP connection).  Trying various combinations of "send/receive" operations, "folder unsubscribe/subscribe"
    operations, even exiting and restarting Outlook all seem to complete with no errors, but also without retrieving the missing email from the server.  Sometimes "time goes by" and the user can restart Outlook and the email will appear, but
    I've not yet found a way to make it happen.

    Update:
    I've reading around the different posts and saw somewhere that it might help if i put my username and password in the outgoing mail section (where is says optional). I did that! I then shut off my wifi and tried to send mail using the edge network and it was sent successfully. I will try this when im away from home again. Hopefully this will work.

  • Multiple Duplicate Message Problem

    Each time I check my email, I appear to be downloading all my messages off my mail server as if they have not already been dlowloaded in the past, This means that I am getting multiple and incerasing numbers of duplicate email messages in my inbox. It has just started happening - is this a virus perhaps? Has anyone else had this happen to them??
    I am using mailk with btinternet (POP) - I have checked my server and only one copy exists there - it is as if the application seems to have lost the ability to tell the server that it already has specific messages...
    Any help or suggestions would be greatly appreciated...

    I read in another post (http://discussions.apple.com/thread.jspa?threadID=519926&tstart=30) that this is a problem with bt. On their broadband service status page there is the following entry:
    13 June 2006 01:54 PM
    Problem downloading multiple mail messages
    We are currently investigating a problem which may mean some customer are downloading multiple copies of messages from the server using a mail client. Please bear with us as we endeavour to resolve this problem as quickly as possible. Meanwhile we apologise for any inconvenience.
    So it looks like we will have to wait for bt to sort it out.

  • Javascript alert problem - select state

    I am trying to validate my form with javascript. I'm having
    trouble with my state field. If the user selects a state javascript
    alerts the following message: "SELECT ONE is not a valid choice.
    Please choose your state." I want the alert message to pop up if
    select one is selected as a state. How do I fix this problem?

    pqer wrote:
    > I am trying to validate my form with javascript. I'm
    having trouble with my
    > state field. If the user selects a state javascript
    alerts the following
    > message: "SELECT ONE is not a valid choice. Please
    choose your state." I want
    > the alert message to pop up if select one is selected as
    a state. How do I fix
    > this problem?
    >
    >
    >
    > <script language="javascript"
    type="text/javascript">
    >
    > // check to see if the form is blank
    > function validForm(contactUs) {
    >
    >
    > if(contactUs.state.value != "SELECT ONE") {
    > alert("SELECT ONE is not a valid choice. Please choose
    your state.")
    > contactUs.state.focus()
    > return false
    > }
    if(!contactUs.state.selectedIndex) {
    alert("SELECT ONE is not a valid choice. Please choose your
    state.");
    contactUs.state.focus();
    return false;
    Mick
    >
    > </script>
    >

  • Fix duplicate contacts problem with iOs 5

    Have duplicate contacts on iPhone and iPad...sometimes multiple duplicates of same contacts.
    Contact in iCloud Sync is turned off.
    Contacts managed through Exchange.
    Have deleted and re-added Exchange account multiple times. Fixes the problem temporarily.
    What's the permanent fix?

    Apparently not: https://discussions.apple.com/thread/3643364

  • Alert problem after iOS 7

    After upgrading to iOS 7 I have been having random alert sounds on my phone.  When I check my phone after the alert I have nothing new.  Also the sound that I here is not one that I have picked for alerts, email or text.  I can't understand where this sound is coming from.
    Any ideals?

    I have the exact same problem. Since the upgrade around the same time each day an alert would go off that I'm not familiar with and nothing shown on screen. It sounds like a crackle and vibrates at the same time. Anyway I changed my phone a few days ago as I damaged the screen and this new phone is doing the same thing and I can't figure out what it could be

  • XI Mail Alerts - problem

    Hi all!
    I created XI Alerts, which send e-mail when error occurs. Everything working fine but i have one problem.
    I created scenario - ERP to File. For my tests I change target directory (to not existing on server) in File Receiver communication channel configuration. I get error email  from XI server, and this is OK. But I get this e-mail every 5 minuts over and over until I fix up communication channel. When I fix channel up, everything is OK (mail is not send). I want to get only one e-mail message when error occurs.
    Plesae tell me where I can configure that. Thanks

    Normally
    That can be achieved by configuring different "Alert Configuration".
    But am not sure whether if "Alert Configuration 1" is given "Supress" Checked on"
    Wonot allow other "Alert Configuration 2 & 3".
    What u get if u create seperate "Alert Config" and check that option.
    i suspect u will not get other messages whether if that is from different Message id. Unless u r first message is read.
    This functionlity of RWB seems to be set back.
    Any views
    lemme me know miko what is u r output.
    rdgs
    srini

  • Duplicate records-problems

    Hi gurus
    We created a text datasource in R/3 and replicated it into BW 7.0
    An infopackage (loading to PSA) and DataTransferProcess was created and included in a process chain.
    The job failed because of duplicate records.
    We now discovered that the setting of the u201CDelivery of Duplicate recordsu201D for this Datasource in BW is set to u201CUndefinedu201D
    When creating the datasource in R/3, there were no settings for the u201CDelivery of duplicate recordsu201D.
    In BW, Iu2019ve tried to change the settings of u201CDelivery of Duplicate data recordsu201D to NONE, but when I go into change-mode, the u201CDelivery of duplicateu201D is not changeable.
    Does anyone have any suggestion on how to solve this problem?
    Thanks,
    @nne Therese

    Hi Muraly,
    I do have the same issue. I am loading texts from R/3 to PSA using Infopackage with Full update. From PSA I am using DTP with Delta with the option" vaild records update, No reporting(Request Record).
    It was running fine for last few weeks like transfer records and added records are same as in the PSA request every day.
    suddenly the load has filed to infoobect . I deleted the request from Infoobject and reloaded using the DTP then again failed. I tried loading full update as it texts then again failed. Now I analised the error it says Duplicate records. So I changed the DTP by checking the option Handling Duplicate records and loaded with full update . It worked fine the transferred records more than 50000 and added records are exact no of the PSA request.
    I reset the DTP again back to Delta and loaded today but the transferred records are 14000 and added records(3000) same as PSA request. I am fine if you see the history of loads the no of records in Transfer and Added in infoobjects and the no of records in PSA request are same every day..
    Why this difference is now? But in Production I have no issues. Since I changed the DTP if I transport to Production does it make any difference. I am first time doing BI 7.0.
    Please suggest me and explain me if I am wrong.
    Thanks,
    Sudha..

  • Alert Problem. Pls advice

    Hi Aall,
    I have made one alert Category.
    Initially Wwhen I do not check -- Suppress Multiple Alerts of This Rule  every time I was getting alert.
    But as I want one alert I check that box I am not getting any alert.
    Pls advice urgent
    Regards

    hi
    here give you some blogs and Docs about alerts
    apply the better for you
    XI: Alerts - Step by step
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    http://help.sap.com/saphelp_nw04s/helpdata/en/d0/d4b54020c6792ae10000000a155106/frameset.htm
    Triggering by Calling a Function Module Directly.
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Alerts with variables from the messages payload (XI) – UPDATED
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    Simple Steps to Get Descriptive Alerts from BPM in XI
    /people/community.user/blog/2006/10/16/simple-steps-to-get-descriptive-alerts-from-bpm-in-xi
    Triggering XI Alerts from a User Defined Function
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Throwing Smart Exceptions in XI Graphical Mapping
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    /people/sukumar.natarajan/blog/2007/01/07/how-to-raise-alerts-from-abap-proxy
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/sravya.talanki2/blog/2006/11/22/error-handling-framework-xiout-of-the-box-episode-1
    /people/ginger.gatling/blog/2005/06/16/integrating-alerts-into-uwl--its-no-problem
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/d5b54020c6792ae10000000a155106/content.ht
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/abb2e7ff6311d194c000a0c93033f7/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    check this links.
    https://www.sdn.sap.com/irj/sdn/forums
    Trouble shooting Alert configuration:
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Alert Inbox
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    Alert Notification Step-by-Step
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Defining Alert Classifications
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Triggering Alerts
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Setting up alerts
    Setting up alerts in RZ20
    Alert Management
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e04141e8-0f11-2a10-adaa-9d97b062c2df
    Alert Notification
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90f449a8-a6db-2910-a386-d2b5999f5751
    Thanks
    Rodrigo

  • Duplicate Alert Message

    After upgrading to version 8.8 PL10, the alert message may be duplicate and hence the email also.
    Seems that it occurs if the "manager" has been login in 2 computers at the same time.
    It is possible to fix it?

    Dear Mr Chan,
    I have the impression that the scenario you mentioned is system behaviour. As the same user, manager, is logged at the same time on 2 pc, the alert is triggered twice.
    In fact, you said that this happens only when the manager is logged on 2 computers at the same time.
    I believe the system checks the people which the alert must be sent to and triggers the alert. It does not know if the same user is logged twice.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

Maybe you are looking for