Duplicate names notification list tab

I have a user who has her name duplicated in the notification list tab in her client. (Tools, Options,security, notify). She is claiming that this is slowing down her email notifications and email in general. The fact that she has over 85,000 email is not fazing her, she thinks that has nothing to do with slow response time with in the client.
I also have my name duplicated in the notification list tab in my client. So I do not think this is a big issue.
I tried repairing my mailbox (ran the repair with only the following checked; structure, fix problem, message database,misc had DELSUBSCRIBERECORDS ). This did not fix the problem on my mailbox. Any ideas on what else I can try? (did run the repair correctly?)
We are running GW8.
Thanks
phil j

Hi Phil,
Here's some info on that particular misc. option:
delsubscriberecords: Use this option when running Analyze/Fix Databases for a post office or a user. If fix problems is not selected, it removes problem subscription records from the users database that have been know to cause problems with alarms. With the fix problems selected, it removes a different type of problem records that cause problems with Notify. It might be helpful to run it both ways.
Let us know how it goes.
Cheers,

Similar Messages

  • Custom fields on shipping notification (ASN) tab in PO.

    Hello Guys,
    We are on SRM_SERVER 550 service pack SAPKIBKT07.
    We would like to add custom fields on the shipping notification (ASN) tab in PO.
    To do so we had gone through the OSS Note: Note 672960 - User-defined fields 2.
    But couldnt find the structure in which the custom fields can be added. More over we are not running on SUS.
    Currently we are creating ASN through XI interface. Using Sproxy We had called the function module BBP_DDN_UPDATE to create the ASN.
    Do let us know if any details are needed.
    Appreciate your help.
    Thanks,
    Rama

    Hi Rama
    Please check this out
    You can add custom fields in a separate tab in header using the below 2 BADIs.
    1. ME_GUI_PO_CUST
    2. ME_PROCESS_PO_CUST
    For above BADI's create screen ...and assign the screen group and screen no for that implementation....
    Please take help of Good Technical ABAP resource
    Below example may not be directly relevant but you can work on this guidelines
    SPRO u2013 SAP Reference IMG --- Logistics General --- Basic partner u2013 customers -- Control u2013 Adaption of customers own masters data element u2013 prepare modification of customer free enhancement of customer master record
    1)Screen group description
    zs creating badi --- (save)
    click on (label tab pages) u2013 new entries
    number u2013 10 , function code u2013 zs10 , description u2013 func ---(save) u2013(back)
    2)select (FM_CUSTOMER_ADD) u2013 copy
    Implementation name u2013 ZAS
    (desc u2013 impl for cust) u2013 (save)
    interfaceu2014(check_add_on_active) double click on it
    3)the above screen appear -- write the code in it u2013 (save) --- (activate) u2013 (back) u2013 (save)
    -- (activate) u2013 (back)
    Business adds in customer sub screens
    4)select (FM_CUSTOMER_ADD) u2013 copy
    Implementation name u2013 ZAS1
    (description -- cust) u2013 in attribute u2013 (give screen group name)
    5)go to interfaces (GET_TAXI_SCREEN) double click on it
    (save) --- (activate)
    6)(SAVE) --
    Goto SE38 -- CREATE PROGRAM WITH NAME (ZQW) type module pool
    Goto SE51 -- Prog : ZQW
    Screen : 200 (Create)
    Goto layout u2013 design the screen
    7)save u2013 activate
    then goto transaction : va02
    For User Exit's
    goto to tcode->status->program name->double click on that,
    then goto to-> attribute take the package name and
    Goto SMOD tcode ->Utilities->give the package name and F8
    then a list of exits will display for that tcode as well as that package.
    u can check the table MODSAP
    u can check the table MODACT
    For BADI's,
    1)goto to tcode SE24 give the CL_EXITHANDLER and display and then double click on the GET_INSTANCE
    keep Break point at this location 'call method cl_exithandler=>get_class_name_by_interface'
    then the tcode it will trigger there and we can debugg there we can find badi'for that tcode and then remove the break point.
    2)Goto to tcode->status->program name->double click on that program will display's
    then press crtl+F then cl_exithandler

  • CDESK: How to get a customized content in the document list tab

    I try to get a specific list of document info records (DIR's) in the document list tab of the CDESK - similar to the document search result.
    I use the Addin-BADI and the ~PROCESS_NEW_FUNCTIONS/~ADD_NEW_FUNCTIONS methods to start a costumer specific selection of DIR's.
    For instance I want to select all documents with contain the digits 99.
    Then I want to show the selection result as the content of the document list tab to proceed with further steps like ckeck-out and so on.
    I followed an example which I found in this forum, see thread "CDESK: Start userdefined search program and recieve DIRs".
    My coding is:
    method if_ex_cdesk_tbm_addin~process_new_functions.
        when 'ZFCODE_ARBVOR'.
          data lt_draw type table of draw.
          select * from draw into table lt_draw
            where dokar = 'TKD'
              and doknr = '99'.
          sort lt_draw stable by dokar doknr doktl dokvr ascending.
          delete adjacent duplicates from lt_draw comparing dokar doknr doktl dokvr.
          PERFORM refresh_sap_list IN PROGRAM saplcdesk TABLES lt_draw USING 'X'.
    But nothing happens with the document list when executing this customer function.
    I assume it is not possible to update the document list out of a BADI in that way.
    Does anyone has some hints?
    Kind regards,
    Matthias Fischer

    Hi Khaled,
    There is an standard RFC RFC_READ_TABLE which can read any table in R/3. But the data returned will be unformatted hence you need to parse it. This FM has few limitations aswell.
    RFC_READ_TABLE is an RFC that allows users to read a table remotely. This is important particularly to Java developers using JCO to communicate with an ABAP back-end. Unfortunately, RFC_READ_TABLE has size limitations; it also incorrectly reads binary data. Also no authorization checking takes place.
    Also refer the link below
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/portal-content/simplified queries of sap tables from java
    hope this helps..
    Regards
    Anand
    Message was edited by: Anand Torgal

  • Help needed in removing duplicate items of list box  in java

    How to remove duplicate items of list box while dynamically inserting (on-click event)
    It is not identifying duplicate data
    Variable name is HP_G1
    HP_dmg1 = (DefaultListModel) HP_G1.getModel();
    int a = HP_G1.getModel().getSize();
    System.out.println("HP list no--------> "+a);
    if(a!=0)
    for (int j=0; j<a; j++)
    String item1 = String.valueOf(HP_List.getModel().getElementAt(j));
    System.out.println("HP list added--------> "+item1);
    if(HP_dmg1.equals(item1)){
    HP_dmg1.remove(j);
    else
    HP_dmg1.addElement(GPL);
    }

    Your code is unreadable, so I'll ignore it. In the future please press the message editor's CODE button to format code.
    As to your problem, to the point you normally use a Set instead of List when you don't want duplicates in a collection.

  • Why aren't my notifications showing up on the top right corner or in the notifications sliding tab?

    Hi!
    I just have a quick question > I just upgraded to ML but I cannot get one single notification to display on my screen.
    I checked every single option within system preferences, it says for every application 'banner/banner, sound, alert' under the 'notification' tab but alas, I have yet to see one popping on my screen.  I tried with Mail and Messages - I see the number by the actual icon, but nothing on the screen or even in the notification center tab on the right. 
    When I check notification center itself, the switch is on 'ON'.
    Any idea?  Am I the only one out there with the issue?
    Any advice would be greatly appreciated! 
    Thanks-

    system preferences - users and groups - login options - put a checkmark on show fast user switching menu as - drop down menu choose either short name or full name or icon.....
    good luck

  • SCSM R2 Duplicate Email Notifications

    Hello anyone! I recently installed SCSM R2 on Windows Server 2012 R2 and created my Service Manager environment. I incorporated an Active Directory connector so I could notify affected users and assigned users of incident creation, assignment and resolution.
    I followed instructions based off various guides I found and created a custom management pack to store all my templates, workflows, etc. I am only deploying three custom workflows within my Incident Event Workflow Configuration. Those three workflows are as
    follows:
    1) Create Event - Incident Created - This workflows will send an email notification to the affected user that an Incident has been created.
    2) Update Event - Incident Assignment - This workflow will send an email notification to the assigned to user.
    3) Update Event - Incident Closed - This workflow will send an email notification to the affected user when the incident has been resolved. 
    I am using custom notification templates for each of the workflows and they all three are working, doing what they are intended to do except for one aggravating issue. In regards to the "Incident Assignment" workflow the "assigned to"
    user is receiving two emails (exact replicas) notifying that the ticket has been assigned to them. My notification list within the "Incident Event Workflow Configuration" properties for the Incident Assignment workflow is as follows:
    Under Notification List:
    User - Assigned to User , Message Template - Incident Assignment Email Notification. This is the only notification added to the notification list. I do not understand why it is sending two emails to the "Assigned to User". If anyone is experiencing
    a similar issue or can help please do. Thanks!

    Thank you Andreas! This MP did fix my issue. To anyone out there that needs to know the steps taken after downloading the MP please see below. 
    1) Go to the link listed by Andreas Baumgarten above. Download the Lumagate.AssignedToNotification.xml MP. Save it to a network share you can access from your SCSM server.
    2) Navigate to the Administration tab in your SCSM console. Select Management Packs and then choose import under Management Packs in the Tasks section.
    3) Once you have imported the MP go to the Workflow Configuration section under Administration still. 
    4) Choose your desired workflow to edit (in my case, Incident Event Workflow Configuration) and click properties. 
    5) From there you can Add a new workflow and select the Lumgate MP. I was able to leave the criteria and notification list sections blank and chose "Do not apply a template" under "Select Incident Template". Make sure this workflow is
    enabled and you may need to disable your existing custom workflows if any were previously created. 
    6) Lastly, I went and customized the Notification templates from the MP to better suit my company. You can edit the HTML in the message body to fit your needs. 
    Brian Toms

  • You cannot add a job with a duplicate name, as a web service already exists with name ... please rename the job and try again

    We are attempting to add a web service job and getting a duplicate name issue.  I believe we have a caching issue where this job name may already exist but we are unable to see it on the web services status page.
    Is there a data services repository database table where I can find these web services jobs listed and clean it up from the backend?

    There is no option there that shows me if it is being used as a web service.  Here is my issue with some screen shots.
    I look at my current web service enabled jobs looking for B_JOB_CP_MDR_to_GW_EMP but it is not in the list.
    I attempt to add it from repository DWXDS9
    It throws an error and tells me there is already a web service with this name...
    Now there has got to be an internal data services table somewhere that has this job listed as a web service.  I am just trying to figure out what that table may be to determine if we can do some type of cleanup on it so we can add this job again as a web service (so it is visible to us).

  • Cannot add BugID to notification list - CSCts02729

    When trying to use the old Bug ToolKit it says to save the BugID and add it to your notifications please use the new Bug Search Tool, but when usin this new tool it says "Bug CSCts02729 belongs to an excluded project" and so I cannot add it to my notification list? Please help!

    I have the same problem on both my iMac G5 (Home Machine) and my PowerBook G4 (Work Machine). As a classroom music teacher, we are constantly making new compilation CD's (all okay under Australian Copyright Laws) for our classes and sharing these CD's between the music staff. As I have found out, if iTunes (v. 4.9 & v.5.0) cannot obtain a match from CDDB, the Audio CD will only show up on the desktop and not in the iTunes Source List.
    A work around is to disconnect from your internet source. For me, it is a normal disconnect from the internet, ensuring that there are no "connect when needed" preferences turned on. At work, I manually disconnect the ethernet cord from the back of the PowerBook. Whenever I have done this, the pre-burnt CD appears in the iTunes Source List.
    If you do not want to disconnect from the internet, then you will need to go to "File -> Add to library... ->" then choose the Audio CD from the Desktop. This has worked for me also, but it does mean adding the track names and then converting to AAC or MP3.
    Hope this is of some help.
    Rodger

  • Error Event ID 11 The KDC encountered duplicate names while processing a Kerberos authentication request.

    I've been noticing The Error with event ID 11 popping up a lot on our domain controllers:
    The KDC encountered duplicate names while processing a Kerberos authentication request.
    When running setspn -X it says that it found 111 groups of duplicate SPNs. However, when going through the list, it references domain service accounts that are used to run our SQL Server services. We have about 50 remote locations and each of them has 3
    machines participating in a SQL mirror (principal, mirror, witness) and they all run the SQL Server service on the same account (1 account per location).
    We haven't experienced any issues at all but I was wondering if this could cause problems or if we are straying from best practice. Any advice is welcome. Thanks!

    I believe what you should do to follow best practice is to provide unique SPNs for each SQL server, which will also provide increased security, and to do that you must create individual service account for each SQL server so it can associate that
    account with that server's SPN.
    Here's more on it to help guide you. Read Paul's comments, as well as other suggestions in the following thread:
    event ID 11 There are multiple accounts with name MSSQLSvc/xxxxxx
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/8df35316-23ba-48ba-aa3e-2249fcbfecbc/event-id-11-there-are-multiple-accounts-with-name-mssqlsvcxxxxxx?forum=winserverDS
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • LSO_PP40 (Course Notification List) MS word document Download Error

    Hi All,
    We upgraded our system from TEM to LSO .
    Previously we are using t-code PP40 for Course Notification List and Genrating word output. It was working  fine.
    Now we are using T-code LSO_pp40 for the same and trying to genrate word output . but it is not genrating proper output.
    I found that at runtime, that some fields like (Legacy org code, Room No , Buliding no ) is not having any value.
    when i am removing these field in run time, output is producing.
    We have some config at SPRO as below related to this , currently i did'nt changed the name of program(RHKMIT30 to RHKMIT30_LSO for all the programs ).  I tried this by Changing the program name for one field (Legacy Org Code), but it didn't work.
    Spro Node
    Training and Event ManagementSAP Learning Solution Training ManagementDay-to-Day ActivitiesCorrespondenceSAPscript-Based CorrespondenceCorrespondenceForm LayoutSpecify Format for Text Variables
    Please Provide some Solution .
    Thanks and Regards..
    Priyank Dixit

    Good news so far, but it's really hard to tell at this point... Safe Boot repaired the HDD without telling you anything and Repairing Permissions corrected some other things.
    If things were not right, then your OS may be incomplete or a mixed/confused one then you may need to reinstall the big 10.4.11 combo for your Mac, or even do an Archive & Install.... maybe even a reinstall of Word!

  • Duplicate name found in Anayze File: Adobe APSB11-08

    Duplicate name found in Anayze File: Adobe APSB11-08 Acrobat Professional Extended 9.4.4 for Windows (Update) (Multi-Language) (See Notes){}
    These messages apparently began appearing in workstation message logs on May 21st. They are still continuing today as well.
    SLES 10 server, ZCM 10.3.3

    Same issue here. I have a call in with Novell for this, so hopefully it will get sorted soon. I suggest others with this issue raise calls as well to get it up the priority list.

  • Names were listed more than 2.

    Hi,
    Is there an easy way to delete the duplicate names? The names were listed 4 to 5 times and i want to delete those names and will only have 1 name.
    I can do it manually but i got 7 thousand names on the list. how would i do it in query?
    For example:
    in the database, i have these
    Achilles Tsatsas
    Achilles Tsatsas
    Achilles Tsatsas
    Achilles Tsatsas
    Achilles Tsatsas
    Achilles Tsatsas
    I need only 1 name..
    Hope this is clear..
    Thanks,
    Edited by: 924864 on Jun 13, 2012 3:34 AM

    From Oracle Documentation
    For each row in the database, the ROWID pseudocolumn returns the address of the row. Oracle Database rowid values contain information necessary to locate a row:
    - The data object number of the object
    - The data block in the datafile in which the row resides
    - The position of the row in the data block (first row is 0)
    - The datafile in which the row resides (first file is 1). The file number is relative to the tablespace.
    Usually, a rowid value uniquely identifies a row in the database. However, rows in different tables that are stored together in the same cluster can have the same rowid.
    Rowid values have several important uses:
    - They are the fastest way to access a single row.
    - They can show you how the rows in a table are stored.
    - They are unique identifiers for rows in a table.
    Edited by: Akss on Jun 13, 2012 3:52 AM
    Added some extra info from oracle doc.

  • KDC encountered duplicate names while processing a Kerberos authentication request

    The KDC encountered duplicate names while processing a Kerberos authentication request. The duplicate name is RPCSS/HKHVS01 (of type DS_SERVICE_PRINCIPAL_NAME). This may result in authentication failures or downgrades to NTLM. In order to prevent
    this from occuring remove the duplicate entries for RPCSS/HKHCS01 in Active Directory.
    - What the error means ??
    - Why happen ??
    - How to fix it ??
    Thanks

    This is an SPN problem. Having duplicate SPNs will result in Kerberos failures and a downgrade to NTLM authentication. Please run
    setspn -x to get the list of duplicated SPNs. Once identified, you need to remove the duplicated ones. 
    You can also see that:
    http://blogs.technet.com/b/askds/archive/2008/06/09/kerberos-authentication-problems-service-principal-name-spn-issues-part-1.aspx
    http://blogs.technet.com/b/askds/archive/2008/06/09/kerberos-authentication-problems-service-principal-name-spn-issues-part-2.aspx
    http://blogs.technet.com/b/askds/archive/2008/06/09/kerberos-authentication-problems-service-principal-name-spn-issues-part-3.aspx
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • How do I remove duplicate names in faces?

    I have duplicate names in faces.  As an example I have 6 different versions of "Andrew".  I went ahead and merged them together so all the photos are under facebook version of "Andrew".  However when I enter Andrew's name while marking faces in new photos, all 6 names appear.   How do I remove them permantely so only one shows up in that list?
    Also under iTunes, all 6 versions of "Andrew" show up in my iPhone and AppleTV faces sync list.   How do I remove those from the list?

    Things you might wish to check:
    Duplicate entries in the name completion list on entering faces may come from your Address Book. If Andrew has a different name in the Address Book, he will appear twice in your faces list.
    Merging stacks of faces is not always effective immediately in the same session - to give Aperture time to write its property lists it is a good idea to quit Aperture and to reopen again.
    It is important to do the merging of faces from the Faces view activated by the "Faces" Button in the Library Inspector, not from the Faces button in the toolbar. Faces in the Toolbar View only show a subset of all faces, so it is easy to miss some stacks.
    iTunes will show all the faces you have in Aperture. Once removed from Aperture they will disappear from iTunes.
    Léonie

  • Net use * \\computername gives a 52 error (duplicate name) with WINXP but not with WIN7

    Hi,
    I use the command " use * \\computername\share " to test the mapping of shared drives.   
    The target machine is a Win7 machine (and is in another subnet).
    The lmhost file of the client machines contains the line
    " IP address - computername #PRE "
    to allow for name resolution.
    I  get a correct reply with "ping computername", which shows that name resolution at the level of the clients is all right.
    However, when I try the "use * \\computername\share" command, it works fine if the client is a Win7 machine but gives me a "error 52 duplicate name" if the client is an XP machine.
    Now, "computername" is NOT the NETBIOS name of the target computer but another name I use for sake of facility (the NETBIOS name of the target machine is a complex one and makes it identification by the end-user difficult when it appears in the
    drop list of the GUI command "map network drive" (which is what the end-user will use for mapping).   
    Is it possible that the client WinXP tries checking "computername" against the real NETBIOS name of the target machine and says that there is duplication because they do not match, whereas the client Win7 does not do that or accepts that "computername"
    is not the real NETBIOS name ?

    Dear Carey,
    Thank you for your reply.  However, what the link describes is a situation opposite to what I described.
    The link is about TWO computers with the same NETBIOS name on a s single local network. Then the conflict is obvious since that NETBIOS name will have to point to two IP addresses.
    What I described was trying to map a shared disk on a a SINGLE computer with NETBIOS name "A" and a given unique public IP address (vvv.xxx.yyy.zzz), but to which I referred to in the lmhost file of the calling
    computer (located in another local network) with another NETBIOS name ("B") . 
    Thus, the target computer is a names "A" in its local network but the lmhost file in the calling computer has a line "vvv.xxx.yyy.zzz 
    B #PRE".   This when I got the "Duplicate name error". 
    I do not understand the error because the lmhost file should simply allow the calling computer to make name resolution (and say "B" is IP address vvv.xxx.yyy.zzz) to make the connection (which is what we get if we use the command "net use
    * \\vvv.xxx.yyy.zzz\share" [this command always work]).  But what I was suspecting is that the calling computer gets confused when it sees that the target computer with address vvv.xxx.yyy.zzz has a NETBIOS name different ("A")
    from the one it was supposed to call ("B"). 
    Am I correct ?
    As I explained in my original post, I uses "B" to name the target computer on the calling computer because "A" is a quite fancy and difficult name that the end user will never understand or remember. 
    If I name the target computer "A" in the lmhost file (i.e. its real NETBIOS name), I do not have any problem. 

Maybe you are looking for

  • How to disconnect my iphone and ipod

    my ipod is connected to my iphone and i want to unloop it

  • Rosettanet pip

    hi, i read that  rosettanet pip's or(partner interface process) are provided in the IR .. please tell me what is it (pip) used for & where it can be found in IR ( Like idocs & rfc's r present in imported objects where r they )? thanking you

  • Lock Screen Image

    Hi, I am using Nokia Lumia 920 and have set the Lock screen to take pictures from Custom Facebook Folders. But this is not happening. It shows a Black empty screen when I try to unloack the device. I verified that the Mobile data is active and Facebo

  • DNG as smart object in PS2???

    Am I missing something or there is no way to place a DNG file from LR as smart object in Photoshop? Apparently this can be done in Bridge. Thanks for any help.

  • MBP hangs for 30 seconds and I've tried everything

    I have been trying to fix my girlfriends laptop by going through the forums but I have reached a dead end. She said that one day, she put her mbp to sleep and when she took it out later, it was overheating and still awake, with iTunes open. Since the