CS02, On click of SAVE button, need to capture some event related with this

Hi,
My requirement is like,
I change the material BOM using CS02 tcode.
When, I complete the changes, and click on SAVE button, I dont find any event triggering in the system.
Can any help in capturing some event related to this?
The reason why I need this is ..during  the workflow runtime, the user is presented with the workitem to change the Material BOM with CS02 tcode. And, if sometimes, by mistake, the user is unable to complete the changes of the workitem, and comes back of CS02 without change completion, then the workitem is disapperaing from the inbox, with out completing the intended task of the workitem. So I want to make the workitem appear repeatedly in the user's inbox, till the desired action is done.
Thanks

Sai,
You need to use a Loop..While statement by validating the decision step.
Use a varaiable to store 'Y' or 'N'.
intially, have the value as 'N' and if the required outcome is taken. Eg: Accept,Reject.. then change the value to 'Y', which will go to the next step of workflow.
if 'N', it will again create a new workitem with the same content to the same agent.
Hope this helps.
bye,
Sudhir.

Similar Messages

  • Report is Blank after Click on Save button

    Hi All,
    I am having a Real Time Infocube, which is been used by Monthly and Yearly report separately using different Aggregation Levels.
    During Monthly report testing, I made changes in Yearly Report (common for monthly as well) and clicked on SAVE button.
    As a result, a new request generated into the Cube, whereas my old request (yellow one) was still there and was containing only 700 records.
    Step1:
    Now,  after that when I activated aggregation level. The output of the report was blank.
    Same thing happened with monthly report also.
    Step2:
    So, I deleted that new request from Cube after changing its behaviour from Planned mode --> Load mode.
    Now, when I tried to get it back. It was asking me to green the existing request (old request).
    Step3:
    when the cube was containing only old yellow request (before changing the behaviour) monthly report was showing me correct data. But, Yearly report was blank.
    So, I manually green the request and changed the behaviour to Planned mode.
    Whereas, Now (after changing behavior to Planned mode) both reports are blank.
    Please help!!
    Best Regards,
    Jatin

    Hi,
    first you the correct settings in transaction RSDIPROP for your InfoCube:
    On tab 'Roll Up' you should set the flag Set Quality Status to OK Automatically.
    Second delete the cache for the planbuffer query; the name of the plan buffer queries are as follows
    - if your aggregation level is defined on InfoCube CUBE the name is CUBE/!!1CUBE
    - if your aggregation level is defined on MultiProvider IPROV the name is IPROV/!!1IPROV
    - if you are using a query on a MultiProvider containing aggregatiion levels delete also the cache of the query.
    Now check the values of your query again.
    Note 1136163 contains the recommended cache settings in RSRT.
    Regards,
    Gregor

  • Adobe reader opens "save as" box when clicking on save button rather than saving in the same file

    Hi everybody,
    I have a fillable PDF form designed in Livecycle designer and it is reader extended. When I fill that form on MAC it let me fill and save the form as many times as I like. Everytime I make any change I just click the save button it saves changes in the same form. BUT is is behaving differently on Windows. After filling the form out when I click on save button it opens up "Save as " dialogue box to save a new copy with those changes. I have Adobe reader XI and Adobe Acrobat XI installed on windows. I know I can do that with Acrobat but I want that in reader for users who dont have acrobat.
    Please help me.....
    Thanks

    What are you filling out the form with on the MAC?

  • When a third party program creates a new Google calendar event using a http link I cannot click the save button in Firefox 9.01 or 10b2.

    I use a TV listings program called DigiGuide. This has a script that opens a new Google Calendar event page in my browser for a specified TV program with all fields already completed. I then just have to click the SAVE button on the Google Calendar site to save the event - but since updating to 9.01 from 8.xx this button and others (Discard, Search) has no effect, although the cursor changes when over the button as if it recognised a link. Opening the same page in Chrome works fine. I have also noticed that Calendar's other buttons (e.g. next/previous period) can stop working on the main Calendar page, which I have as a pinned tab - in this event navigating away from Calendar and back again regains that functionality. The issue persists in Firefox 10b2.

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

  • Session should logoff on click of save button in webgui window

    Hi All
    I am directly changing section 80 details using WEBGUI ervices( PA30 tcode with infotype 585 in change mode) WITH BELOW URL
    'http://XXXXXXXXXXXXXXX/sap/bc/gui/sap/its/webgui?~transaction=*pa30%20RP50G-PERNR=' lv_aempid
    ';RP50G-choic=0006;RP50G-SUBTY=4;RP50G-begda=01.01.1800;RP50G-endda=31.12.9999;DYNP_OKCODE=CHG'
    So user able to change their details using above URL, but when user clicks on save button, it is showing PA30 main screen..I want o know how to avoid this screen...
    My requirement is when user clicks on Save button, it should save and logoff from session.*
    Regards
    Srinivas

    Try to use CALL FUNCTION 'ITS_END_SESSION' in the user-exit.
    Of couse you must check that it is webgui session (not sapgui).
    Hope this helps

  • Disable Checkbox, once i select checkbox & click on save button

    Hi All,
    Once i select checkbox & click on save button
    then Checkbox will Disable, in moodule pool programming.
    Thanks

    Hi,
    Add the below code in PBO.
    loop at screen.
       if screen-name = 'CH1'
         if g_save = 'X'.
           screen-input = 0.
         else.
           screen-input = 1.
         endif.
         modify screen.
       endif.
    endloop.
    Add the below code In PAI
    case okcode.
      when 'SAVE'.
        g_save = 'X'.
    *code for saving data
    endcase.
    Hope this helps.
    Thanks,
    Balaji

  • When trying to open iPhoto the computer says: 'The photo library needs to be upgraded to work with this version of iPhoto.'  So I click 'upgrade' Then it says: 'You can't open your current photo library using this version of iPhoto.' Etcetera...

    When trying to open iPhoto the computer says:
    ‘The photo library needs to be upgraded to work with this version of iPhoto.’
    So I click ‘upgrade’
    Then it says: ‘You can’t open your current photo library using this version of iPhoto.’
    Etcetera...
    What to do??
    Theo

    Is your Apple Intel-based, poppelmacbook?  If not, you should consider treating yourself to a new Mac. Last December I gave up my old because it just could not update...anything because it was not Intel-based.  Updating everything on this OS to 10.9 has been confusing for me, but I just could not work with that old Mac because the updates were too smart? for my 10.6.  It is upstairs now...for visiting family:  games, garage band, etc.--things I never did use.  Apple refurbished and purchase the extended warranty.  Apple loyalist since late 1980's.

  • When I click on iPhoto icon I get a box that reads "The photo library needs to be upgraded to work with this version of iPhoto."  Whether I hit Quit or Upgrade the problem is not fixed.  Any suggestions?  Yes, I have tried Command Option iPhoto..no luck.

    When I click on iPhoto icon I get a box that reads "The photo library needs to be upgraded to work with this version of iPhoto."  Whether I hit Quit or Upgrade the problem is not fixed.  Any suggestions?  Yes, I have tried Command Option iPhoto..no luck.  I think I may have hit Upgrade the first time.  I really need this to be fixed ASAP.  Thanks for your help.

    Assuming iPhoto 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • IPhoto keeps saying The photo library needs to be upgraded to work with this version of iPhoto

    Upgraded to new Lion iMac from Snow Leopard iMac, then upgraded to iCloud. I upgraded to the latest version of iPhoto. I get this message that says that "The photo library needs to be upgraded to work with this version of iPhoto. I have iPhoto '11 version 9.2.1(628)
    I have attached the screenshot here. I have over 31,000 photos in this library. I click upgrade and it shows me a line for a while and then goes to the photos. Everything looks fine except photstream doesn't work and I always get this same message when I open iPhoto again.
    Another detail is that I do have mobileme web albums still publishing from this iPhoto. Could this be causing a problem?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Iphoto library needs to be upgraded to work with this version of iPhoto. Will my Facebook albums remain?

    I just upgraded my computer to yosemite and that includes the iPhoto application.
    After opening iPhoto it says "The photo library needs to be upgraded to work with this version of iPhoto." I'm worried that if I chose to upgrade I will 1. lose all my photos and 2. have my synced facebok albums taken off Facebook.
    One time I moved my iPhoto library to an external hard drive and lost all my Facebook album photos so I don't want to make the same mistake.
    So does anyone know if I chose to go through with this upgrade will I lose my photos in the iPhoto and the synced albums on Facebook? If I do lose photos, how do I go recover my previous iPhoto version?

    Just to confirm. When I saved a copy of my iPhoto library on my external harddrive that's "backing-up" right?
    Also, is there anyway on Facebook to tell which albums are synced with my iPhoto so that I know which ones will be gone if something does go wrong?
    Sorry one more question Larry. I keep reading issues people are having with upgrading their iPhoto to 9.6 and the upgraded iPhoto does not recognize their library (see: https://discussions.apple.com/thread/6676471). If this happens to me and I have to repair or re-install my iPhoto will my Facebook albums be affected?
    Thanks for your help Larry I appreciate it

  • "the iPhoto library needs to be upgraded to work with this version of iPhoto." WHAT?

    Ran software update a few weeks back and now I cannot seem to open iPhoto or access files within.
    The error message as soon as I open up iPhoto reads: "the iPhoto library needs to be upgraded to work with this version of iPhoto."
    What do I do to overcome this?  What happens to the files in "UPGRADE?"
    Should I be worried about the safety of the files during upgrade?

    Yes - you should always be worried about yoru files if they are important to you - never upgrade without backingup just in case (the normal case is no problem but you must be prepared)
    LN

  • The photo library needs to be upgraded to work with this version of iPhoto??

    Just got this message after upgrading to Mavericks...
    The photo library needs to be upgraded to work with this version of iPhoto.
    Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade process for very large libraries may take an hour or more to complete.
    Is is ok to go ahead with this?
    I have done a back up to my time machine but I am concerned when it says the library will not be readable by previous versions, what happens if I have to restore my Mac from the time machine, which would mean reverting back to Snow Leopard?

    Well you have two choices - upgrade the iPhoto library and use it - or not upgreade it and stop using - the current version can not use older libraries so unless you upgrade the library to match the application version you can not use iPhoto
    And as warned once you upgrade the libary then older versions will not be able to use it
    LN

  • My iphoto on my imac somehow updated on its own and now its saying "The photo library needs to be upgraded to work with this version of iPhoto." have i lost my photos?

    I tried to open my iphoto last night on my iMAC and it somehow updated on it's own and now has a message saying  "The photo library needs to be upgraded to work with this version of iPhoto. Your photo library will not be readable by previous versions of iPhoto after the upgrade.The upgrade process for very large libraries may take an hour or more to complete." I only have the option to quit or upgrade. What does this mean? Have i lost my pictures? i don't properly have my back up hard drive set up so all my pictures aren't backed up.

    "The photo library needs to be upgraded to work with this version of iPhoto. Your photo library will not be readable by previous versions of iPhoto after the upgrade.The upgrade process for very large libraries may take an hour or more to complete."
    After your iPhoto application got updated to a new version, iPhoto will convert the iPhoto library to a new format, that is used by the new version. The warning tells you, that after this upgrade older iPhoto versions will no longer be able to read the iPhoto library. If you have a second Mac with older software that might be important. Make a backup to be on the safe side and let iPhoto upgrade the library.

  • I updated I Photos and now I can not get into the I Photos,   I get a message that  says "the library needs to be updated to work with this version of I Photo'  I have no other updates to install.  How do I update to get into i Phones?   riderm622

    I updated my computer with the  I Photo June 2012 program and now I can not open I photo or shut off the computer because I get a message that says "The library needs to be updated to work with this version of I Photo'   I have no other updates to install.  How do I update the library to get into I phootos.  riderm622

    backup your iPhoto library and download the 9.1 update and install it
    LN

  • Help, I can no longer open my IPhoto, I get a message that says the library needs to be upgraded to work with this version of IPhoto

    Help, I can no longer open my I Photo's.  I get a message that says the library needs to be updated to work with this version of IPhoto.  What have I done and what can I do to view them again.

    You're welcome
    It should have showed you a progress bar, and hopefully it was moving steadily

Maybe you are looking for