Changing the notification status

How to change the status of the notification programatically? I mean based on some scenario if i want to change the status of the notification of a person to "Closed" or "Open" or "Cancelled", how is this possible?
Thanks

please, take a look at the "Oracle® Workflow API Reference Release 12" Part No. B31434-01, section "Notification APIs" (page 4-15).
You can't change the status directly. Rather, you can perform certain actions on a notification such as Send, Close, Respond, and Cancel.
hth
Edited by: AndresLepe on Mar 26, 2009 10:23 AM

Similar Messages

  • Change the transaction status when creating a follow up activity

    Hello All
    We need to change the activity status if a follow up document is created from. E.g. If an activity is created type 001  then a follow-up activity type 003 as a follow up document from 001 the system automatically changes the activity status from open to in process. I need detailed steps regarding how to reach this
    Regards
    Jacopo

    See if you can "exploit" CRM_COPY_BADI and function modules CRM_STATUS_CHANGE_EXTERN to change the User status or CRM_STATUS_CHANGE_INTERN for System status.

  • Is it possible to change the user status of a TECO Order

    Hello Folks
    Is it possible to changes the user status of a TECO Order?
    I have tried to change it using the FM 'STATUS_CHANGE_EXTERN'. Its working fine for NON TECO Orders but not for TECO Orders.
    On the other hand I was able to manually change the user status for a TECO Order in transaction IW32.
    I need to change the user status from NFBK to FBK.
    Please provide some inputs for the same.
    Thanks n Regards
    Ramesh

    The simple way is via the Internationalization settings via ARD or RDP or Screen Sharing, either via System Preferences or (if enabled) via the menu bar. If you're looking for a lower-level approach, there's not AFAIK a direct command for this. As for one possible approach, might [threadID=2106201|http://discussions.apple.com/thread.jspa?threadID=2106201] help?

  • IS THERE A WAY TO CHANGE THE NOTIFICATION SOUNDS FOR REMINDERS?

    IS THERE A WAY TO CHANGE THE NOTIFICATION SOUNDS FOR REMINDERS?

    Yes you can, in the sense that this is an "Alert" sound you've set for the whole Mac software, and of course this is set in System Preferences > Sounds > Sound Effects. This will change the "alert sound" for the whole Mac.
    So, No, you can't change only this particular Alert sound. If you could, it would be done in System Preferences > Notifications, and your only option there is whether you want the sound or not (Chkbox on "Play sound when receiving Notifications")

  • Is there a way to change the notification sound for the FB app

    is there a way to change the notification sound for the FB app?

    Go to: Settings, Sounds and look for Facebook Post.  You can click on it and select which sound you want.

  • Possible to Change the Order Status

    Hai
    When i am booking the sales order the status is showing the Booked is it possible to change the Booked status according to the customer requirement ....
    thanks in advance
    M.Meenashi Sundaram

    Hai its possible to change the order status from the
    setup>quick codes>order management>
    type --flow status
    we can able to change it
    thanks
    M.Meenashi Sundaram

  • TO change the user status in the PM order

    Hi,
    My requirement is that a techician is assiged to do the work using MRS and based on that user status is update in the PM when the save button is clicked on the MRS board.
    Now according to my requirement if anybody click on the save button and the technician is assigned to do the operation is done through MRS than the User status in the PM order should get changed.
    As a part of standard functionality the user status is not updated.
    A new user status is created in the trasaction BS02.
    Can anybody please let us know how to achieve this functionality
    Thanks
    Mohit

    We had a similar requirement and this is what we did :
    1) Set up a task as a reciever for the WORKORDER SAVE event.
    2) In this task called a method of a business object.
    3) In the method called STATUS_CHANGE_EXTERN to change the user status.

  • How to change the IO status to CLOSE after it has been settled through ko8g

    hi ,
    I have the following scenario : An internal order is assigned to a PO and after setllement of such an order i need to CLOSE the order .
    The PO has a GR done (no IR) . Currently Internal Order is in the status : TECO [technically complete] and setlement has ben doneusing Actual Settlemnet Run using KO8G.
    Now i need to change the IO status to  [ CLOSE ] : it is gving an error in KO02 : Balance is not zero .
    How  to change the Internal Order status to CLOSE or rather how to make teh balance in that Order toZero?
    Is it reqd to process some GR's for teh same PO ?
    Thansk
    Trina

    Hi,
    Check the order balance in Ko02
    Menu -->  Extras  -->  Order Balance if balance exist it means that the order has not completely settled.
    Regards,
    Raj

  • Can't change the 'compilation status' for multiple items in iTunes 8.

    Hi there,
    I've got an issue regarding the disappearance of the compilation 'tick box' when changing multiple items. Its there when you click on 'get info' for the individual track but its no longer there (in iTunes 8) when I want to change the compilation 'status' for multiple tracks at a time.
    In iTunes 7 I selected all the tracks and changed their compilation status by accident, but now, in iTunes 8 I can't change this without going through my library, track by track!.
    Please help.
    Thanks,
    Fred

    Multiple Get info now has tabs - look on the options tab.

  • Function Module to change the user status of a business transaction

    Hi,
      I want to change the user status of a business transaction. Plz let me know if there is a function module to change the user status.I found some FMs.
    - CRM_STATUS_MAINTAIN_OW
    - BBP_PROCDOC_STATUS_CHANGE_DIRE
    - CRM_ORDER_CHANGE_STATUS
      But these FM says that it has to be used for changing system status.
    Thanx,
    Sivagami.R

    hi Siva,
    here is some sample code :
    data :
      ip_guid            type  crmt_object_guid,
      ls_status            type  crmt_status_com,
      lt_status            type  crmt_status_comt,
      ls_input_field       type  crmt_input_field,
      ls_input_field_names type  crmt_input_field_names,
      lt_input_fields      type  crmt_input_field_tab,
      lt_obj_guids         type  crmt_object_guid_tab,
    ip_guid = <your guid>.
    ls_status-ref_guid = IP_GUID.
    ls_status-ref_kind = 'A'.
    ls_status-status = lv_newstat.
    ls_status-user_stat_proc = 'ZCRMCOM1'.
    ls_status-activate   = 'X'.
    INSERT ls_status INTO TABLE  lt_status.
    ls_input_field-ref_guid = IP_GUID.
    ls_input_field-ref_kind = 'A'.
    ls_input_field-objectname = 'STATUS'.
    ls_input_field_names-fieldname = 'ACTIVATE'.
    INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
    INSERT ls_input_field INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'STATUS'.
    INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
    INSERT ls_input_field INTO TABLE lt_input_fields.
    insert IP_GUID into table lt_obj_guids.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
    EXPORTING
        it_status       = lt_status
    CHANGING
        ct_input_fields = lt_input_fields.
    CALL FUNCTION 'CRM_ORDER_SAVE'
    EXPORTING
        it_objects_to_save = lt_obj_guids
    EXCEPTIONS
        OTHERS              = 2.
    COMMIT WORK.
    please award points if helps
    cheers

  • Vehicle stuck in Yard Management - Is there a way to change the HU Status?

    Hi Everyone,
    I'm trying to remove a vehicle that's stuck in Yard Management (under a warehouse) but I had no luck so far. The problem is that the Handling Unit was set to deleted and I haven't been able to change its status through HU02 or even using HUMO. The system status right now is DLTD. When I try to delete the vehicle in YM, it says that I can't because of the status that's in right now.
    Is there a way to change the system status back to 'PLND' for example?
    Also, if I could find a way to set the user status, would it prevail over the system status?
    If more information is needed, I'll gladly provide it.
    Thanks everyone!

    Hi Petr,
    Thanks for replying.
    I tried using this transaction but I don't think it's implemented in my company's SAP version.
    I think I found what the problem is. In VEKP, the status field (VEKP-STATUS) is set to '0001' (Planned) instead of 0060 (Deleted). But if I display it using tcode HUMO, it shows up as 'DLTD'. Maybe the issue is that both status are not in sync with each other and that's why I can't remove the vehicle from Yard Management.

  • EXIT after changing the document status to Parked and complete

    Hi,
    I have an urgent requirement to findout a exit which will trigger after changing the document status to PARKED and COMPLETE. I need this for invoice and FI document.
    I will really appreciate your help.
    Kuntal

    Yes the Workflow Background process completed successfully with no errors. I see the error when I query up the Sales Order go to menu --> Workflow Status -->
    Activity History.
    The Activity History shows error in the Wait Function and the error message is 3001: Invalid command argument.?
    This error message does not explain much. I followed all the steps in document# 397364.1
    Don't know why it should end in error and how it can be fixed?
    Any more ideas?
    Thanks

  • Changing the System status for previous transactions

    Hello,
    Could some body help me with this ?
    I have a User status profile with user status ABC which triggers system status Inprocess. This is applicable for all the new transactions for which we set the status ABC which works fine. But we have some previous transactions  ( Prior to this config ) with status ABC , but system status is not Inprocess.
    How can we change the system statuses for all these transactions? do we have a report for this?
    Best Regards,

    Hi,
      You can use 'STATUS_CHANGE_INTERN' FM to change the system status. Pass Object number and status ID as inputs to the Function Module.
    Regards,
    Lakshmi.Y

  • HT3576 How do you change the notification sound

    Is there a way to change the notification sounds?

    Hi ckuan,
    could you tell me whcih 3rd party Apps are able to do that?
    Thanks...

  • Not change the scheduled status after new planning explosion

    Dear  Expert
    We do detail schedule once a month, but MRP heuristic run in every day. We need new explosion every date for new master data, but after new exlopsion the allocated order come back to status 'deallocated'. Then we can not distinguish which are the plan order already scheduled which are new.  Is that any way to keep the order in allocated after new explosion.
    Thanks
    Hailiang

    In MMBE te stock should be showing in restricted batch status.
    Use MSC2n to change the batch status to released.
    Modify the "next inspection date" to the current date.  Set the SLED to the next day.
    Check MMBE and the stock should now show in unrestricted stock.
    Run QA07 using the material as an input and you should get a new recurring inspection lot for the material.  Do not enter in any value for the "window" of expired material in the bottom half of the screen.
    You should get an 09 lot generated now.  (As long as 09 inspection type is active).
    Craig

