How to find the recent changes done in the workflow by user id ?

Hello all,
How to find the recent changes done in the workflow by user id ?
I have made changed in Production system .
Like changing the status ,
changing the agent ,
but for these it will , not ask for any request .
So i want to know is there any method to find what are the changes done by me ?
Thanks and regards
Prem

Hi,
This is caused by mandant settings in scc4. It's better not to make changes in PRD, because then your DEV en QA systems differ.
Kind regards, Rob Dielemans

Similar Messages

  • How to find to recent changes to a content area during a period

    How to find recent changes (between monday and friday) to a Content Area (interms of new items, folders ..etc). ?
    does anyone has a sql script to find .
    My problems.
    We applied 30984 patch, but it is giving us lot of porblems. so we are going to rollback the change. But, we will loose all the changes between the day patch is applied to today. How to capture those changes and apply them after rolling back .
    thanks

    Subu,
    Query wwv_things using publishdate and updatedate for items and createdate and updatedate
    for folders (query wwv_corners for this).
    You will have to repost the items.
    How to find recent changes (between monday and friday) to a Content Area (interms of new items, folders ..etc). ?
    does anyone has a sql script to find .
    My problems.
    We applied 30984 patch, but it is giving us lot of porblems. so we are going to rollback the change. But, we will loose all the changes between the day patch is applied to today. How to capture those changes and apply them after rolling back .
    thanks

  • Monitoring manually using scripts/sql cmds to find the recent changes on Oracle Database

    Hello All,
    I have an Oracle database running on HP Open VMS Alpha server, need to monitor the actvities and changes made to the database.
    I am not sure of any tools which supports HP Open VMS alpha server, Can you help with the scripts or commands to findout recent changes occured on the database.
    I found suddenly a couple of schema sizes showing very less in size than usaul, how to find out the recent changes.
    Regards,
    RanG

    RanG wrote:
    Thanks but sorry EdStevens,
    I was referring to DB Administration/auditing etc on HP Open VMS in specific. Tools or Grid agent installation steps for effective and easy monitoring.
    Regards,
    RanG
    And I was referring to "DB Administration/auditing etc " on any platform.  Oracle's AUDIT function is the same regardless of OS.
    "I found suddenly a couple of schema sizes showing very less in size than usaul,"
    Exactly what do you mean by "schema sizes showing very less in size than usual"?  Schemas don't have sizes.  Only segments.
    Perhaps if you were more explicit in exactly what problem you are trying to solve, we could give better advice, but whatever it is, I seriously doubt that the solution will be OS-specific.

  • Hey guys, iv recently changed over from the 4 to the 5 and i have lost my 5. Luckily a few days ago i downloaded find my iPhone but when i log in it tracks my old phone and not the new one. I have logged in so i dont know why it wont connect. help???

    hey guys, iv recently changed over from the 4 to the 5 and i have lost my 5. Luckily a few days ago i downloaded find my iPhone but when i log in it tracks my old phone and not the new one. I have logged in so i dont know why it wont connect. I'm really upset about lossing it, if anyone one knows how to fix the problem or another way of tracking my phone that would be great.

    The iphone 5 can only be located if connected to a data or mobile network. If in Airplane mode or switched off, it can't be found.
    Check this article for more info:
    iCloud: Troubleshooting the Find My iPhone app

  • How to know what are the db changes done today

    Is there any way to know the Code changes done today in a schema. Code changes means any ddl commands / function changes / procedure changes / triggers etc. .
    Edited by: DIVI on May 29, 2012 10:08 PM

    Hi,
    If you are need of the DB Changes for which a DB Objects are Created then,
    you can use.
    SELECT *
      FROM USER_OBJECTS
    WHERE OBJECT_TYPE IN ('TABLE', 'PROCEDURE', 'PACKAGE', 'FUNCTION');But, If You need to Track Entire DDL Activites, You have to Audit the Database Changes or
    with the Use of Database Triggers.
    Thanks,
    Shankar.

  • How to find whether MIRO is done for a PO

    Hi All,
    Is there any indicator attached to POs that indicates whether MIRO is done for that PO?
    I mean after PO creation in ME21N -> GR in MIGO -> Excise (if applicable) and -> MIRO... how to find whether MIRO is done for a particular PO?
    Helpful tips will be gratefully rewarded...
    Regards,
    Karthik

    See if an entry exist in EKBE for the PO Number and its items.
    The complete process though is, to find the GR Quantity for each PO Item and see if it matches with the PO Item quantity.
      SELECT EBELN
             EBELP
             MENGE
             LOEKZ
        FROM EKPO
        INTO TABLE LT_EKPO
       WHERE EBELN = P_EBELN.
      IF NOT LT_EKPO[] IS INITIAL.
        SELECT EBELN
               EBELP
               MENGE
               BEWTP
               GJAHR
               BELNR
               BUZEI
               SHKZG
          FROM EKBE
          INTO TABLE LT_EKBE
          FOR ALL ENTRIES IN LT_EKPO
         WHERE EBELN = LT_EKPO-EBELN
           AND EBELP = LT_EKPO-EBELP
           AND VGABE = '1'.
      ENDIF.
      LOOP AT LT_EKBE.
    * Change the sign of the quantity for debit
        IF LT_EKBE-SHKZG = C_SHKZG_H.
          LT_EKBE-MENGE = -1 * LT_EKBE-MENGE.
        ENDIF.
        MOVE-CORRESPONDING LT_EKBE TO LT_EKBE_SUM.
        COLLECT LT_EKBE_SUM INTO LT_EKBE_SUM.
        CLEAR LT_EKBE_SUM.
        ENDLOOP.
       loop at it_ekpo.
    ** For each line item, calculate the total GR Quanity
        READ TABLE LT_EKBE_SUM WITH KEY EBELN = LT_EKPO-EBELN
                                        EBELP = LT_AWKEY-EBELP.
        IF SY-SUBRC = 0.
    * If the PO Item Quantity is equal to GR Quantity
            IF LT_EKPO-MENGE <= LT_EKBE_SUM-MENGE.
    * The PO Item can be considered completed GRed
            ENDIF.
        ENDIF.
      ENDLOOP.

  • How to find out web-inf path from the physical drive?

    How to find out web-inf path from the physical drive?
    I have some user profiles in web-inf directory.SO I want to know the path from root directory like
    d:/program files/allaire/jrun/appname/web-inf/profiles/username like that.
    Presently I am able to get the path upto the application directory and from that I am concatinationg web-inf/profiles/username .
    But it is giving problems when it is deployed under unix or linux.Because web-inf there it treats as WEB_INF
    SO I want to get the path of web-inf directory with out hard coding.
    Thanku

    String path = application.getRealPath("/WEB-INF/profiles/username");
    Note sure why you need this, but you don't need the real path to read the file - you can get an InputStream using the relative path. See ServletContext getResource() and getResourceAsStream().

  • How do I clear the recently edited files in the file menu?

    How do I clear the recently edited files in the file menu? (ie. cache)

    I don't have PSEv.13, but in my current version, and in the two that I had before, the behavior is/was identical.
    As far as I know, the only way to purge an entry in the list of recently edited files via the File menu, is to delete the picture file or send it to the recycle bin.
    Perhaps someone will come along with additional information.
    "The File option dose not have an option for FILE-MORE-PURGE CACHE. as Adobe suggested."
    Where is this referenced suggestion?? On-line? In a book or manual?

  • [svn] 2934: Update resources/config/messaging-config. xml to reflect the recent changes to throttling code.

    Revision: 2934
    Author: [email protected]
    Date: 2008-08-20 14:47:00 -0700 (Wed, 20 Aug 2008)
    Log Message:
    Update resources/config/messaging-config.xml to reflect the recent changes to throttling code.
    Modified Paths:
    blazeds/trunk/resources/config/messaging-config.xml

    O.k. Thanks for the clarification. I poked around in my TimeCapsule router's settings (TimeCapsule is an Apple Airport Extreme router with attached hard drive for wireless backup/storage). Unfortunately, it doesn't look like I can disable multicasting with the TimeCapsule. I can change the multicasting 'rate'. Settings are Low, Medium, High. It's currently set to Low.
    I did a few web searches, and found an Apple.com article: <http://support.apple.com/kb/HT3789?viewlocale=en_US> which explained how to disable Bonjour Service Advertisements. I believe this is the same thing as 'Multicasting'. The process is a modification of "/System/Library/LaunchDaemons/com.apple.mDNSResponder.plist", and a restart of the Mac is required afterwards.
    I'm a bit concerned that disabling multicasting will interfere with my AppleTVs and iTunes music sharing, but I may try it next time I'm up for a computer workout. This task will require editing of system preference files, could require multiple restarts, might interfere with my AppleTVs, could interfere with my iTunes file sharing, doesn't have a documented relationship to my problem.
    This is way to difficult for something that should just work. Did you say you had read something about a relationship between this bonjour multicasting and smb connectivity? If it was online could you post the link?
    I'm currently able to connect to the drive using NFS, but I have to manually configure that connection each time I reboot (can't get the 'Disk Utility' configured to do it automatically). While it's working with NFS, it's not my preferred connect method (for various reasons).

  • Using the retouch tool, how do you make it change color? The old iPhoto one did, this one seems to be flesh-tone only, which is not how I need it to be. In old iPhoto, used the local color to blend, it was great.

    Using the retouch tool, how do you make it change color? The old iPhoto one did, this one seems to be flesh-tone only, which is not how I need it to be. In old iPhoto, used the local color to blend, it was great.

    I don't know which old version you're referring to but iPhoto 6's,  7's and 8's retouch tool works exactly the same as iPhoto 9's. The color of the enhance tool's area while applying is a light brown color but the retouch works on any color using the surrounding colors as a basis.
    During retouching:
    After retouching:
    OT

  • Deleted the recently added section from the source area how can i add back

    how can i add back the recently added section from the source without reinstalling itunes thanks in advance....
    insp 8100   Windows XP  

    Ok that is easy.
    1) File > New Smart Playlist.
    2) Make sure match the following rule is checked
    3)The first drop down change to date added.
    4)Set the second drop down setting
    5) Enter the number you want based on step 4
    The rest of the check marks are up to you but make sure "Live Updating" is checked.
    Take some time playing around with the smartlists. I love them!! I have a 2 level smartlist at work, I hardly use the regular playlists.

  • I don't have air play icon on my iphone or I don't know how to find it ?, I don't have air play icon on my iphone or I don't know how to find it ?

    I don't have air play icon on my iphone or I don't know how to find it ?, I don't have air play icon on my iphone or I don't know how to find it ?

    I heared about the air serever & that it enables me to play games & view it on my pc & thats through air play & wifi

  • How can I clear the recent document list on the welcome page?

    Have some confidential docs that I don't want to appear when the program is launched. How can I clear the recent document list on the welcome page and the "open recent" list?  thx

    It's not an option in the prefs. It's a hidden file that makes up part of the preference set (as far as I know, most, or all of the seetings you can adjust inside ID's prefences dialog are actually saved in the other half of the set, InDesign Defaults). For more information, see Replace Your Preferences

  • How to find out which objects are at the end of the datafiles

    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.

    >
    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.
    >
    You may want to copy this and add it to your toolkit
    See 'What's at the End of the File?' in this Tom Kyte article from the Sept 2004 Oracle Magazine
    http://www.oracle.com/technetwork/issue-archive/o54asktom-086284.html
    And this AskTom blog shows you how to generate a script containing ALTER statements toresize your datafiles to the smallest possible. You can 'pick and choose' from the ALTER statements to do what you want.
    Then of course, you can use techniques from this article by Oracle ACE, and noted author, Jonathan Lewis
    http://jonathanlewis.wordpress.com/2010/02/06/shrink-tablespace/

  • How to find out which data control do the page layout components come from?

    hi,
    work in Jdev 11.1.2.3
    After have drag and drop data control into pages designer, how to find out which data control do the page layout component (such as a field in form layout) come from?
    --i cannot find data control related information in the property pallete for the page layout component.
    Regards.

    This information can be found in the page definition file.
    Select the field in the page and then click the binding tab.

Maybe you are looking for

  • Cannot install Yosemite on my Macbook pro 13"

    13" Macbook Pro Aluminum model 2.4 processor speed 4 gigs ram 250 gig HD, on IOS 10.6.8. I have read the pre reqs for Yosemite but when im bout to choose which HD ( which is obviously one ) it says "You cannot install Yosemite here", and thats it. Iv

  • Phones not getting IP address via DHCP server on same VLAN

    Hello....we have a new series of Cisco SF-200s and one new Cisco SF-300.  All switches are operating in layer 2 mode currently.  Let's say for all intents and purposes, all ports are in VLAN1....pretty much default setup.  There is a fiber backbone b

  • Why don't the photos load properly

    When i scroll through my photos in my library (in loop mode) why don't the photos load properly and the photos still blurred?

  • No microphone/x-fi extremega

    I'm about to turn insane... I've tried every single suggestion I could find in the forums but it seems I have to li've with the fact that I cant get the microphone to work in Vista 64. - Tried the newest driver. - tried older and beta drivers. No luc

  • INSTALLATION ERROR;----Adapters not found.

    Hello frnds, Just recently i installed XI 3.0 and configuring a scenario.. and i codnot find any adapter in  creating communication channel So pls give me a hint...waiting for ur replies.. Simraan.