View all what I have done from a specific start point or time frame ?

While I am Creating A Controlling Area,  and Defining a Cost Center Standard Hierarchy
get a phone call or meeting.   Need to get back to keep going,  is there a way or a T-Code to view all what I have done from a specific start point or time frame ?

Greatly appreciate every single reply from all of you.
I did access T-Code SE10, and attached a screen.
The most confusing thing i have ever seen   
I was hoping for some type of report that looks like an Excel sheet where it can give better details.

Similar Messages

  • I have accidentally "disconnected" from the Internet in Airport Utility. How do I reverse what I have done?

    I have accidentally "disconnected" from the Internet in Airport Utility. How do I reverse what I have done? I clicked on the globe and clicked where it said "connected" and now it says "disconnected" HELP!

    markwmsn, In the Airport Utility on my iPad I clicked on the globe at the top of the screen and over to the side there was the word "Connected". I clicked on it and it changed to read "Disconnected". At that point I started having Internet connection problems. All of the extremes (2) and expresses (6) I have spread throughout my home at first were green, but then began to either turn yellow, like the globe had, or disappear from the screen. Even though the globe remained yellow I went through the house and reset all the other devices. I was sure the problems were caused by my clicking on the word " Connected" and changing it to " Disconnected". I clicked on "Disconnected", but nothing happened. I called and wrote my ISP to ask them to reset the server serving my home. I got a call few hours later telling me that there had been an outage in my area, so I began thinking that perhaps there had been a coincidental occurrence of me clicking "Connected" and there being a service outage in my area. Needless to say I've decided to never click that word again for fear of the problem really being my actions.
    If you can shed light on any of this, I'd be grateful.
    Jay

  • Every page in website is different even though they are the same size!  4 Views 0 Replies Latest reply: Sep 25, 2011 4:23 PM by kellynewmac     kellynewmac Level 1 (0 points) Sep 25, 2011 4:23 PM Can someone please tell me what I have done wrong ?

    Can someone please tell me what I have done wrong>?  Obviously I am new to iweb, and need help.  I recently built a website in iweb with only 5 pages, and I made the height, width, & all of the specs regarding the page size exactly the same, but they all load as different sizes on the website.  Also the text i typed loads right away, and the images take forever to load with each page when i look at it on a pc, and not mac.  Can someone please help me!!

    Obviously I am new to iweb, and need help.
    And one of your Services is Webdesign?
    Small consolation : iWeb is a very advanced piece of software. So advanced that even highly skilled professionals have difficulty understanding and using it.
    Anyway, your pages are NOT the same size by design. Which can clearly be seen. But also by checking the source of the pages.
    The Home page is 665px wide and the Contact page is 820px wide. That doesn't happen by magic. It's user induced.
    So do what I do : pay attention to every tiny detail. Especially when it's your business. No excuse.
    Here are some sample Sites :
         http://www.wyodor.net/mfi/
    You can download Domain files for your pleasure to study and use here :
         http://www.wyodor.net/mfi/Maaskant/How_To.html
         http://www.wyodor.net/mfi/size/768-946.html

  • How do I send a customer a link so that he can view what I have done so far on his website?

    I am doing my first website with Dreamweaver and I don't know how to send/email my customer a link for him to review what I have done so far ?
    Could someone please offer me advice? Thanks
    Looking forward to getting replies...

    Upload (PUT) your files to a Web server and send him the URL to a page on that server. A URL would look like this:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7eb 4a.html
    That particular URL goes to the DW help for:
    Getting and putting files to and from your server
    Mark A. Boyd
    Keep-On-Learnin' :-)
    This message was processed and edited by Jive.
    It shall not be considered an accurate representation of my words.

  • All my mail have disappeared From my mac and my iOS devices. Seemingly from the iCloud server as well. How can I recover them?

    All my mail have disappeared from my mac and my iOS devices. Seemingly from the iCloud server as well. How can I recover them?

    Well, you can't since the emails are stored on icloud's mail server.  Try this test, using a computer's browser, log into icloud.com and check the mail page.  If they are gone, then they are really gone.
    Now, I thought I could go into a Time Machine backup and view old emails from a day ago.  Unfortunately, Time Machine doesn't seem to save icloud based email, since regardless of the past date I go to, only the current emails show up, not older ones.  My conclusion is that I wouldn 't be able to recover them from a TM backup.
    What had you been doing on the mac or device that causes emails to be deleted?  (I hope you don't have a family member or friend using the same icloud account - they may have deleted all emails by mistake.)

  • Can someone tell what I have done wrong here trying to pass strings to a

    I have just started programming in java I can't see what I have done wrong here in my code can someone please help me?
    // Thomas Klooz
    // October 10, 2008
    /** A class that enters
    * DVD Info pass the arrays
    * DvdInventory Class and then manipulates the data from there*/
    import java.util.Scanner;// imports a scanner for use by the class
    public class DVDInfo
    public static void main(String args[])
    String theTitle[] = new String[10];// array of titles
    int inventory [] = new int[10];// array of ten for inventory
    int quantity []= new int[10];// array of ten for quantity
    double price []= new double[10];// array for the price of each double
    int count = 0;// variable to track what information is suppose to be passed to class
    System.out.println(" Welcome to DVD Inventory Program!");//Welcome message for the user
    System.out.println();//returns a blank line
    boolean stop = false;// boolean charcter to make program stop
    while(! stop)
    Scanner input = new Scanner( System.in );// creates scanner to use
    System.out.println(" Enter an item name or stop to Quit: ");// prompt user for input
    theTitle[count] = input.nextLine();// assigns the value to Title
    if (theTitle[count].equals("stop"))
    System.out.println();//returns a blank line
    System.out.println(" The DVD Inventory has been entered!");// diplay exit message to
    stop = true;
    } // end if
    else // continue to get data
    System.out.println();//returns a blank line
    System.out.println(" Enter the item number must be greater equal or greater than zero: ");// prompt user for input
    inventory[count] = input.nextInt();// assigns value to inventory
    if (inventory[count] < 0)// continue until proper value has been entered
    System.out.println( " Error no numbers can be below zero!");
    System.out.println(" Enter the item number must be greater equal or greater than zero: ");// prompt user for input
    inventory[count] = input.nextInt();// assigns value to inventory
    }// end if
    System.out.println();//returns a blank line
    System.out.println(" Enter the amount of DVDs you have must be greater than zero: ");// prompt user for input
    quantity[count]= input.nextInt();// assigns value to inventory
    if( quantity[count] <= 0)// continue to proper data is entered
    System.out.println( " Error: you have no inventory for this item ");// error message sent to user
    System.out.println(" Enter the amount of DVDs you have must be greater than zero: ");// prompt user for input
    quantity[count]= input.nextInt();// assigns value to inventory
    }//end if
    System.out.println();//returns a blank line
    System.out.println( " Enter the cost per DVD: ");// prompt user for input
    price[count] = input.nextDouble();// assigns the value to price
    count++;//increaments count 1
    }// end else
    }// end while
    DVDInventory myDVDInventory = new DVDInventory(theTitle,inventory,quantity,price,count); the problem seems to be here because this is where I get error message when I'm trying to pass to class named DVD
    }// end main
    }// end class

    this is the code that is important
    import java.util.Scanner;// imports a scanner for use by the class
    public class DVDInfo
    public static void main(String args[])
    String theTitle[] = new String[10];// array of titles
    int inventory [] = new int[10];// array of ten for inventory
    int quantity []= new int[10];// array of ten for quantity
    double price []= new double[10];// array for the price of each double
    int count = 0;// variable to track what information is suppose to be passed to class
    System.out.println(" Welcome to DVD Inventory Program!");//Welcome message for the user
    System.out.println();//returns a blank line
    boolean stop = false;// boolean charcter to make program stop
    while(! stop)
    Scanner input = new Scanner( System.in );// creates scanner to use
    System.out.println(" Enter an item name or stop to Quit: ");// prompt user for input
    theTitle[count] = input.nextLine();// assigns the value to Title
    if (theTitle[count].equals("stop"))
    System.out.println();//returns a blank line
    System.out.println(" The DVD Inventory has been entered!");// diplay exit message to
    stop = true;
    } // end if
    else // continue to get data
    System.out.println();//returns a blank line
    System.out.println(" Enter the item number must be greater equal or greater than zero: ");// prompt user for input
    inventory[count] = input.nextInt();// assigns value to inventory
    if (inventory[count] < 0)// continue until proper value has been entered
    System.out.println( " Error no numbers can be below zero!");
    System.out.println(" Enter the item number must be greater equal or greater than zero: ");// prompt user for input
    inventory[count] = input.nextInt();// assigns value to inventory
    }// end if
    System.out.println();//returns a blank line
    System.out.println(" Enter the amount of DVDs you have must be greater than zero: ");// prompt user for input
    quantity[count]= input.nextInt();// assigns value to inventory
    if( quantity[count] <= 0)// continue to proper data is entered
    System.out.println( " Error: you have no inventory for this item ");// error message sent to user
    System.out.println(" Enter the amount of DVDs you have must be greater than zero: ");// prompt user for input
    quantity[count]= input.nextInt();// assigns value to inventory
    }//end if
    System.out.println();//returns a blank line
    System.out.println( " Enter the cost per DVD: ");// prompt user for input
    price[count] = input.nextDouble();// assigns the value to price
    count++;//increaments count 1
    }// end else
    }// end while
    DVDInventory myDVDInventory = new DVDInventory(theTitle,inventory,quantity,price,count);
    }// end main
    }// end class The problem seems to be when I try to pass all the variables to the class DVDInventory the first statement after all. I get message that say can't find java. String
    Edited by: beatlefla on Oct 10, 2008 8:20 PM

  • Is there a way I can view all apps I have ever downloaded?

    Is there a way I can view all apps I have ever downloaded? Like some sort of historical list associated to my account?
    It would help a great deal- I restored my phone from a backup after my iphone crashed- but I had downloaded many apps since then, so now I have to re-download all the missing apps. Thing is I cant remember all of them?
    Anone else have the same problem?

    Have you never synced your phone? Syncing puts copies of each app into iTunes for you to manage and have available to sync over when you want.
    Other than that, in iTunes, from top menus (forget which one, think under help) you can access your account and then view purchase history.

  • I am used to that when I open an image in Bridge it will be opened in PS, with all preferenses I have done to the image. Now it opens in PS but without any changes i have don e in Bridge. Also when I open a new image I want it to be opened in Camera Raw a

    I am used to that when I open an image in Bridge it will be opened in PS, with all preferenses I have done to the image. Now it opens in PS but without any changes i have don e in Bridge. Also when I open a new image I want it to be opened in Camera Raw automatically, both if a Jpeg or Raw picture.
    Using PS CC
    Regards BOJ

    <moved from Adobe Creative Cloud to Bridge General Discussion>

  • HT4847 Can i view all that i have backed up in icloud

    CAn i view all that i have backed up in i cloud

    Settings>iCloud>Storege and Backup>Manage Storage>iPhone name. Here you can view WHAT you backuped but not the actual files.
    You can also view some of them on www.icloud.com in a desktop browser.

  • Is there a way to view all favorites on one page from different albums?

    is there a way to view all favorites on one page from different albums?
    I can't seem to figure out how to view all favorites at one time.
    nothing (thus far) is shared.
    paid membership to revel, also.

    oops - apparently you can do this from the app,
    but not from the web login view.

  • If I install Windows 7 on iMac (what we have done many times and it works very good) does windows support the fusion drive?

    if I install Windows 7 on iMac (what we have done many times and it works very good) does windows support the fusion drive?

    Welcome to the Apple Support Communities
    Fusion Drive is created by software on OS X. On a computer with Fusion Drive, Windows is installed on the HDD, but when you install the Boot Camp drivers, you will be able to read Macintosh HD, so it looks like it supports Fusion Drive but only for read

  • OK! I am unable to type into any pages documents ... just started doing this. Tried opening new page ... no luck ... thries to edit a current paper... no luck!!! Help, anyone have an idea what I have done?

    OK! I am unable to type into any pages documents ... just started doing this. Tried opening new page ... no luck ... thries to edit a current paper... no luck!!! Help, anyone have an idea what I have done?

    Try a new post in the Pages forum. They would know better then us.
    DALE

  • Unable to view all documents that have no checked in version due to exceeding the library threshold limit

     due to exceeding the library threshold limit , unable to view all documents that have no checked in version

    Hi niles, Here is a page that details how to retrieve all the files and take ownership of them via powershell to check them in:
    http://www.demantprasad.com/2013/05/manage-files-which-have-no-checked-in.html
    Mathieu Desmarais http://www.matdesmarais.com/

  • I do not know what i have done but since yesterday every window i open is only showing up in a basic html format?

    i do not know what i have done but since yesterday every window i open in firefox shows up in basic html format

    hello, please go through the steps covered in [[Websites look wrong or appear differently than they should]] - they contain the most common solutions for the issue you've described...

  • Since updating to iOS08 all my books have disappeared from iBooks, including some I haven't read yet.  Any ideas how I can get them back?

    Since updating to iOS08 all my books have disappeared from iBooks, including some I haven't read yet.  Any ideas how I can get them back?

    Hi Raymond,
    I am having the same issue.  But I can't seem to be able to find my books & PDF's. How did you find them?  I am trying to locate them on my iPad.
    Thanks,
    Lori

Maybe you are looking for