Maybe you are looking for

  • Report listing Material and Open PO Qty

    Hello, Is there a standard report that can give me the following? Material | Open PO Qty This would be specified for a particular purchasing organization, they are just looking for what is currently on order amongst all of their materials and they do

  • What happens to the data in apps that you choose not to backup with iCloud?

    Hi, I have a 64b iPad and a lot of the storage is used up with data stored inside apps. Some of these data stores are 10s of GB in size. Such as, I keep some videos on my iPad that I play with VLC player. When I upgraded the iPad to iOS5 and activate

  • Insertion problem (&)

    Hi, i m inserting a record in a table .. insert into customer (custname) values ('Ali & Asim Co'); it asks for " Enter the value for Asim ... ". what should i do tht it does not prompt for value n insert it as it. thnx

  • Increasing Speed of Imac

    Hello, Trying to figure out ways to further increase speed of 24" Imac. I've maxed out the ram to 3g and hard drive is hardly used. Most of my photos are stored on external drives. I use the computer mainly for photoshop/lightroom etc. I didn't reall

  • OSS note 778805 to correct IDOC packed HU wrong weight

    Std system behavior does not validate gross weight-net wt-tare (GRBEW-NTGEW-TARAG) received by IDOC. OSS note 778805 modification changes this, but how? Does it recalc gross wt based on net and tare? Reluctant to implement even in DEV without better