I need to show the date of a file

I tried to take a screenshot with command control shift 4 click and drag which would include date created and a thumb. I select the area, hear a
good click, but no save window. Can it be done or should I give up?

Nini Tjader wrote:
Screenshots has nothing to do with Bridge unless you mean taking a screenshot of something IN Bridge that shows the thumbnail and date etc from within Bridge…
Even in that case, the screen shoot of any Bridge window or panel is taken by the Mac OS, not by Bridge.
This screen shot of a thumbnail being displayed by Bridge in the Bridge's Content panel was created by the Mac OS (Command+Shift+4).
Wo Tai Lao Le
我太老了

Similar Messages

  • Need: report showing modification dates for all files in WA

    We're having struggles in our first major product release of BC4J components on OC4j
    using OSCM for version control.
    Mood and release processes are getting more and more extreme as a result of not
    being able to easily manage our release configurations (CM).
    We're desparately in need of a report that shows:
    - what files have been modified VS a configuration name.
    - What files have been modified since I refreshed my WA
    In both we need to be able to print the list.
    Any sql scripts to share or cmd line script would greatly be appreciated!
    Thanks,
    curt

    David,
    Great, I'm making progress! Thanks.
    Yes on the CLI compare of two cfg's, got this working. THANKS
    use of the -fs<myfile> exports this to a printable file too.
    Work in progress:
    - Compare a cfg{N.M} to what's in a pwa or what would be in a pwa if refreshed?
    Experiments here haven't yeilded good results:
    CLI: set workarea myReleaseWA
    CLI: compare -rpmyCfg{1.0} -rpFolderInWA{MAIN;LATEST}
    Some how the directory walking is comparing apples VS oranges and all paths are different.
    - What files have been checked into a branch and I would get if I refreshed my PWA?
    Your SQL above doesn't exactly do this from my experiments.
    The c.spec_entry is null filters on currently checked out files.
    Config. Management may (usually) doesn't care about checked out files, just new checkins that
    a new release would get from a download latest.
    The best I've been able to hack are:
    CLI: set workarea my_release_pwa
    CLI: dir -s-nh-u-pth
    Since dir doesn't support -fs<myfile> or >myfile one needs to cut and past and save to a file
    or use CLI in one shot mode.
    This allows for greping/searching on current month and looking for files newer than the last release date.
    Another SQL based solution that orders the above same info from dir (I'm guessing?) is:
    select w.NAME wa_name
    ,va.changed_by
    ,to_char(va.date_changed,'DDMONYY HH:MI:SS')
    ,va.created_by
    ,to_char(va.date_created,'DDMONYY HH:MI:SS')
    ,jr_name.get_path(c.object_ivid,'VLABEL') obj
    from i$sdd_wa_context c
    ,i$sdd_workareas w
    ,i$sdd_version_associations va
    where w.irid = c.workarea_irid
    and w.name = 'smithc04_commissary_wa'  ---- my pwa
    and va.to_ivid = c.object_ivid
    and c.spec_entry is not null
    and va.date_changed is not null
    order by va.date_changed desc
    /This creates the same report as from dir only sorted conveniently.
    Still the use case question hasn't been precisely answered. I'm still guessing what new files/versions
    would be downloaded vs a release configuration or vs my [release_pwa]?
    I'm alot closer though and thanks,
    curt

  • Need to show a data in weeks for stacked column

      I need to show the data broken down in weeks if you choose the start date and end date.   I have to show in a stacked column chart. I am trying to show the values if you choose for example last month i need to show it by weeks for example 
    week    user name   total approved first approved    last aprovedDate  totalitemsAdded
    week 1   XYZ                 3                10/01/2012       10/05/2012         5
    week2   XYZ                  5                 etc                      etc            
      etc
    week 3 
    Below is the code and the result  i am getting now . 
    Current Results
    UserName TotalApproved
    FirstApprovedDate LastApprovedDate
       TotalItemsAdded
    XYZ            9
               2011-11-19 16:56:49.960
         2011-11-19 18:18:20.783
                   2
    DECLARE @StartDate DATETIME
    DECLARE @EndDate DATETIME
    SET @StartDate = '10/1/2012 '
    SET @EndDate = '10/31/2012'
    ;with Items as(
           SELECT
                  UserName = Profile.Description,
                  TotalItems = COUNT(TransactionID),
                  FirstAddedDate = MIN(UTCDate),
                  LastAddedDate = MAX(UTCDate)
           FROM Transactiondatabase.dbo.transaction
                    JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
           WHERE 
                  Data like '%ItemAdded%'
                    AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
           GROUP BY
                  Profile.Description 
    Approved as
           SELECT 
                  UserName = Profile.Description,
                  TotalApproved = COUNT(TransactionID),
                  FirstApprovedDate = MIN(UTCDate),--Demo
                  LastApprovedDate = MAX(UTCDate)                 
           FROM Transactiondatabase..transaction
                    JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
           WHERE 
                  Data like '%Approved%'
                    AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
           GROUP BY
                    Profile.Description
    Select Distinct Approved.*, TotalItemssAdded = sum(distinct Items.TotalItems)
    from Items, Approved  
    Group by Approved.UserName, Approved.FirstApprovedDate, Approved.LastApprovedDate, Approved.TotalApproved
    using ssrs 2005 

    Hi Sunny04,
    If I understand correctly, you want to display the data by weeks in a stacked column chart. If in this case, we can add a calculated field named week to display the week name, and then group it. For more details, please see the following steps:
    Right-click the dataset to add a calculated field with the values below:
    Name: Week
    Calculated field: =DatePart(DateInterval.WeekOfYear,Fields!FirstApprovedDate.Value,0,0)
    Add Week field to category group area in a stacked column chart.
    Right-click Week field to open the Properties dialog box, modify the expression of Label to like this:
    ="week"&Fields!Week.Value
    Add TotalApproved or TotalItemsAdded field to data area in the chart.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Need solu to Append the data frm different files..Element 'Rec' not expecte

    i need solution to append the data coming from different files.
    sample file is of format
    Header Records
    Data Records
    i need to append the data coming from files to single file which consist of single header and data records from all the four files.
    Using assign activity to append the Data Record. but not able to force the data to write in the target location
    Facing following error..
    Record in the below error is data records. i can view all the appended data put variable.but facing following error Element 'Record' not expected.
    <Record>
    <RecType>1</RecType>
    <SSAppsID>ICD </SSAppsID>
    <TSAppsID>NPS </TSAppsID>
    <FileType>CUSTOMER</FileType>
    <SeqNo>0030</SeqNo>
    <CusNum>50902 </CusNum>
    <CSAppID>ICONS </CSAppID>
    <CusName>YTL Communications Sdn Bhd </CusName>
    <OldIDCardNum/>
    <NewIdentyCardNum/>
    <PassPortNum/>
    <BusinessRegNum/>
    <Police_armyPerNum/>
    <SEGCode>W20</SEGCode>
    <SecCode/>
    <NewSegCode/>
    <IcareMAsterAccNum/>
    </Record>
    </Record>
    </Root-Element>
    </part>
    </PutFilesToTarget_Put_InputVariable>
    </input>
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <bindingFault>
    <part name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'Put_InboxNew' failed due to: Translation Error. Translation Error. Error while translating message to native format. Please make sure that the payload for the outbound interaction conforms to the schema. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part name="detail">
    <detail>Element 'Record' not expected.</detail>
    </part>
    <part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>
    <faultType>
    <message>0</message>
    </faultType>
    </messages>

    ya i am reading the data and writing the data with the same format..
    but i need to append data from different files..eliminating the header from second file..
    i am invoking the write adapter out of the while loop..
    this seems some problem while writing..its looking for data records still..

  • Dumping the data to XML file (Event driven )

    Hi ,
    Can anybody help me on this requirement .
    Whenever there is an updation or change in the HR Master data like insertion of new personnel number or deletion of personnel number then I need to dump the data to XML file . That means I need to make it event driven.
    Will it be possible programmatically ?
    Please give me your inputs.
    Best Regards
    Bhagat.

    Hi Bhagat,
    isn't it possible to use change pointers for this?
    Then in partner profile use an XML file port and it should be done!
    Probably this blog could help you:
    <a href="/people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm">Collecting IDocs without using BPM</a>, have a look at the part where it explains how to write Idoc as XML.
    Hope it helps,
    Kind Regards,
    Sergio

  • Downloading the data to XML file (Event driven )

    Hi ,
    Whenever there is any change or updation in HR master data i need to download the data to XML file. I have written a program to download the data to XML file but i need to trigger this program only when there is a change in HR master data.
    Could somebody tell me how to go about this. Reward points are assured.
    Best Regards
    Bhagat.

    Hi Bhagat,
    isn't it possible to use change pointers for this?
    Then in partner profile use an XML file port and it should be done!
    Probably this blog could help you:
    <a href="/people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm">Collecting IDocs without using BPM</a>, have a look at the part where it explains how to write Idoc as XML.
    Hope it helps,
    Kind Regards,
    Sergio

  • How to set the filter on a report to show the data for the Current Month

    Hi all,
    I am working on a report, which currently has this filter: Date First Worked is greater than or equal to 10/01/2010. This reports show the data for the current month, so at the beginning of each month we have to remember to change the date on the filter.
    Does anyone know what the criteria should say, so that it automatically changes and shows the information for the current month, without us having to go in and change anything?
    Any help would be greatly appreciated!
    Thanks,
    AA

    You need to add a session variable to date fir worked assuming that this is a date field.
    To do this open up the filter on the field then at then press add Variable then "session" and enter the following CURRENT_MONTH into the Server Variable section.

  • I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.  Please help!

    I need help proving the date tag on a photo stored in my iPhoto is from the date it was sent to my iphone/date it was imported into iphoto - and that it is NOT the date the photo was actually taken.   I recieved a photo via text on my iphone and then I synced my iphone to my macbook and now it is in iphoto.  I already know that the date on the photo per the tag that shows up on it in iphoto is NOT the date the photo was actually taken.  I need article or literature or something confirming the tag is from when it was sent to the iphone and/or when it was imported.  I greatly appreciate some assistance!

    All I am trying to do is find something on a forum board or article etc stating that the the date showing in iphoto could be the date it was imported or synced or sent to me and not the actual date taken.
    The date on the photo could be anything because you can edit the date with iPhoto or any of 100 apps, free and paid for. So, the date on the photo will prove nothing, I'm afraid.
    Regards
    TD

  • Showing the Date on the Desktop

    Is there a way to show the date (not just the day of the week and the time) on the desktop? I know I can enter this on Dashboard, but that takes extra clicks for something I want at a glance. I believe this was taken out of OS in an upgrade package, but I am wondering if there is a way now to do this.

    @Rich15, follow the instructions in the link carefully. The general idea is that you need to copy out the "date elements" from the date customization window, then paste them in to the time customization window.
    In System Preferences, Date & Time, International, Formats, Date, Customize, drag the appropriate elements into the box. Arrange them in the order you wish, add spaces, commas, etc.
    [http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat.pn g|http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat.p ng]
    Highlight all of the date elements, (Select with your cursor, or click in the box, then press Cmd-A.)
    [http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat2.j pg|http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat2 .jpg]
    Click cancel, to close the date format window. Click on Customize in the Time area. _+BE SURE YOU ARE ON MEDIUM OR LONG FORMAT!+_ Click on the white box to put your cursor there, then paste in the date elements.
    [http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat4.j pg|http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat4 .jpg]
    Click OK. As the webpage said, Easy Peasy.
    [http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat5.j pg|http://i190.photobucket.com/albums/z242/asatoran/LeopardCustomdatetimeformat5 .jpg]
    See, it wasn't that bad.

  • Not showing the Data in VC application

    Hi I have developed the application in VC.
    It is showing the data some times , it is not showing the data. Can u please let me know what is the problem.
    when i checked using the Test Data service . It is showing the data. Then i have developed step by step, in between the time i use to run the application , it was showing the data. finally i have assigned to some role and user id. then also it is showing the data.
    Next day after i run the application , it is not  showing the data. displaying the message .
    "No Data Found".
    But when i run  the BAPI at the back end R/3 it is giving the data properly.
    Can u tell me what might be the problem
    REgards
    Vijay

    Hi Krishna,
    check the logs in the NWA. It seems that your connection is broken down sometimes, maybe a timeout. How many records does your data service return?
    Check it with external debugging of the BAPI, when you can reconstruct the error.
    Best Regards,
    Marcel

  • Need to change the date of joining of employee

    Hi All,
    I have gone through some threads similar to this subject an also tried to do changes from PA41 but i am facing some problems during the procedure.
    We have transferred some employees to sap system with their original date of joining and payroll was run from some other date for those employees. So i need to change the date of joining of those employees.
    For example : Below is the line items of one employee from table infotype 0.
    End date Start date Changed on
    22.02.2009 19.02.2007 19.02.2009
    31.03.2009 23.02.2009 19.02.2009
    31.12.2009 01.04.2009 14.10.2009
    31.12.9999 01.01.2010 21.01.2010
    Payroll was run from Feb-09 onwards and i want put date of joining for this employee as 23.02.2009.
    I want to know which date i need to change??...When i am trying to change the first start date i.e. 19.02.2007 to my desired start date, but it is not allowing me to do that as end date is smaller.
    Please tell me how would i change the joining date of employee as 23.02.2009 ?.
    Thanks.

    Try this
    22.02.2009 19.02.2007
    31.03.2009 23.02.2009
    31.12.2009 01.04.2009
    31.12.9999 01.01.2010   take this record form PA30  IT0000 Over View (Shif +  F8)  Copy that record and change the Start date
    as 2302.2010  so  another record will be created
    22.02.2010    01.01.2010
    31.12.9999    23.02.2010
    Just try and let me know

  • Import option is not showing the Data Source created using ODBC

    Hi all,
    I'm new to OBIEE, just installed OBIEE 10g in my system with the help of some reply from this Forum (thanks to Kalyan for this).
    Now when I tried to create new rpd, the Import option is not showing the Data source I have created. I have created new Datasource in the SystemDSN tab of the ODBC Administrator window,I have tried this by creating the Datasource in the UserDNS tab as well.
    Mine is Windows 7 Ultimate. The new data source which I have created through the ODBC Administrator window is to connect to SQL 2008 (I'm trying to get some table from SQL 2008 database), I don't have Oracle data base.
    While creating the Data source ODBC Administrator is showing only two drives (SQL Server and SQL Server Native Client 10.0 ) , so I have created the Data source using the SQL Server Native Client 10.0 drive.
    Can some one help me to understand the issue and to solve it.
    Thanks,
    Mithun

    By calling your cellular data provider.

  • Imported ical from outlook and the date across the top of the weekly view all show the date i imported..

    imported ical from outlook and the date across the top of the weekly view all show the date i imported..

    I'm confused, what does iCal have to do with this, it seems as though you went from Outlook to Entourage, is that correct?

  • How to show the data of one query since Forms9i using to Report built-in on

    Hello!!!, I have Developer 9i (Forms and Reports), the OCJ4 and repserver90 are running, now, I attempt to run one report from Forms9i, and only it appears an empty page HTML. I don't understand why doesn't show the data of query?
    Please, give me a solution for this problem, thanks for your help.
    PD: I am using the below code.......
    PROCEDURE bring_report IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('Q_DATA1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://172.16.2.18:8888/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;

    Alex,
    the code does look good. maybe the Reports query does not produce an output. You can trace this ny adding a header on top of teh Reports (e.g. a date or just saying "Hello World"). So instead of an empty page this should now show the text strings. If you don't see the string then there is something else going on. Since you are not getting any error message I assume that the Reports itself executes fine.
    Frank

  • How do I get it to show the date & time.

    How do I get it to show the date & time at all times. I don't want to have to click on the day & time to get the date. In the OS 10.4 I could at least get it in the "analog" format. Under leopard it just show a little clock that can't be read.
    I just want to see the time and date at all times in the upper corner on the screen

    Please see my post in your first posting at http://discussions.apple.com/thread.jspa?threadID=1237022&tstart=0
    David

Maybe you are looking for

  • Way to reboot to an earlier date?

    I was wondering if there was a way to reboot your mac to an earlier date. For instance, If I deleted something very important and I needed it back, there's a way (on a PC) to go back in your computers history and start from there, where I had said fi

  • Keynote: where do trashed images and slides go

    I'm editing a keynote and need to reclaim some trashed slides/images/text. It's not in my trashcan, and KNote doesn't appear to have a dedicated trashcan, at least that I can find. Further, there's nothing in KNote help. Any ideas? Thanks in advance

  • Emailed a video clip, however no sound is played once it's downloaded...

    I emailed a friend a video clip, however when she attempts to play it there is no sound. The video comes through fine, but she can't hear anything. I emailed the clip to myself wondering if it would also not play sound--but the sound does come throug

  • Material for Certification

    Hi gurus, Please can anyone provide me the complete material for 3.5 certification. my mail id is [email protected] thanks in advance. Thanks n regards AK

  • WRT54GL: Only connects if unprotected

    Hi, i have installed the router(WRT54GL) as instructed. But it only works when the security is set to inactivated. When protected, the laptop still finds the connection and tries to connect, but i get a "Weak or non connectivity", and can't connect t