Deleting open notification of a user till particular date.

Hi,
How can i delete open notifications (in bulk) of a user untill some date. Like if i want to delete all open notifications of any particular user till 15th Mar 2012.
Thank you.
Edited by: 906610 on Sep 8, 2012 10:40 PM

Hi;
What is EBS version? Did you see below thread:
Re: how to delete(purge) old Workflow Notification from application?
Regard
Helios

Similar Messages

  • How to close open notifications of a users from back end.

    Hi,
    One of our HR user has many open notifications since one year. I want to close all the open notifications of year 2011. Any one can please provide me an update query for the same.
    Thank you.

    906610 wrote:
    Hi,
    One of our HR user has many open notifications since one year. I want to close all the open notifications of year 2011. Any one can please provide me an update query for the same.
    Thank you.Please do not create duplicate posts -- deleting open notification of a user till particular date.

  • How To Open PopUp for every 15 min Till User Saves The Data

    Hi all,
    I am working on an application where I need to open a popup for every 15 min till user saves the data and stop after users save the data. I am not able to get idea on how it could be done. Kindly post some views in which this could be achieved.
    Thanks in advance.

    Hi,
    one alternative is the uncommittedDataWarning property is a out of the box funcionality, but don´t have time configuration.
    https://blogs.oracle.com/shay/entry/warning_of_uncommitted_unsaved_changes
    if no you can use a af:poll in combination with a popup message

  • We have two company user,till now there are using same URL.but they wanted to access particular URL to related company user in single server

    Hi Experts,
    We have two company user,till now there are using same URL.but they wanted to access particular URL to related company user in single server.
    As per my knowledge ,it is possible through create new aliases with different URLs in network.
    But i dont how to create. Please help on this.
    Thanks in advance.
    Regards,
    Prasad

    Hi Prasad,
    Please explain in clear english as to what is your requirement. I got lost after "two company user" . I suppose it means there are users from two separate company: A and B. They were using same portal till now: http://commonportal:50000/irj/portal.
    Now they need different urls - specific for each company say companyAportal.com and companyBportal.com. But still the same old common portal in the end.
    If that's your requirement please search the forum with correct terms, else "Google".
    Thanks,

  • I can't open downloaded files within Mozilla Firefox Particularly PDF files. I have Adobe Acrobat on my machine . Do I need to import it to firefox if so how do I do it ?

    I can't open downloaded files within Mozilla Firefox Particularly PDF files. I have Adobe Acrobat on my machine . Do I need to import it to firefox if so how do I do it ?

    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • How disable subscription notifications to locked users?

    Hi All,
    We have some potal users locked (dont want to delete them at the moment).
    Subscriptions notifications  are sent to those users as well (at least admin notifications).
    Is there a way not to sent subscription notification  to locked users?
    We have NW 7.01 SP3 Ep1.
    Thanks.

    HI Dimitri,
    You can do but the process can be possible through manually so go to
    Detail section -> Setting->Subscription-->Here you can cancel the subscription part
    so that you cannot send any mail to that particular user or if the person already in a group so exclude them from the group so they should no longer to get the subscription as the same thing my friend said on previous forum messgae.
    This will helpful to you.
    Regards
    RS

  • How to get a opening stock of a material on a particular date

    Hi,
    Could you pls provide me the logic of how to get the opening stock of the material on a particular date. I searched the forum and found the logic to fetch the closing stock at a given period but not for a date.
    An immediate response would be really appreciated.
    Thanks
    Harris

    Dear,
    Please read following part of my code
    FORM GET_OPENING .
       IF IT_FINAL[] IS NOT INITIAL.
         SELECT *  FROM MARD
           INTO CORRESPONDING FIELDS OF TABLE IT_MARD
           FOR ALL ENTRIES IN IT_FINAL
           WHERE MATNR = IT_FINAL-MATNR
           AND   WERKS = '1000'.
         SELECT A~MBLNR A~MJAHR A~BUDAT B~WAERS B~ZEILE B~BWART B~MATNR B~WERKS B~LGORT B~CHARG B~SHKZG B~MENGE B~MEINS B~BUSTM B~XAUTO
           INTO CORRESPONDING FIELDS OF TABLE IT_MKPF
           FROM  MKPF AS A JOIN MSEG AS B
           ON A~MANDT = B~MANDT
           AND A~MBLNR = B~MBLNR
           AND A~MJAHR = B~MJAHR
           FOR ALL ENTRIES IN IT_FINAL
           WHERE B~MATNR = IT_FINAL-MATNR
           AND   A~BUDAT GE P_BUDAT-LOW
           AND   B~WERKS = '1000'.
       ENDIF.
       AKTDAT = SY-DATLO + 30.
       IF NOT ( P_BUDAT-HIGH IS INITIAL OR P_BUDAT-HIGH > AKTDAT ).
         LOOP AT IT_MKPF INTO WA_MKPF WHERE BUDAT > P_BUDAT-HIGH.
           MOVE-CORRESPONDING WA_MKPF TO IT_MKPF1.
           APPEND IT_MKPF1.
           DELETE IT_MKPF.
         ENDLOOP.
       ENDIF.
       SORT IT_MKPF1 BY WERKS MATNR SHKZG.
       LOOP AT IT_MKPF1.
         IF ( IT_MKPF1-XAUTO IS INITIAL ) OR
             ( IT_MKPF1-BUSTM <> 'MA02' AND  IT_MKPF1-BUSTM <> 'MA05' ) .
           MOVE-CORRESPONDING IT_MKPF1 TO IT_MAT.
           COLLECT IT_MAT.
         ELSE.
           DELETE IT_MKPF1.
         ENDIF.
       ENDLOOP.
       SORT IT_MKPF BY WERKS MATNR SHKZG DESCENDING.
       LOOP AT IT_MKPF INTO WA_MKPF.
         IF ( WA_MKPF-XAUTO IS INITIAL ) OR
            ( WA_MKPF-BUSTM <> 'MA02' AND
            WA_MKPF-BUSTM <> 'MA05' ).
           MOVE-CORRESPONDING WA_MKPF TO T_MAT.
           COLLECT T_MAT.
         ELSE.
           DELETE IT_MKPF.
         ENDIF.
       ENDLOOP.
       LOOP AT IT_MARD.
         CLEAR IT_MAT-MENGE.
         MOVE-CORRESPONDING IT_MARD TO FINAL.
         READ TABLE IT_MAT WITH KEY WERKS = IT_MARD-WERKS
                                    LGORT = IT_MARD-LGORT
                                    MATNR = IT_MARD-MATNR
                                    SHKZG = 'S'.
         FINAL-ENDMENGE = IT_MARD-LABST + IT_MARD-INSME + IT_MARD-SPEME + IT_MARD-EINME + IT_MARD-RETME - IT_MAT-MENGE.
         CLEAR IT_MAT-MENGE.
         READ TABLE IT_MAT WITH KEY WERKS = IT_MARD-WERKS
                                    LGORT = IT_MARD-LGORT
                                    MATNR = IT_MARD-MATNR
                                    SHKZG = 'H'.
         FINAL-ENDMENGE = FINAL-ENDMENGE + IT_MAT-MENGE.
         COLLECT FINAL.
       ENDLOOP.
       LOOP AT FINAL.
         CLEAR T_MAT-MENGE.
         READ TABLE T_MAT WITH KEY WERKS = FINAL-WERKS
                                    MATNR = FINAL-MATNR
                                    SHKZG = 'S'.
         MOVE T_MAT-MENGE TO FINAL-SOLL.
         CLEAR T_MAT-MENGE.
         READ TABLE T_MAT WITH KEY WERKS = FINAL-WERKS
                                    MATNR = FINAL-MATNR
                                    SHKZG = 'H'.
         MOVE T_MAT-MENGE TO FINAL-HABEN.
         FINAL-ANFMENGE = FINAL-ENDMENGE - FINAL-SOLL + FINAL-HABEN.
         MODIFY FINAL.
       ENDLOOP.
       LOOP AT FINAL.
         WA_FINAL1-MATNR = FINAL-MATNR.
         WA_FINAL1-MEINS = FINAL-MEINS.
         WA_FINAL1-OP_MENGE = FINAL-ANFMENGE.
         WA_FINAL1-RE_MENGE = FINAL-SOLL.
         WA_FINAL1-IS_MENGE = FINAL-HABEN.
         WA_FINAL1-CL_MENGE = FINAL-ENDMENGE.
    *  WA_FINAL-LGORT = FINAL-LGORT.
    *    READ TABLE IT_MAKT WITH KEY MATNR = FINAL-MATNR.
    *    MOVE IT_MAKT-MAKTX TO WA_FINAL-MAKTX.
         APPEND WA_FINAL1 TO IT_FINAL1.
       ENDLOOP.
    ENDFORM.                    " GET_OPENING

  • Sending Notification to a User (common box) without attaching an employee..

    Dear all,
    I expect all of yours help on this doubt.
    I have created custom notification using wf_notification.send based on my logic, now I want to send these notification to common inbox in the Oracle. For this purpose i have created a user and attached the responsibility which includes notification inbox. I don’t want to attach an employee to this common user id because more than 5 people will be accessing this account. Because not attaching an employee, notification are not going to this common box, is there any way to solve this problem. When I am sending this notification to a user where employee already attached, it is working fine.
    Regards,
    Jojo George

    Dear Jojo,
    Can you please provide the details and procedure to create custom notifications. I need to create for oracle self service HR. i need to send the notifications of certain actions like termination, absence etc for particular persons
    Thnak you,.

  • White line when open notification

    when i open notification from app that is not in home screen, i see the white line in top left screen. i find this bug since i upgrade my iPhone to iOS 7.1

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Can we  delete the notification

    dear all
    I'm SD consultant, my user has created notification and reference to that he has created sales order. He can deleted the sales order for but he unable to delete the notification. Now he need do delete the notification is it possible?.
    any one can give the solution for this.
    Thanks & Regards
    Paulraj.S

    hi, dear friend,
    You may want to delete a notification (for example, because the malfunction reported is covered by another malfunction report, or an activity report was inadvertently entered twice).
    However, you cannot delete a notification directly online. Usually, you set a deletion flag in the notification, which informs the system that this notification can be deleted.
    To set the deletion flag, call up the notification in change mode, and choose Notification > Functions >Deletion flag > Set
    solve ur purpose

  • No item exists at ... It may have been deleted or renamed by another user for new items, but older items work?

    I created a webpart page and added an SPD listformwebpart in display mode for a particular list.
    All day yerterday I called the page and passed it the ?ID= query string and it worked great. It still works great for the items I had created.
    This morning I added a workflow where I email the URL to the page with the ID dynamically on it. Any items I added today give me the error:
    No item exists at ... It may have been deleted or renamed by another user
    All items from yesterday work fine on that page with the exact url... ????
    I was demoing the solution and was completely at a loss to explain this.
    I checked and there is no Item security. I can pull up the suspect items using the native list Display page. I show up as the creator and last modifier My workflow is NOT making any changes to the list .. only sending a url to my page.
    Same URL with only the ID different..Some items work.. some don't.. Any explanation for this?
    UPDATE: I CREATED A BRAND NEW PAGE WITH NO CODE. JUST THE LISTFORMWEBPART AND THE PROBLEM PERSIST.
    ============================
    Thank You
    cyberpine.com

    Not sure if you've seen it already, but here's a step by step guide from Microsoft's help site on creating a custom form.
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-custom-list-form-HA010119111.aspx
    The location of the custom form is really irrelevant. As I said, you don't apply security to the forms. They're applied to the list/library level or at the individual items.
    Also, SharePoint 2007 doesn't have column/field level security. Even if you customize your form or use javascript to make certain fields not-editable, it doesn't necessarily mean that's secured. Someone experienced with SharePoint can easily get around it.
    Depending on your user base or sensitivity of your data, making individual fields not-editable may not be a big deal.
    Anyways, take a look at the following article from Laura Rogers. This is one way you can make the form so that only certain fileds are editable.
    http://www.sharepoint911.com/blogs/laura/Lists/Posts/Post.aspx?List=daba3a3b-c338-41d8-bf52-cd897d000cf3&ID=3&Web=dbb90e85-b54c-49f4-8e97-6d8258116ca0
    Good luck...
    Pman
    http://www.pmansLab.com/

  • Iphoto thumbnails open blank with second user

    We have a two user macbook pro. When we load new photos onto iphoto on one 'side' the photos load fine and can be seen by that user. When we switch sides to the other user the thumbnails are there but they open blank. This seems to be a new problem. The thumbnails always open fine with the user that loads the photos, but not with the other user.
    Both users are using the same iphoto library.
    Any ideas, do I have a setting wrong somewhere ????

    Thanks Terence,
    I have found by right clicking on the photos the problem is permissions. If I rebuild as you say I think it will temporarily fix the problem as I have done this before and it does. As it starts to rebuild it asks to fix the permissions and voila its fixed though it does go through the process. My problem is that I need to rebuild every time I upload photos.
    When one user uploads the photos it seems to create a folder in the iphoto library but the permissions within that particular date folder are allocated to that user rather than all users. I have the library in the shared user account and the permissions I have set for the iphoto library as everyone read write access. How do I get it to upload and give permission to all users when it does. Is there a setting somewhere?
    Thanks

  • When i open firefox, a small "user toolbar" window opens on top right hand side, i dont want that.

    When i open firefox, a small user toolbar window opens in top right corner, please help as i dont want it, i close it but it takes to much of time to close and it hings up a bit evrytime.

    This could be a feature of an add-on. Could you check to see whether you have any unrecognized add-ons and disable (or remove) them. In particular:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Extensions category
    Then restart Firefox and watch for the toolbar, which hopefully will not appear.
    You also could paste a list of your extensions here for review. You can copy them from this page:
    Help > Troubleshooting Information
    It's the second table, which appears below the Extensions heading.

  • Number of open notifications

    Hi,
    While login to application with sysadmin user i am getting pop up message "Number of open notifications Please use the workflow worklist to view and respond to your notification"
    Could you please explain anyone on this, Why i am getting these pop message ? As i need to perform any action plan ?
    Please advise.
    Thanks,

    Please see these docs.
    Number Of Open Notifications: (n) Please Use The Workflow Worklist To View And Respond [ID 280673.1]
    Why Popup in Forms Say User has some Open Notifications, while None can be Found in Worklist ? [ID 798453.1]
    Thanks,
    Hussein

  • * Can We Send Email Notifications Only using User Task in Oracle BPM ?? *

    Hi All,
    Can we send any email notification to initiator, only from Oracle BPM User / Human task without using any notification activity.
    Is it possible to send email notifications using BPM User task alone.
    Any Help appreciated.
    Regards
    Satya

    Hi Satya,
    To send an email to the person who initiated the work item instance in the process when the instance reaches a human task:
    1. Ensure that the id of person who initiated the instance is stored in the process predefined variable called "creator".
    2. In the Interactive activity's input data mapping, map this "creator" process predefined variable to the corresponding "creator" attribute in the human task's execData.
    3. Open the human task -> click the "Notification" tab -> click the "+" icon in the upper right -> on the new row added to the bottom of the list, leave the task status dropdown set to "Assign" and change the recipent (the middle column) to "Initiator".
    Dan

Maybe you are looking for

  • Installation problem on Lenovo System Update 5.01

    I have a problem with installing the system update. right when the bar reachs installing SUS service, the installation fails. It says that the installation wizard failed because it was interrupted. I have not interrupted anything. HELP ME!!          

  • Using a second computer as a software synth

    Hi Folks I'm just thinking of running an old computer as a software synth and was wondering what I would need, i.e. midi interface, sound card and any advice that could be give so that I can sync the two machines up and get them working. TTFN Lotus E

  • F1 Documentation - Fields

    All, Here is the issue. I have custom dialog application, contains 100 screens , and within these screens some of the fields don't have F1 documentation. Now i need list down all fields that don't have F1 documentation. Go each screen and check wheth

  • Display blank for # in Query Designer

    Hello, I am executing a query using Query designer. The blank characteristic are displayed as # in the report. I want to display blank instead of the #. Please help me in this Thanks in Advance.

  • Firmware update on N95 8GB

    I have tried updating my software as i heard that the rotation application comes automatically with the update. However after trying to update using PC Suite, it says that Vista isn't currently supported. Anyone know a way around this at all?