How do you find what objects you modified?

I am leaving my current company soon and they want me to document all objects that I touched.  Is there a simple way to do this?  I am thinking of a program that I can run (create) by searching z-objects (programs, structures, tables, forms, etc...) that I have modified.  Is this possible?
Regards,
Davis

Just in case anybody finds it useful, here is a quick little program that I wrote.  It accepts a user name and a date range.  It then saves the objects in an excel file.
Davis.
*& Report  Z_TRANSPORTED_OBJECTS
REPORT  z_transported_objects.
TABLES: e070.
DATA: t_e070 TYPE e070 OCCURS 0 WITH HEADER LINE.
DATA : BEGIN OF t_e071 OCCURS 0.
        INCLUDE STRUCTURE e071.
DATA : END OF t_e071.
DATA : BEGIN OF t_header OCCURS 0,
       name(30) TYPE c,
       END OF t_header.
DATA: v_pass_path TYPE string.
PARAMETERS: p_user LIKE t_e070-as4user.
SELECT-OPTIONS s_date FOR e070-as4date.
*Get the header details for all transports created by p_user in the date range of s_date
* if s_date is empty (no dates specified) then it will return all transports created by p_user
SELECT * FROM e070 INTO TABLE t_e070 WHERE as4user = p_user AND as4date IN s_date.
*Get the details (objects) in each transport
SELECT * INTO TABLE t_e071 FROM e071 FOR ALL ENTRIES IN t_e070 WHERE trkorr = t_e070-trkorr.
*Sort the table and delete all duplicate entries.  This will leave you with a list of all objects
* which were "touched" by p_user ONLY if p_user created the transport.
SORT t_e071 BY pgmid object obj_name.
DELETE ADJACENT DUPLICATES FROM t_e071 COMPARING pgmid object obj_name.
*Delete all transports which are included as objects in e071.
DELETE t_e071 WHERE pgmid = 'CORR' AND object = 'RELE'.
*Add the header lines for the output file:
t_header-name = 'Request/Task'.
APPEND t_header.
t_header-name = 'Dictionary: Line item'.
APPEND t_header.
t_header-name = 'Program ID'.
APPEND t_header.
t_header-name = 'Object Type'.
APPEND t_header.
t_header-name = 'Object Name'.
APPEND t_header.
t_header-name = 'Object Function'.
APPEND t_header.
t_header-name = 'Lock Status'.
APPEND t_header.
t_header-name = 'Language'.
APPEND t_header.
t_header-name = 'Language Key'.
APPEND t_header.
t_header-name = 'Activity'.
APPEND t_header.
*Save the file in an excel format.
CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'
  EXPORTING
    default_extension = 'XLS'
  IMPORTING
    fullpath          = v_pass_path.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    filename   = v_pass_path
    filetype   = 'DBF'
  TABLES
    data_tab   = t_e071
    fieldnames = t_header.

