How to trace if objects are deleted from a scenario

Hi Experts,
Can you please tell me if some of my objects get deleted from my scenario how can I trace? like by which user this is done or any log is there from where we can find this one?
Thanks
Sugata B

Just run the scenario if you are aware of the entire process by disabling target system adapter (if needed)
then you can easily trace it out.
If you know details about mapping go to SXI_CACHE and chk there, for  objects of your scenario
Rajesh

Similar Messages

  • Hello, All my sonds are deleted from my laptop and from Itunes. If i synch my iphone to my itunes all my music will go. How do i prevent losing all my music?

    Hello, All my sonds are deleted from my laptop and from Itunes. If i synch my iphone to my itunes all my music will go. How do i prevent losing all my music?

    There's some third party applications available for recovering content off an iPod, iPhone or iPad. The following article is pretty old (2008) so it would be best to reality-check the capabilities and availability of the various listed items prior to opting for a particular product:
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P2

  • Any ideas why I have emails received on iphone but are deleted from p.c ?.

    Does anyone have any ideas as to why I receive Emails on my Iphone, but they are deleted from my p.c.?

    You're using a POP account instead of IMAP. That's how it works.

  • Can I get my contacts back if they are deleted from ICloud?

    Can I get my contacts back if they are deleted from ICloud?

    If your contacts is gone from iCloud.com there is only a few ways to possibly recover it.
    The first things I would check is a iCloud Backup, a iTunes Backup, or a 3rd party email that may have contained the contacts. To restore from a iCloud or iTunes backup follow this link. This article explains how to restore a device from either back up.
    Note if you have backed up since the contacts went missing, you will not have the contacts on the backup. Make sure you do not back up if trying to restore from a back up as this will back up the content without the contacts.
    To get to the "Set up assistant" on an iOS device, you must go to Settings>General>Reset>Erase All Content and Settings. Once the phone restarts, you will be at the "Set up Assistant"
    Gmail emails are very commmon sources for contacts and you may have been adding them to the gmail contacts without even knowing it.

  • How to find the file that delete from time capsule?

    How to find the file that delete from time capsule?

    I mean I saved JPEG file in Time capsule and unfortunately delete the file. Can I get it back
    IF.... .no other backups have occured since you deleted the file, you might be able to retrieve it using an application like Disk Warrior. It's about $100 as I recall, and there are no guarantees that it will work.
    DiskWarrior 4 - The Disk Utility for Mac  Disk Repair, Mac Directory ...
    Any of the free or low priced utilities that you might see or try will not be able to retrieve a deleted file from a Time Capsule.
    If any backups have occured since you deleted the file, the deleted file has almost certainly been overwritten. No way to retrieve it in that case.

  • I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    ok sorry everyone but i solved it myself but the solution is so nuts i've posted it here to help others who have the same problem.
    to setup a comcast imap account on your iphone:
    go to mail, contacts, etc in settings
    under accts, select add account
    select "other"
    new screen, choose "add mail account"
    now on the new acct screen you must enter your name, email address and password for your GMAIL acct ! (yes i said your gmail acct !, or some other acct with a NON comcast address).
    hit next
    then the acct verifies
    when verified a screen will open with all the acct settings for this acct AND @ the top of the screen are the 2 buttons > imap or POP
    select imap and THEN CHANGE ALL THE ACCOUNT information to the comcast account !
    then hit next and the account will take a couple minutes to verify but it will verify and now you have a comcast imap acct set up on your iphone.  The problem must be that when the iphone sends the initial verify acct info to comcast (if you enter that information first) the comcast server is simply not setup yet to signal the iphone that there is an imap option.

  • HT201317 The pictures in my photostream folder on my computer are being deleted when the pictures are deleted from photostream on individual devices.  The photos on the computer were supposed to be permanent.  Can I stop photostream from deleting from my

    The original photstream instructions, and the current photostream information page on the apple website, say that photos on your pc or mac computer that have been synced by photostream are permanent but the latest updatge seems to have changed that so when items are deleted from any device they are deleted from all devices, including images that have gotten older and have rolled out of photostream on my iphone.  I trusted photostream to save these images on my computer and now they appear to be gone.  Can I turn off the option of deleting photostream images from my computer or do I need to copy these images to another folder to save them from being deleted when they are deleted from the device.

    MikeMurdock wrote:
    ok so i can't figure this out because i keep being told different things by everybody.
    so say I take a picture with my phone. that picture is now located in my camera roll and uploads to my iclouds photostream, which I can then view on my computer. now my question is this: is the photos in my stream, on my comp permanent, allowing me to then delete them from my phones camera roll?
    No
    Photostream keeps them for 30 days.

  • How can iTune-synched photos be deleted from iOS devices if the iTunes computer is no longer available?

    How can iTunes-synched photos be deleted from iOS devices if the iTunes computer is no longer available?
    This can happen because the iOS device is on travels distant from the iTunes computer, because the iTunes computer is on travels distant from the iOS device, because the iTunes computer has failed permanently, because the iTunes computer has been stolen, etc.

    KRDHarris-
    The only possibility I can think of, is to consult with an Apple Store Genius.  See if there is some kind of Apple proprietary software or diagnostic tool that can do it.
    I do not think you want to, but you could go to Settings-General-Reset-Erase All Content and Settings.  If you decided to do that, you might be able to restore from a previous backup when you get home.
    Fred

  • Temporary objects are deleted incorrectly

    The temporary objects are deleted (their destructors called) when they are leaving the scope of the expression due to wich they were created. But the Standard says that a temporary object should be deleted when the full expression due to wich it was created is completely evaluated (if no reference to it was created).
    Consider the following example:
    #include <iostream>
    using namespace std;
    class A
    public:
    A() {
      cout << "A constructor" << endl;
    ~A() {
      cout << "A destructor" << endl;
    A foo() {
    cout << "foo has been called" << endl;
    return A();
    void foo2(A const& a) {
    cout << "foo2 has been called" << endl;
    int main(int argc, char *argv[], char *envp[])
    cout << "main started" << endl;
    foo2(foo()); // BUG
    cout << "main continued execution" << endl;
    return 0;
    }This test makes the following output:
    main started
    foo has been called
    A constructor
    foo2 has been called
    main continued execution
    A destructor
    As you may see, the temporary object of type A created as a return value of function foo() is deleted on main() exit, not on finishing evaluation of the expression "foo2(foo());".
    The expected output is:
    main started
    foo has been called
    A constructor
    foo2 has been called
    A destructor
    main continued execution
    Actually, if the line marked as BUG is enclosed in {} brackets the desired output is achieved.

    For compatibility with older compilers, the compiler by default destroys temporary objects at the end of the block in which they are destroyed.
    To get standard-conforming behavior, use the compiler option
    -features=tmplife
    on each module where temporary lifetime makes a difference.

  • How to retrieve phone numbers  once deleted from iphone?

    how to retrieve phone numbers  once deleted from iphone?

    If your iPhone's iCloud was on go to www.icloud.com from your browser and login and you should find your contacts under contacts

  • How many java String objects are created in string literal pool by executin

    How many java String objects are created in string literal pool by executing following five lines of code.
    String str = "Java";
    str = str.concat(" Beans ");
    str = str.trim();
    String str1 = "abc";
    String str2 = new String("abc").intern();
    Kindly explain thanks in advance
    Senthil

    virtuoso. wrote:
    jverd wrote:
    In Java all instances are kept on the heap. The "String literal pool" is no exception. It doesn't hold instances. It holds references to String objects on the heap.Um, no.
    The literal pool is part of the heap, and it holds String instances.
    [http://java.sun.com/docs/books/jvms/second_edition/html/Overview.doc.html#22972]
    [http://java.sun.com/docs/books/jvms/second_edition/html/ConstantPool.doc.html#67960]
    You're referring to the JVM. That's not Java.It's part of Java.
    There is nowhere in Java where it is correct to say "The string literal pool holds references, not String objects."

  • How do i recover a file deleted from iCloud on my iPad

    how do i recover a file deleted from iCloud on my iPad? It's a pages document

    check at https://www.icloud.com/ to see if the file is saved there in documents or iCloud drive
    if not check under settings > iCloud > storage > manage storage and see if there is a backup of the iPad from when the document was still saved
    if there is restoring your iPad form that backup may recover it
    Restore your device from an iCloud or iTunes backup - Apple Support
    if there is not then check to see if it is still saved on any other computers or devices to see if it is saved there
    good luck

  • Yahoo/att email from my ipad2 are deleted from the server view.

    When reading my yahoo/att email from my ipad2 they are deleted from the server view. Is there any way to keep this from occuring? I have my home pc set to not delete upon reading to allow manual retention as needed.

    If you recently added back your email account it was most likely set up as an IMAP account - renowned for the seamless sync across your device - yes I am being a little sarcastic there - at the technology not at you
    The oft recommended way to "force" the email to be POP is to add your email address in there incorrectly - misspelling works fine - and then it asks whether you want a POP or IMAP account
    Try that - delete the account - you will not lose your emails in there
    Then re add and follow the steps I recommended and see if that solves your issue

  • HT4946 by mistake my contacts are deleted from iphone and the pc which itunes installed is corrupted, i have the itunes backup folder,is this possible to restore the contacts from my old itunes backup folder to iphone!?

    by mistake my contacts are deleted from iphone and the pc which itunes installed is corrupted, i have the itunes backup folder,is this possible to restore the contacts from my old itunes backup folder to iphone!?

    unless you had them synced with icloud or some other email account, very unlikely

  • Why is it on the photo app is that when you add your photos to new albums and when you are deleting from camera roll it will delete photos from everywhere so therefore once your photos are in the albums you have chosen you cannot delete f

    Why is it on the photo app is that when you add your photos to new albums and when you are deleting from camera roll it will delete photos from everywhere so therefore once your photos are in the albums you have chosen you cannot delete from camera roll

    Your photos are actually all in the Camera Roll.  The album you create only contain pointers to these pictures.  Albums are like music playlists; when you delete a song from the playlist it doesn't delete the song from your music library.  But when you delete a song from your music library it will also be deleted from any playlists that it may have been in as well.

Maybe you are looking for

  • Speed on PC alot slower than on mobile devices

    Hi, I had infinity installed today and am achieving 75down20up on all of my mobile devices. However my PC will not get over about 38 down and 15 up. This is despite me trying wired/wifi and powerline adaptors. Any advice? I am a fairly competent PC u

  • Object reference NULL exception is occuring at the time of iterating the projectCustomFieldRows

    Hi , I'm gettign object reference NULL exception in the following for each statement.  Please help me to resolve this issue. foreach (SvcProject.ProjectDataSet.ProjectCustomFieldsRow row in prjDataSetValues.ProjectCustomFields.Rows)                  

  • Installing the northbrigde fan

    Heyo!  I'm finally installed (or tried to) my northbridge fan, but it's not working.  It does work, as I attached to my other computer.  However, on my board (KT6 Delta LSR) do I have to set it up in the bios?  However, I haven't found anywhere to do

  • SQL Script working differently with 8i and 9i

    Hi I am facing strange problem with my simple SQL script called from a shell script. It bahaves differently with ORACLE 8.1.7.4 and 9.2.0.1. The machine is same. sqlplus -s / @Tech.sql WKC625 11 11 '11 22' "" This is working with 9i but it does't wor

  • Exporting rtf Files - Lines are incorrect

    I am building a report that requires that I export various Crystal Reports (Version X1 Release 2) and then I will need to insert these files at various points within a Word 2007 document. The problem I'm having is finding an export format that will o