How do I find out the date of creation and last modification of the current page being viewed through Firfox 3.6.18?

I thought that by using the Tools function - Page Info, that this would give the information. It does not. What do I need to do?

I thought that by using the Tools function - Page Info, that this would give the information. It does not. What do I need to do?

Similar Messages

  • How can I find out the current platform type?

    Hello,
    I want to find out the platform type (in the format of v$transportable_platform.platform_type) of a running Oracle instance (on 10g2 and 11g1). The v$transportable_platform shows a list of all supported platforms, and I want only the type that is encoded in the datafiles - v$datafile does not provide me such information.
    Thank you,
    Adrian

    AdrianM wrote:
    Hello,
    I want to find out the platform type (in the format of v$transportable_platform.platform_type) of a running Oracle instance (on 10g2 and 11g1). The v$transportable_platform shows a list of all supported platforms, and I want only the type that is encoded in the datafiles - v$datafile does not provide me such information.
    Thank you,
    AdrianDear Adrian, use the following query:
    select PLATFORM_NAME from v$database;

  • How can I find out the current operating temperature of my phone?

    IS there any app or setting to be able to monitor the operating temperature of my iPhone?

    Perhaps if you told us why you need that information, we could offer some alternative suggestions.

  • How to find out the current hostname?

    How do I find out the current hostname for a given SoaSuite installation?
    Peter

    You can check the WSDL of any of your BPEL processes on BPEL console.

  • How can I find out the date of a movie I am trying to pre-order if the date is not available/showing in the "manage pre-order" section?

    How can I find out the date of a movie I am trying to pre-order if the date is not available/showing in the "manage pre-order" section?

    Thanks so much for your reply King_Penguin. No, sadly there is not indication of the expected release date on the film, it's no where to be found. I have also tried to look in other places online, but no luck. I guess your latter statement jives more with my situation, that  being the studio/rights-holder hasn't feel inclined to provide the date.

  • How do i find out the tables (data)effected in a schema after a particular time stamp

    how do i find out the tables (data not structure)effected in a schema after a particular time stamp?
    pls email in [email protected]

    You can't do that. That would be a real security risc.
    /KAj

  • How do I find out the date in which I registered my imac?

    How do I find out the date in which I registered my imac?

    It doens't really matter what date you registered it. However if you are looking to see when your expiration on AppleCare is/was it is 3 years from the original date of purchase. You can use the Apple Online Service Assistant afer you input the serial number click the link that says See your service and support coverage.

  • I have recently got a new replacement iPhone 4.  since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening

    I have recently got a new replacement iPhone 4.  Since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening?  Some nights the usage is 150 meg!

    You can not access the backup directly.
    Did you restore your replacement from this backup?
    If so then you already have everything in the backup on your device.
    If not, you can wipe the device and restore from this backup:
    Settings > General > Reset > Erase All Content & Settings
    What is it you are worried about losing that isn't already on your current device?

  • APPLE CARE - How do I find out the date of purchase of my mac?

    Can anyone point out how do I find out the exact date of purchase of my mac? I would like to purchase the apple care extended warranty and I do not recall the exact date of purchase of my mac...just before or after a full year...? Can I look it up anywhere?
    Many thanks in advance for your help.
    Max

    You can go to this site,
    https://selfsolve.apple.com/GetWarranty.do
    it tells you when your warranty expires which is 1 year after you purchased it, thats possibly the easiest way, but if you bought it from a store it may be different as it may be the date they purchased it.
    With the extension program, if i purchase one now, my MBP was purchased april last year, will the extended warranty ad onto the date i purchase the extension program or from april last year when i purchased the mbp? I'm wondering because if purchase it now that effectively makes it covered for warranty for up to 4 years!

  • How do i find out the purchase date and my coverage plan?

    how can i find out the purchase date and my coverage plan on my ipad?

    Try here for the warranty coverage. Your date of purchase would be tied to wherever you bought the device.
    https://supportprofile.apple.com/

  • How do I find out the date and time a picture was taken on my Ipad?

    How do I find out the date and time a picture was taken on my Ipad?

    Photo Manager Pro
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%202/7a2b3650710f4bded81 ab75dda6a3ee5.jpg

  • How do i find out the tables effected in a schema after a particular time stamp

    how do i find out the tables effected in a schema after a particular time stamp?
    pls email in [email protected]

    If you are doing a reload every time then you can issue following commands to clear data from cube.
    lmt name to all
    allstat
    clear all from <cubename>prttopvar
    You can wrap above commands in pl sql procedure using dbms_aw.execute package and execute it before cube load starts. Instead of clearing it from whole cube you can clear only from one partition also. Just take a look at clear command in olap DML 10.2 reference.
    Thanks,
    Brijesh
    Edited by: Brijesh Gaur on Aug 10, 2010 6:47 AM

  • How do I find out the ID of a reminder created with an applescript?

    I created an applescript to create a reminder from Quicksilver, but I want it to show the reminder once it has been created if Reminders was already open. If I use this, then another reminder with the same name sometimes gets shown. How do I find out the ID of a reminder when I create it and set it to a variable so that it will select the reminde I want it to, and if this is not possible, how should I do it?
    Here is the applescript:
    using terms from application "Quicksilver"
              on process text reminderData
                        if reminderData is "help" then return "Syntax: \"Name:Priority Time Date List Notes\""
                        set isName to true
                        set isPriority to false
                        set hasBeenPriority to false
                        set priorityEntered to false
                        set isTime to false
                        set hasBeenTime to false
                        set timeEntered to false
                        set isDate to false
                        set hasBeenDate to false
                        set dateEntered to false
                        set isList to false
                        set hasBeenList to false
                        set listEntered to false
                        set isNotes to false
                        set reminderName to ""
                        set reminderPriority to ""
                        set reminderTime to ""
                        set reminderDate to ""
                        set reminderNotes to ""
                        set reminderList to ""
                        set reminderDataCharacters to the characters of reminderData
                        repeat with i from 1 to number of items in reminderDataCharacters
                                  set currentItem to item i of reminderDataCharacters
                                  if isName is false and hasBeenPriority is false then set isPriority to true
                                  if hasBeenPriority and hasBeenTime is false then set isTime to true
                                  if hasBeenTime and hasBeenDate is false then set isDate to true
                                  if hasBeenDate and hasBeenList is false then set isList to true
                                  if hasBeenList then set isNotes to true
                                  if isName then
                                            if currentItem is ":" then
                                                      set isName to false
                                            else
                                                      set reminderName to reminderName & currentItem
                                            end if
                                  end if
                                  if isPriority then
                                            if currentItem is "!" or currentItem is "-" then
                                                      if currentItem is "!" then set reminderPriority to reminderPriority & "!"
                                                      set priorityEntered to true
                                            else
                                                      if currentItem is " " and priorityEntered then
                                                                set isPriority to false
                                                                set hasBeenPriority to true
                                                      end if
                                            end if
                                  end if
                                  if isTime then
                                            if currentItem is " " then
                                                      if timeEntered then
                                                                set isTime to false
                                                                set hasBeenTime to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderTime to reminderTime & currentItem
                                                      set timeEntered to true
                                            end if
                                  end if
                                  if isDate then
                                            if currentItem is " " then
                                                      if dateEntered then
                                                                set isDate to false
                                                                set hasBeenDate to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderDate to reminderDate & currentItem
                                                      set dateEntered to true
                                            end if
                                  end if
                                  if isList then
                                            if currentItem is " " then
                                                      if listEntered then
                                                                set isList to false
                                                                set hasBeenList to true
                                                      end if
                                            else
                                                      if currentItem is not "-" then set reminderList to reminderList & currentItem
                                                      set listEntered to true
                                            end if
                                  end if
                                  if isNotes then set reminderNotes to reminderNotes & currentItem
                        end repeat
                        if reminderDate is not "" then
                                  if reminderTime is "" then set reminderTime to time string of (current date)
                        end if
                        if reminderTime is not "" and reminderTime does not contain "am" and reminderTime does not contain "pm" then
                                  try
                                            if (item 1 of the characters of reminderTime) as number is greater than or equal to 8 and (item 1 of the characters of reminderTime) as number is less than or equal to 11 then
                                                      set reminderTime to reminderTime & "am"
                                            else
                                                      set reminderTime to reminderTime & "pm"
                                            end if
                                  end try
                        end if
                        try
                                  set reminderDateAndTime to date (date string of (date (reminderDate & "/" & last word of (date string of (current date)))) & " " & time string of (date reminderTime))
                        on error
                                  set reminderDateAndTime to false
                        end try
      createReminder(reminderName, reminderPriority, reminderNotes, reminderList, reminderDateAndTime)
                        tell application "Quicksilver" to show notification "The reminder was created successfully" text "Quicksilver successfully created your reminder."
              end process text
              on createReminder(theName, thePriority, theNotes, theList, theDate)
                        if thePriority is 1 then set thePriority to 9
                        if thePriority is "!" then set thePriority to 9
                        if thePriority is 2 then set thePriority to 5
                        if thePriority is "!!" then set thePriority to 5
                        if thePriority is 3 then set thePriority to 1
                        if thePriority is "!!!" then set thePriority to 1
                        tell application "System Events"
                                  if exists process "Reminders" then
                                            set wasOpen to true
                                  else
                                            set wasOpen to false
                                  end if
                        end tell
                        tell application "Reminders"
                                  if theDate is false then
                                            try
      make new reminder at list theList with properties {name:theName, body:theNotes, priority:thePriority}
                                            on error
      make new reminder with properties {name:theName, body:theNotes, priority:thePriority}
                                            end try
                                  else
                                            try
      make new reminder at list theList with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                            on error
      make new reminder with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                            end try
                                  end if
                                  if wasOpen then
      show reminder theName
                                  else
                                            quit
                                  end if
                        end tell
              end createReminder
    end using terms from

    This seems to find the ID, which is sort of the answer to my question, but I still don't seem to be able to use it to show to right reminder. I get this error:
    error "Reminders got an error: Can’t make reminder id \"1E436B16-561C-4F88-8CA6-78029BE68BBF\" into type integer." number -1700 from reminder id "1E436B16-561C-4F88-8CA6-78029BE68BBF" to integer
    What is wrong, and how should I fix it?
    Here is the createReminder block now:
    on createReminder(theName, thePriority, theNotes, theList, theDate)
              if thePriority is 1 then set thePriority to 9
              if thePriority is "!" then set thePriority to 9
              if thePriority is 2 then set thePriority to 5
              if thePriority is "!!" then set thePriority to 5
              if thePriority is 3 then set thePriority to 1
              if thePriority is "!!!" then set thePriority to 1
              tell application "System Events"
                        if exists process "Reminders" then
                                  set wasOpen to true
                        else
                                  set wasOpen to false
                        end if
              end tell
              tell application "Reminders"
                        if theDate is false then
                                  try
                                            set theReminder to make new reminder at list theList with properties {name:theName, body:theNotes, priority:thePriority}
                                  on error
                                            set theReminder to make new reminder with properties {name:theName, body:theNotes, priority:thePriority}
                                  end try
                        else
                                  try
                                            set theReminder to make new reminder at list theList with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                  on error
                                            set theReminder to make new reminder with properties {name:theName, body:theNotes, remind me date:theDate, priority:thePriority}
                                  end try
                        end if
                        set theID to the id of theReminder
                        if wasOpen then
      show theID
                        else
      quit
                        end if
              end tell
    end createReminder

  • How can i find out the table hierarchy

    Hi experts,
    I have one doubt. how can i find out the table hierarchy in the particular schema.
    Let me explain my requirement in detail.. In my Database i have nearly 250 table each table have it's own temporary table(for authorization purpose we are maintaining the temporary tables) for each day i have to clear the temporary table data.
    All temporary table connected with each other. i mean all the table having foreign key relationship.. while i attempt the delete the data from the temporary table it showed ORA-02292: integrity constraint  violated - child record found.
    So can any one please tell how can i delete the child table record first and then parent record table record.
    Thanks in advance
    Arun

    CREATE OR REPLACE FUNCTION get_child_tables (
    ptable VARCHAR2,
    powner VARCHAR2 DEFAULT 'SCOTT',
    plevel NUMBER DEFAULT 10
    RETURN stringarray
    -- -- create this ON SQL*PLUS "CREATE OR REPLACE TYPE STRINGARRAY AS TABLE OF VARCHAR2(50);"
    -- AUTHID CURRENT_USER
    PIPELINED
    AUTHOR DATE VERSION COMMENTS
    ======================================================================================
    [email protected] 26-OCT-2009 1.0 Developed to ease developers effort to find Nth level of Referential integrity
    ======================================================================================
    -- PURPOSE -> To find PARENT=> CHILD relational TABLE(S) in Oracle upto a depth max N Level.
    --SYNTAX TO USE
    SELECT * FROM TABLE( get_child_tables('DEPT','SCOTT',3)); Store this query in a file for your use
    SELECT * FROM TABLE( get_child_tables('EMPLOYEE')); Store this query in a file for your use
    -- RESULTS looks as below
    --1 => DEPT
    --2 => EMP
    --2 => EMP2
    --3 => EMP_CHILD
    --3 => EMP2_CHILD
    -- and so on
    --This can be leveraged to use in any oracle database REGION 10g having and above.
    --This FUNCTION gives formatted result of the Oracle 10g Hierarchical query result coded in the cursor
    --to find MASTER => CHILD relational TABLE(S) upto a depth max 10 Level.
    --The result of the PIPELINED function can be retrieved using Oracle new operator
    --TABLE(array name) in SQL query.
    --Due to the AUTHID CURRENT_USER compiler directive any user can use based on his/her access privileges on the database.
    --GRANT EXECUTE ON SCOTT.get_child_tables TO PUBLIC;
    --CREATE OR REPLACE PUBLIC SYNONYM get_child_tables FOR SCOTT.get_child_tables;
    IS
    atname stringarray := stringarray ();
    -- create this ON SQL*PLUS CREATE OR REPLACE TYPE STRINGARRAY AS TABLE OF VARCHAR2(50);
    vlevel NUMBER;
    vtname VARCHAR2 (50);
    nindex NUMBER := 0;
    bprocessed BOOLEAN := FALSE;
    CURSOR c1 (powner_in IN VARCHAR2, ptable_in VARCHAR2, plevel_in NUMBER)
    IS
    SELECT LEVEL, LPAD (' ', (LEVEL - 1) * 2, ' ') || pt AS "TNAME"
    FROM (SELECT a.owner w1, a.table_name pt, a.constraint_name c1,
    a.r_constraint_name r1, b.owner w2, b.table_name ct,
    b.constraint_name c2, b.r_constraint_name r2
    FROM all_constraints a, all_constraints b
    WHERE a.constraint_name = b.r_constraint_name(+)
    AND a.owner = b.owner(+)
    AND a.owner =
    UPPER (powner)
    -- Change Owner here while testing
    --AND A.r_constraint_name IS NULL
    AND a.constraint_type IN ('P', 'R')) v1
    START WITH pt =
    UPPER
    (ptable)
    -- Change your master table here while testing the QUERY
    CONNECT BY PRIOR ct = pt AND LEVEL <= plevel;
    -- Change lavel here while testing
    BEGIN
    atname.EXTEND;
    atname (1) := 'NOTHING';
    OPEN c1 (powner, ptable, plevel);
    LOOP
    bprocessed := FALSE;
    FETCH c1
    INTO vlevel, vtname;
    IF nindex > 1 AND atname (atname.LAST - 1) = vtname
    THEN
    --DBMS_OUTPUT.PUT_LINE('2 ==== vtname  ' ||vtname || '   '|| atname.count|| '   '||atname.last ||  '   '||atname( atname.last-1));
    bprocessed := TRUE;
    END IF;
    IF NOT bprocessed
    THEN
    nindex := nindex + 1;
    atname.EXTEND;
    atname (nindex) := vtname;
    PIPE ROW (vlevel || ' => ' || vtname);
    DBMS_OUTPUT.put_line ( ' **** nindex - atname( nindex) '
    || nindex
    || ' - '
    || atname (nindex)
    DLOG('ADDING ',vTname); A LOGGING ATONOMUS PROCEDURE FOR DEBUG PURPOSE
    END IF;
    EXIT WHEN c1%NOTFOUND;
    END LOOP;
    CLOSE c1;
    FOR i IN 1 .. atname.COUNT
    LOOP
    DBMS_OUTPUT.PUT_LINE('atname (i) ' ||atname (i));
    END LOOP;
    RETURN;
    EXCEPTION
    WHEN no_data_needed
    THEN -- THIS EXCEPTION HAS TO BE THERE TO GET THE FUCTION WORKABLE
    DBMS_OUTPUT.put_line (SQLERRM);
    RETURN;
    --SELECT * FROM TABLE( get_child_tables('TB_XOP_LETR_TEMPLATE','OPS$CMS',5));
    END get_child_tables;
    Edited by: user3066657 on Jul 21, 2011 8:42 AM
    Edited by: user3066657 on Jul 21, 2011 11:26 AM

  • How can I find out the first intial row in VA02-output transaction??

    How can I find out the first intial row in the screen which appears during sales order change (VA02) >>enter the sales order number >>after the first screen appears >>in the menu bar go to EXTRAS>>OUTPUT>>HEADER>>EDIT??
    I have to find out the first row in the OUTPUT column which is empty,then populate it with some data using BDC.
    usefull answers will be rewarded.
    regards,
    Shashank .

    Pass the sale order number in the object key of NAST table,
    if u get 3 entires, then u need to place ur entry in the fourth row in that table control thru BDC.
    I think u got the logic.
    Regards,
    Sujatha.

Maybe you are looking for