Modification date of every field

Hi gurus,
I need to get the date of modification of every field in a specific table. I'm working under Oracle9, and the undo retention is too small to try select ... as of ...
Restoring is not an option. I have been told that there is a way to find when was modified every field on a table, but I can't find the solution.
Any help would be appretiated.
Regards,
Mario Alcaide

Hi,
take a look at LogMiner
regards
vlado

Similar Messages

  • What is changing the modification date of every folder?

    Almost every folder and subfolder on my hard drive has the same modification date and time but they were not actually modified. The modification dates on individual files within are still unique. I looked around in the logs for some event at the date and time but couldn't find anything. What could cause this?

    Hi,
    take a look at LogMiner
    regards
    vlado

  • Acces to data of every field in a table using a loop

    Hello:
    I have the next code:
    // Calling remote function
    proxy.Z_Hrpfpa00105("XX", "45", out sts, ref tIVAEmp);
    foreach (ZHRRESNOM row in tIVAEmp)
      { Console.WriteLine("{0} …", row.Desc2, row.Betrg, …); }
    Assuming that tIVAEmp has 100 fields I need to build some loops during Console.WriteLine process, so I asked for your help for one part of the solution:
    // Getting the field names and lengths of an RFC Table
    Type structureType = tIVAEmp.GetElementType();
    SAPField[] fields = SAPStructure.GetSAPFieldsSchema(structureType);
    // Verifying
    foreach (SAPField row in fields)
        Console.WriteLine(" - ", row.FieldName,  row.FieldLength);
    It worked, but now I can´t find the connection between SAPField and the content of every RFC Table field for every record,  my mind is in blank and a I need  help … how can I do in C# something similar to:
    foreach (ZHRRESNOM row in tIVAEmp)
    +// The next is pseudo-code
       for every field F in fields
         { stri += contents of row, column F }
       Console.WriteLine(“”, stri);+</i></i>
    Thanks again

    E.g
    proxy.Z_Hrpfpa00105("XX", "45", out sts, ref tIVAEmp);
    Type structureType = tIVAEmp.GetElementType();
    SAPField[] fields = SAPStructure.GetSAPFieldsSchema(structureType);
    foreach (ZHRRESNOM row in tIVAEmp)
      foreach (SAPField field in fields)
        Console.WriteLine("{0}: {1}", field .FieldName, row[field.FieldName]);
    Accessing fields by name may be a little bit slow. Alternatively you can access it by index, which is faster:
      for (int i=0; i<fields.Length; i++)
        Console.WriteLine("{0}: {1}", fields<i>.FieldName, row<i>);

  • To display "modified" by and "modifed date" and the end of every sharepoint page

    Hi there,
    I want to display
    "modified" by and "modifed date" and the end of every sharepoint page and I have as many as 2000 pages
    I have the code for it as below which I have placed in my master page
    <SharePointWebControls:DateTimeField FieldName="Modified" EnableViewState="true" Visible="true" runat="server" ControlMode="Display"/>by
    <SharePointWebControls:UserField FieldName="Modified By" Visible="true" runat="server" ControlMode="Display"/>
    The problem is I am not understanding under which div should I place it to be able to see it at the end of the page.
    Please suggest.

    Hi,
    According to your description, my understanding is that you want to insert the two fields at the end of the page by inserting the corresponding controls into the master
    page.
    The figure below will show how to insert code into master page:
    At the end of the page, it will be:
    Thanks,
    Dean Wang

  • Can I populate a text field in one PDF with the modification date of a different file ?

    Rather convoluted problem here but I'm trying to place a text field on a PDF document that serves as the main menu page for a library of interlinked PDF documents
    The complete library contains over 7,000 files and additions are added and documents changed almost daily.
    We currently use batch files to open the main menu from it's shortcut and this runs a check on a sync log file (.txt) to ascertain when the last time the user synchronised with the server to get the latest copy of the files.
    Between a certain time range they are told how long it has been since they sync'ed and are offered the option to sync before opening, after a prescribed timeframe they cannot enter without synchronising. We use Allways Sync to conduct the file synchronisation with our mother files on our server.
    What I'd like to do is take advantage of Allways Syncs automatic synchronisation options to synchronise on log on and at prescribed idle periods there after.
    This works fine but I'd like the text field on the main menu PDF to say when the last synchronisation took place - easy if the main menu is the last file modified .. just use info.modDate.
    However, the main menu is rarely modified therefore I wish to import the text to populate the text field from a different file.. either by interrogating the other files modifictaion data (though I doubt Acrobat can do this) or by simply importing some text stored in another file (a .txt file?) which has previously been created by batch file commands.
    Any assistance would be greatly appreciated.
    Regards,
    Nifty Styles
    (Norfolk, England)
    P.S.  I'm using Acrobat 8.3.1. Professional on Windows XP (SP3).

    Thank you for all your help above.
    Just to confirm your advice, am I right with the following conclusions? :
    1. The script (function) to fill the text field with the modification date of a different PDF file needs to be stored in a folder level .js file.
    2. The document containing the text field needs to call the .js function either within the document script or within the custom script property of the text field itself.
    Further to that can you just advise on the syntax for accessing the modification date of the other document.
    Do I need to assign a variable to the address of the file to be used, and then use this variable in the text form filling script (as below) or can I use a direct file reference at the .modDate command.
    var LastSync = "C:\sync\bin\lastsync.pdf";
    var strMsg = util.printd("h:MM tt",LastSync.modDate) + " on ";
    strMsg += util.printd("dddd, d mmmm, yyyy",LastSync.modDate);
    this.getField("LastSyncDate").value = strMsg;
    If the syntax is totally different to the above I would be very grateful for some guidance in the right direction.
    I much appreciate your time to help me ... I'm almost there.
    Kind Regards,
    Nifty

  • How can I alter a calendar script to place progressive dates on every day in the calendar year?

    Is there an easy way either to alter the calendar script or create something that will allow for variable text in each day of the year?
    I am creating a calendar for a cattle rancher, and he wants to include a gestation calendar in the design.
    So...instead of the Julian date on every caledar day, he would like to include the date that a calf will be born if the cow had been bred on a particular day.  For example:  On the calendar date, January 1, in that box, another smaller date will appear - 10/9, On January 2 - 10/10 and so on. But, I need this progression to continue throughout the whole year.
    I have attempted to manually enter each date in a separate table and super impose it over the calendar, but this is very slow and very tedious. There has to be a faster way.
    I am comfortable looking at code and can often times figure out which fields to change, but I am a bit lost on this one. Where do I start?
    Please help!
    Thanks!

    That helped, but still did not solve the "continous scroll" question.
    I did however discover that if you go to Search and type in a "common" letter like "s", a Continuous List view will appear.
    Any further help on how to do this as a default view would be appreciated from any and all.
    Thanks for the help and for the link paulcb.

  • Project Server 2010 - Modification date and name of the person who made the last change in the project

    Hello everybody
    I'm with a doubt.
    I got in the business
    environment Project Server 2010 and
    would like to get the publication date,modification
    date and name
    of the person who made
    the last change in
    the project. It is possible
    to doby the native
    resources or is
    there any query in
    SQL Server to perform a
    query of this information.
    Thank you.
    Obrigado por contactar o fórum Microsoft Technet!

    Hi Hezequias,
    You can get the ProjectModifiedDate column in MSP_EPMProject_userView in the Reporting DB where you can
    get the data based on the projectUID. 
    The "last saved" date in the draft DB (be aware that querying in the draft DB is not supported by MS).
    For the "last modified by", I think it is not stored in any place.
    But you can develop custom code upon publishing the project (Event BeforePublish), writing the current
    date and username automatically into a custom enterprise field.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Creation and Modification dates for android file system

    Hello all, I am working on a project and i noticed a particular scenario where i'm getting an error everytime i try to run the code below on my android device;
                    var file:File=File.applicationDirectory.resolvePath("amf.js");
                    var modDate:Date;
                    var createDate:Date;
                     if(file.exists)
                            try
                                       modDate=file.modificationDate;
                                       credDate=file.creationDate;
                                       trace("Modification date: "+ modDate.toString()+"\nCreation date: "+credDate.toString());
                             catch(e:Error)
                                      trace(e.message+": Somehow android OS CANNOT READ mODIFICATRION AND CREATING DATES FOR FILES");
    Every time i run this on Adobe AIR's Mobile emulator, the correct dates are show up properly(Possibly because the emulator is running on Windows) but when i switch the debug to the device, the statement in the catch block executes. The real error says "Error #3003: File or directory does not exist."
    Am i missing something or is this a normal behaviour which i have to find a work around for? The modificationDate and the creationDate are all properties of the FileReference class which i didnt use to instanciate the file object because i wasnt uploading or downloading anything.
    Any form of tip will be much appreciated.
    Thanks.

    I run into the same problem while working on some sort of file synching task.
    Trying to read the file.modificationDate or creationDate results in an error: "Error #3003: File or directory does not exist."
    I have obeserved that this only happens for files that were packaged with the app (and placed in the File.applicationDirectory).
    Files that my app has downloaded and saved to the device (File.applicationStorageDirectory) do have a valid creation date and modification date.
    Maybe the File.applicationDirectory has different rights?
    Does anybody have a solution or workaround for this?

  • Need a pipe delimiter after every field in the file on application server

    Hi ,
    i have to transport data in internal table to a file on application server.
    I have done this successfully. But the problem is i have to put a pipe
    delimiter after every field in the file on application server.
    Could yoe plz help in  this issue.
    Thanks & Regards
    Suresh kumar D

    Hi Should,
              I think the below code should solve your problem as i also had  a similar type of requirement and this was the code i had used in my program.
      FIELD-SYMBOLS: <FS> TYPE ANY.
      DATA: L_FLINE TYPE STRING.
    Open file for output
      M_CHECK_SELSCR_FNMS O1 O.
      LOOP AT I_TARGET.
    Write records to file
        DO.
          ASSIGN COMPONENT SY-INDEX OF STRUCTURE I_TARGET TO <FS>.
          IF SY-SUBRC EQ 0.
            IF SY-INDEX EQ 1.
              MOVE <FS> TO L_FLINE.
            ELSEIF <FS> NE C_PIPE.
              CONCATENATE L_FLINE C_PIPE <FS> INTO L_FLINE.
            ELSE.
              CONCATENATE L_FLINE <FS> INTO L_FLINE.
            ENDIF.
          ELSE.
            TRANSFER L_FLINE TO W_SRVR_NM_O_O1.
            EXIT.
          ENDIF.
        ENDDO.
      ENDLOOP.
    Close file
      CLOSE DATASET W_SRVR_NM_O_O1.
      IF SY-SUBRC EQ 0.
        MESSAGE S208(00) WITH TEXT-M02.
      ENDIF.
    Regards
    Sikha

  • Previous data in the field is not comming when we press space bar

    Hi Experts,
    I am faceing 1 issue in module pool programming.i have 10 input fields in a perticular screen,
    when i am pressing Space Key in a perticular input field , for some fields the previous data what i field last time is comming,
    but for some fields it's not comming there, i want it should be with every field.
    Finally i would like to know how to get the previous data what i have entered last time has to come when i will press space key
    in a input field of screen.
    Regards,
    Susheel Joshi
    Edited by: SUSHEEL JOSHI on Apr 9, 2010 4:47 PM

    Have multiple fields the same "name", are some field name or value too long.
    Check your Sapgui settings [[Alt]+[F12]|http://help.sap.com/SAPhelp_nw04/helpdata/en/f9/9f9d427cab0831e10000000a1550b0/frameset.htm] and read OSS notes like  [Note 399180 - SAP GUI input history depending on field (name) length|https://service.sap.com/sap/support/notes/399180]
    Regards,
    Raymond

  • Anyone experience incorrect modification dates with 10.4 server?

    Maybe this is a bug, maybe not, but I have received numerous reports from coworkers of a problem with the finder's 'modification' date for files hosted on 10.4 servers (running 10.4.3 now) in two separate locations. This behavior was not occurring prior to the 10.4 upgrade and it is now happening both via AFP and SMB from 10.4 and 10.3 client machines.
    The way this occurs is when a user simply wants to view a file, a word document for example, they open it, view it and then close it without making any changes (there is no prompt when they close to 'save changes'). In the finder the file will now have it's 'modification' date updated to the time the user closed the file. However, the file was NOT modified when it was closed and so its modification date should have remain unchanged. Also of note, the 'last opened' date remains blank. This does not occur with every file on the server (it largely appears to impact Word, Excel and CAD files) but it is sufficiently easy to replicate that it has inevitably started to cause a great deal of confusion.
    Is this something that other users have experienced? Is there a setting tucked away in AFP to correct this or is it a bug that hasn't been addressed? I may have missed it, but I am surprised I've not seen any other posts about this.
    Thanks -- George
      Mac OS X (10.4.3)  

    I have also seen this problem, and heard of it at other locations. It seems to have started for us after upgrading the file server to 10.4. We have clients running 10.3.9 and Office 2004. The modification date change only occurs when the user is not the owner of the file, but has read access via "group" or "other" privileges. There is some traffic in the microsoft mac word newsgroup about this issue (from August 2005!), but no solutions. Anyone with an idea of how best to complain to Apple and Microsoft about this issue is more than welcome to chime in.
    http://groups.google.com/group/microsoft.public.mac.office.word/browse_thread/th read/eaf91f9ff80a4a49/bf412677a14e75d4?q=modification+date&rnum=1#bf412677a14e75 d4

  • Table that contains the change date for every cost element

    Hi everyone!
    Can anyone please help me find a table which contains the change date for every cost element?
    Thanks,Jess

    If you basically want to find out if anyone changed the cost element, you need to use transaction KA05 and enter the cost element and controlling area.
    This would actually bring you whatever field was changed and on double clicking give you the actual change and the date on which the change was made.
    Problem is this change date is actually the creation date of a change document which is in the table CDHDR.Its not like the change date is on any master tables.
    Hope this helps
    Deepa

  • Add one same literal to each and every field in a collection

    I need to add a semicolon to each and every field in my collection (I will afterwards write it to a CLOB and have the data opened in Excel as a CSV file).
    I mean I have a nested table with, say 10 fields. For each index in the collection, I need to build a string wich would be a concatenation of each and every value of all this index's fields - separated by a semicolon.
    Example:
    Say my nested table is my_collec, and it has 10 fields, col1, col2... col10.
    I have obtained my string the hard way - v_string := my_collec(1).col1 || ';' || my_collec(1).col2 || ';' ||... and so forth, till my_collec(1).col10.
    As I said, I have to do this for every index of my collection, so I would do that in a loop, rendering v_string := my_collec(2).col1 || ';' || my_collec(2).col2 || ';' ||... and so forth, till my_collec(2).col10 ... till the my_collec.last.
    Is there any built in method that allows me to loop through all a collection's fields/attributes ?
    Edited by: Veverke on Apr 25, 2010 2:49 PM
    Edited by: Veverke on Apr 25, 2010 2:55 PM

    Can you explain more what you mean with a collection?
    A small, simplified example?
    If not, any suggestions ?Maybe OWA_SYLK can be of use to you.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:769425837805
    More threads:
    http://asktom.oracle.com/pls/asktom/asktom.search?p_string=%22owa_sylk%22

  • DNG file modification date not changed by writing metadata?

    I use LR 2.7 on Windows XP.   To my surprise, I just noticed that writing metadata updates (e.g., new keywords) from LR to the DNG files does NOT appear to update the file modification date, which suggests obvious issues for backup strategies (yes, I understand that a changed modification date introduces other backup issues).   I have verfifed that the metatdata does indeed change in the DNG files, so I am mystified.   Can someone shed some light on this?   Thanks.
    js
    www.johnshorephoto.com

    Yes, I explicitely invoke "save metadata to file".   Furthemore, I have checked the behavior by (a) modifying DNGs in LR; (b) saving the metatdata to the DNG; (c) creating a new LR catalog and importing the revised DNGs.    The metadata changes do show up in the re-imported DNGs (and the metadata field "Metadata Date" correctly shows the recent change).  Morevover, the file sizes do change (wth the metadata changes) even though the modification dates shown in windows explorer do not change.
    However, I just redid the experiment to double check, and discovered an important clue - the mysterious behavior occurs when the DNG files are on a NAS device (in particular a Netgear ReadyNAS Duo.   To summarize:
         - When the DNG files are on a local hard drive, the file modification dates change as expected
         - When the DNG files are non local (i.e., on the network but on a NAS device), the file modification dates do not change even though the file sizes do change;
    What's more, I see the same behavior when accessing the DNGs via Adobe Bridge (CS5) - i.e., if I change the metadata, I'm asked if I want to apply the metadata changes to the DNG, and I say yes (and confirm by looking via Bridge at a copy of the changed file).   On a local disk, the file modificaiton dates change (as do the modification date displayed in Bridge), but if the files are on the NAS, the modification dates do not.
    Any additional thoughts?
    js

  • Why not index every field in a database

    Hello,
    I hope this is not to much of a newbie question. We have a database that is being used by an application. We do not know which fields are queried on, the application allows for any/all field(s) to be searched on.
    Obviously, we can know which fields a particular method is searching on, but there is no requirement for the application developers to keep us up to date on particular query parameters as they add them.
    This is a 10g, soon to be 11g, database. Most of the fields are integer with less than 2 digits.
    My question is, why not simply index every field, or at least every small integer field?
    Thanks,
    Sammer

    user613816 wrote:
    Hello,
    I hope this is not to much of a newbie question. We have a database that is being used by an application. We do not know which fields are queried on, the application allows for any/all field(s) to be searched on.
    Obviously, we can know which fields a particular method is searching on, but there is no requirement for the application developers to keep us up to date on particular query parameters as they add them.
    This is a 10g, soon to be 11g, database. Most of the fields are integer with less than 2 digits.
    My question is, why not simply index every field, or at least every small integer field?
    Thanks,
    SammerIn addition to the unnecessary overhead, there are other considerations that affect whether Oracle will use an index. Just because it is there doesn't mean it will or should be used.
    Think about this:
    You have a table with a particular field, and an index on that field. You want to add up all the values of that field. Do you think it would be faster for oracle to just read all of those rows in the table and add them up, all of the rows in the index and add them up, or read the index, go find the row in the table, read the index, get another random row in the table...
    Now, what if Oracle can read more data at a time if it is getting all the data?
    What if you don't want the data from every row in the table? Are you going to create an index for every combination of columns?
    What if Oracle stores two digit integers no differently than 4 digit?
    What if 99.99% of the values are 0? 100%?
    How does Oracle decide the best way to get the data?
    These are all questions you can look up online. I would strongly suggest starting with the Oracle Concepts manual for the soon to be version. Once you have done that, you may see you don't have to apologize about newbie questions as long as people see you are willing to put some work into letting them help you.
    Some people claim there is no such thing as a stupid question. I think that is just pabulum to keep people from being scared to ask questions when they ought to. The stupid question is the one you ought to have known better before you asked. So your question wasn't a stupid question, but any others you ask now that you know about documentation and online searching may very well be.

Maybe you are looking for

  • HP LaserJet P1006 won't print both sides (duplex)

    I have been using my printer for two years now and haven't had a problem till i needed to print on both sides of the page. It tells me to do all of the steps for it and then at the end it says push the go button or ok and i have no such buttons on my

  • IOS 7.0.4 error

    I update my iphone 5 to ios 7.0.4 and the update crashed and asks to restore, but when I restore it sends the message "The iphone can not be restored. The disk you are attempting to use is full. Removing files and emptying the recycle bin additional

  • Webutil installed but not working

    Hi friends, regarding webutil, I installed webutil as per manual.And add following line in my formwebcfg file. webUtilArchive=d:\oracle\9isuite\webutil\lib\webutil.jar,d:\oracle\9isuite\webutil\lib\jacob.jar. Then attach webutil .pll library in my fo

  • Is there a simple tool to make .cab file to speed up applet downloading?

    I wrote a Swing applet. It can be displayed on IE correctly. However, download the applet takes quite a while. Is there a simple tool (instead of the whole pkg of Microsoft's SDK) which can be used to make a .cab file to speed up IE download? Thank y

  • List all colours in document CS5?

    Hello, Does anybody know if there's a way of getting a list of all the colours and tints used in a document? Swatches were not used by whoever created this document, apparently. Many thanks, Ariel