Similar Messages

  • How can you modify the displayed columns on a Related Information List?

    How can you modify the displayed columns on a Related Information List? For example, how could you add the "Type" column to the List of columns displayed for Service Requests when you are viewing the Contacts Detail page?
    Thanks

    I'd have to say I think this is one of the biggest flaws in the OnDemand system currently. The solution I have come up with is to create reports and put them in webapplets showing the data I want to show. I have then removed the standard Related Info List Objects and added weblinks to create new records as the button on the List object is also gone.
    Keep in mind that doing this does slow things down a little, so it may not work if you have a big user base.
    RWB.

  • How do you modify the web.xml to lock down the pages from a user role

    how do you modify the web.xml to lock down the pages from a user role

    I'll make a stab at your question:
    The following is an example of where a URL is protected within a web.xml deployment descriptor. In this example, the URL /protectedA within the application is protected:
    <!-- security constraints -->
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>protectedA</web-resource-name>
    <url-pattern>/protectedA</url-pattern>
    </web-resource-collection>
    <!-- authorization -->
    <auth-constraint>
    <role-name>sr_developer</role-name>
    </auth-constraint>
    </security-constraint>
    Sun's explaination here:
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/Security4.html

  • How do you modify the default Execute thread count in Weblogic Server 9.2?

    How do you modify the default Execute thread count in Weblogic Server 9.2?
    How can you tune the starting number of weblogic.ExecuteThread on server startup and/or set minimum number?
    Is there an option from the console?
    Please let me know.
    Thanks

    Self tuning will automatically manage the threads but however you can still control the min and max by adding the min and max values for each instance either directly adding in config.xml or through JVM settings
    1) Modifying the config.xml
    Just add the following line(s) to each server definition :
    <server>
    <name>AdminServer</name>
    <self-tuning-thread-pool-size-min>100</self-tuning-thread-pool-size-min>
    <self-tuning-thread-pool-size-max>200</self-tuning-thread-pool-size-max>
    </server>
    2) Adding some JVM parameters
    It's safer the following way :
    add the following option in your command line : -Dweblogic.threadpool.MinPoolSize=100
    Regards
    RR

  • In iMovie, how do you modify the duration of all the clips at once?

    In iMovie, using Mavericks O/S, how do you modify the duration of all the clips at once?

    To set the duration of any clips to be added in the future select the project then "Settings" above the viewer.    Adjust the slider to the right of "Clips" to the desired duration.
    To change clips already in the timeline, select all of the ones you want to change (so they have a yellow border), click on "Adjust" then click the info button (i in a circle).  You will see "Duration:"  Set the time in seconds and press return.
    Geoff.

  • How can I find what apple ID I used to register my iMac when I first booted up? I am being told that by using this ID I will be able to go on to the App store and down load iPhoto at no cost. Is this true? My iMac does not have iPhoto resident on it now

    How can I find what apple ID I used to register my iMac when I first booted up? I am being told that by using this ID I will be able to go on to the App store and down load iPhoto at no cost. Is this true? My iMac does not have iPhoto resident on it now and I only purchased my new iMac in December 2012
    Thanks....

    Launch Keychain Access and click on Login in the left hand pane and then on Passwords.  Next do search for Apple in the search field at the top and click on Apple ID Authenicication in the list that comes up.  That will give you the ID no. and password.
    OT

  • How do I find what table a field is in?

    Hi,
    If I know a field name, how would I search the Data Dictionary to find the table (or tables) that the field is found in?
    For example, I have a program spec that that says field AZSUB is in table MARM, but it is not.  How can I find what table this field is actualkly in?
    Thanks for your help!
    Andy

    Hi Andrew,
    Just goto se11, enter the data element of that field and clisk on the where used list on the application tool bar. You will get all the tables in which the field appears.
    You got find out which would be your appropriate table may be using by the description of the table or the contents or by the links..
    Regards,
    Vinod Kumar

  • I've installed LR on my new Mac - How do I find/what is the name of the file that opens to bring up my existing photos (on my external hd)?

    I've installed LR on my new Mac - How do I find/what is the name of the file that opens to bring up my existing photos (on my external hd)?

    Bookmarks and history are stored together in your profile folder in a database file named places.sqlite. These articles should help with restoring as much or as little of your other profile as you like:
    Locating the folder: [https://support.mozilla.com/en-US/kb/Profiles Profiles | How to | Firefox Help]
    The following article has suggestions for recovering bookmarks: [http://support.mozilla.com/en-US/kb/Lost%20Bookmarks Lost Bookmarks | Troubleshooting | Firefox Help].
    To move more settings, see: [https://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile Recovering important data from an old profile].
    Hope this helps.

  • How do I find what's using my hard drive space

    My wife has a 14" iBook. How do I find what's using all the hard-drive space? It only has a 40GB hard-drive (it's one of the older G3 models) but there isn't a lot loaded onto the HD. There is only 3GB space left. I've gone through every application and utility and document and every folder (document, movie, etc.) and the largest space-hogging folder is iTunes which uses 15GB because of the music. I can't find any singular folder that uses any sizeable HD space. I recently loaded Tiger so I don't know if Tiger uses the rest of the space or if it's just a combo of all the other applications.

    You could download and use WhatSize to see what may be eating up the space.
    With a 40 GB hard drive, you need to keep at least 6 GB free in order to avoid problems.

  • HT4910 how can i find what devices are sync to my laptop as mine is saying 5 i dont no why

    how can i find what devies are synced with my computer as in itunes says 5 i dont have 5

    That information is not available.
    De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.
    For more information on authorization and de-authorization: iTunes Store- Authorize or deauthorize your Mac or PC.

  • How do I find what version of Java I have on my iMac?

    How do I find what version of Java I have on my iMac (OSX 10.9.1)?

    If you installed the Oracle Java runtime, there's a preference pane named Java in System Preferences.

  • How do I find what the various Firefox revisions fix or address?

    How do I find what the various Firefox revisions fix or address?

    hello charlesmiller000, you can refer to the firefox release notes:
    https://www.mozilla.org/en-US/firefox/releases/

  • How do i find what device is ordering songs

    how do i find what device is ordering songs

    In addition to the link Paulcb sent to you, you can find the model of your iPad on the back of the iPad at the bottom in the small print and it will start with an A.
    If it doesn't have any camera on the front then it will be and iPad 1.
    Regards,
    Steve

  • How do I find what operating system I am using on my MacBook?

    How do I find what operating system I am using on my MacBook?

    You are the only one who figured it out.  There are only faded out numbers and no words like Lion or Leopard.  Who would know what the numbers meant? 
    You did and thanks.

  • HT1420 How do I find what computers are tied to my account?

    How do I find what computers are tied to my account?

    Welcome to the Apple Community.
    Tied in what way. If you are referring to authorised computers, there isn't a way to see a list. If you are referring to computers and devices associated with your account, you can see a list in your iTunes account settings on your computer.

  • HT204291 How do I find what my airplay password is?

    How do I find what my airplay password is?

    Welcome to the Apple Community.
    If you've forgotten the passcode, simply turn password protection off and on again on the Apple TV and set a new passcode

Maybe you are looking for

  • Webutil is not working well in the browser

    hi everybody I have a problem in my Forms. First, I was doing Form and I wanted to add picture for item and I want the picture to be saved in database through pressing on button and a browser open and select the image to be saved in database. and if

  • Unable to open Itunes in Windows 7

    Hello... I've got Itunes 9.2, and it will not open in Windows 7 64bit. I've tried removing & reinstalling it but still won't open, no error messages or anything. Any idea why it won't open and how to fix the issue? Thanks........ Glenn

  • Can a full file path be used to open a sql database connection?

    I have a requirement to open an unattached sql server database file with a given path. Can this be done? This would be similar to opening a Jet database using the path as the Data Source.  For example, the path might be "C:\MyFolder\MyDatabase.mdf". 

  • System Restore - Big Problem

    I think I know the answer to this, but wanted to see if anyone had a magic pill . . . I had a system failure and had to restore with no good backup (stupid I know). Is there any way to sync my iPod back to the desktop? I've searched and found how to

  • Approval process is skipping with update user

    Hi, I have approval process before updating a user (the oganization in which the user exists has approvers assigned to it). I am using the default Lighthouse Approval subprocess. But when i try to update a user, the workflow is going inside the "Ligh