Where is this stored

Hi all,
         Can anyone please tell me the database table name where the Last Change date of the Parameter 'CRM_ICWC_TEST' is stored.
Kindly reply as fast as possible.
Regards,
Vijay

Hi Vasanth,
                Thanks for your reply . The Table TPARA does not contain any field for date . The table TPARA contains only two fields
PARAMID
PARTEXT
Kindly tell how to pick the last date of the Parameter 'CRM_ICWC_TEST'
Regards,
Vijay

Similar Messages

  • Audio book download from iTunes where is this stored on yr iPad 2

    Hi all, I am trying to find where my purchased audio book has been stored by my ipad2. I have successful  purchased an podcast from iTunes and easily found how to access this. I have retraced my steps via iTunes and it is telling me it's downloaded but it's hiding and it's driving me mad. As u have guessed  Christmas present, thank u

    It should have downloaded into the Music app - when you have audiobooks on an iPad you will get an Audiobooks option under the More button at the bottom of the Music app.
    Note that audiobooks are currently a one-time only download from the store (so they won't appear in the Purchased tab for re-downloading), so you may want to copy it to your computer's iTunes via File > Devices > Transfer Purchases so that you can take a backup copy of it - it should copy over to the Books part of your iTunes library.

  • I downloaded a word file from an inbox mail (the mail app) onto my iPad2, where is this file stored? How can I delete it if it takes up space in my iPad? Any ideas??

    I downloaded a word file from an inbox mail (the mail app) onto my iPad, where is this file stored? How can I delete it if it takes up space in my iPad? Any ideas??

    Did you ever figure out what happened?
    I had the same experience as you did, but in my case it was a big fat pdf that Mail insisted I had to download before I could view it. As happened with you, I saw the file actually downloading, and after a time I was able to view the pdf. It's been my assumption that the pdf is still somewhere on my iPad, but I have no idea where, nor how to delete it if it is still there.
    Thanks.

  • I tried to text a photo from i phone 5 to a contact in i messaging.  When the contact came up, a conversation string that had been deleted also came up...I've not see this before.  Where might this conversation string be stored?  Thank you

    I tried to text a photo from i phone 5 to a contact in i messaging.  When the contact came up, a conversation string that had been deleted also came up...I've not see this before.  Where might this conversation string be stored?  Thank you

    I tried to text a photo from i phone 5 to a contact in i messaging.  When the contact came up, a conversation string that had been deleted also came up...I've not see this before.  Where might this conversation string be stored?  Thank you

  • I scanned some black and white negatives into my computer (iMac) where they were stored aas positives on the hard disc. When I import them to iPhoto they turn back into negatives. How do I change them into positives for printing?

    I have scanned some black and white negatives into my computer(iMac) where they are stored on the hard disc as positives.When I import them into iPhoto to print they turn back into negatives.How do I turn them back into positives?

    That's because you scanned them as B/W photos and iPhoto 08 doesn't support the grayscale color profile.  You can either rescan them as color photos or export them as originals out of iPhoto to a folder on the desktop and applhy this Automator application, Convert to JPG and Embed sRGB Profile, on them and then remimport into iPhoto. You can download it from  Toad's Cellar .  Be sure to read the warning on the website about not applying it on your only copies.
    OT

  • How to set pdn12.trancat mandatory in this stored procedure?

    How can i make PDN12.transcat in this Stored Procedure
    USE [zIRC DEMO]
    GO
    /****** Object:  StoredProcedure [dbo].[SP_CHECK_MANDATORY_IN_OPDN]    Script Date: 03/07/2014 10:37:54 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[SP_CHECK_MANDATORY_IN_OPDN]
      @list_of_cols_val_tab_del NVARCHAR(255), @error_message NVARCHAR(255) OUTPUT
    AS
    BEGIN
    --invoice type
      select
      @error_message='In header line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND isnull(OPDN.U_InvType,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND isnull(OPDN.U_InvType,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Invoice Type is missing'
    -- num at card
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In header line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.NumAtCard,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.NumAtCard,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Vendor ref. number is missing'
      END
    -- transporter
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.U_Transport,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.U_Transport,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Transporter is missing'
      END
    --dealer
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.U_dealer,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(OPDN.U_Dealer,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Dealer is missing'
      END
    --base price
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_BasePrice,0)=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_BasePrice,0)=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Base Price is missing'
      END
    --taxcode
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(PDN1.TaxCode,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S','L') AND isnull(PDN1.TaxCode,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Taxcode is Missing'
      END
    -- ed rate
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_EDRate,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_EDRate,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Excice Duty Rate is missing'
      END
    -- ed duty
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_EDuty,0)=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('M','D','S') AND isnull(PDN1.U_EDuty,0)=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Excice Duty is missing'
      END
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND ISNULL(PDN1.U_MfgInvNo,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND ISNULL(PDN1.U_MfgInvNo,'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Mfg. invoice number is missing'
      END
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND isnull(convert(nvarchar(10),U_MfgInvDt,112),'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND isnull(convert(nvarchar(10),U_MfgInvDt,112),'')=''
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Mfg. invoice date is missing'
      END
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND PDN1.U_MfgQty=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND PDN1.U_MfgQty=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Mfg. invoice Quantity is missing'
      END
      if(ISNULL(@error_message,'')='')
      BEGIN
      select
      @error_message='In line number(s), '+ substring
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      where
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND PDN1.U_MfgValue=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ),1
      ,LEN((
      select CONVERT(char(2),PDN1.LineNum)+','
      from
      OPDN
      inner join PDN1 on OPDN.DocEntry=PDN1.DocEntry
      WHERE
      OPDN.DocEntry=@list_of_cols_val_tab_del AND OPDN.DocType='I' AND OPDN.U_InvType in ('D','S') AND PDN1.U_MfgValue=0
      order by
      PDN1.LineNum FOR XML PATH ('')
      ))-1
      )+' Mfg. Assessble value is missing'
      END
      if(ISNULL(@error_message,'')<>'')
      BEGIN
      return -1
      END
      else
      begin
      return 0
      end
    END

    Hello Nabil
    Could you explain what is the point of making PDN12.Trancat mandatory? I am asking this because at my end that field has got NULL value in all PDN12 table entries, and I am not sure if this field can be updated manually when creating a Good Receipt PO. Considering this, it seems that by making this field mandatory TN will block all Good Receipts from addition.
    Regards

  • Beginners question - making sense of form, item, pane & variable (with relation to where data is stored in the SQL database)

    Hi Everyone,
    I am new to writing reports (SQL code) for SAP, however I am aware that inside SAP Business One it is necessary to enable System Information (from the View menu) in order to see which tables (and related table attributes / column names) are related to various aspects of the various SAP 'modules' (e.g.: A/R Invoice).
    Using an A/R Invoice as an example I can see at the row (or line) level that an item with the description of 'Opening Balance Transfer' is contained in the table INV1, within the attribute (or column) called Dscription.
    However not every 'on screen object' shows a table / attribute. For example in the same A/R Invoice if I hover my mouse over the Balance Due field all I see is Form related information.
    My question is 'How do I make sense of the Form, Item, Pane, Variable information?', with relation to where data is stored within the SQL database?
    Links to online tutorials explaining how this feature of SAP Business One will be much appreciated, along with any personal advice regarding working with this information.
    Any (and all) help will be greatly appreciated.
    Kind Regards,
    David

    Hi David,
    1.Here I am explaining use of each field except pane
    a. Form ---> Used in additional authorization creator
    b. Item, column--->Useful in creating Formatted search queries (FMS)
    c. Variable --> Some of the field values based on another values. ie. indirect values.
    d. INV1---Table name
    2. How to get variable?
    As per your second attachment, to get balance due ,you need doc total field from OINV table. For example,
    SELECT T0.[DocNum], T0.[DocTotal] FROM OINV T0 WHERE T0.[DocNum] = 612004797
    Thanks & Regards,
    Nagarajan

  • OUTGOING PAYMENT ROW INFORMATION WHERE IS IT STORED.  NEED FOR A REPORT

    OUTGOING PAYMENT ROW INFORMATION WHERE IS IT STORED.  NEED FOR A REPORT

    Try this thread:
    Query for outgoing payment
    Thanks,
    Gordon

  • Where are services stored in Tiger?

    When I drag down an application's menu, particularly Finder, I see a list of 31 services (in some applications some services are greyed out). Many are for third party applications I rarely use.  I have looked in:
    ~/Library/Services --does not exist
    /System/Library/Services --has a couple of Apple system services but there's a lot more such as Script Editor which are not there.
    /Library/Services --contains a single third party service
    Where were services stored in Tiger OS and how do I remove ones I am not likely to use such as ClamXAV?  I poked around the insides of an application package or two and didn't see them listed there (at least not obviously).

    I still don't know where they are stored, some web site had mention of launchd. but I did find this:
    ServicesScrubber - http://manytricks.com/servicescrubber/ - manage Finder Services in pre-OSX10.6 (free)
    I kind of suspect services are hidden in the applications themselves, probably under some cryptic identifier. I have a few instances of multiple copies of an application on my computer and I noticed when using ServiceScrubber (SS) it sometimes flagged multiple occurrences of a service. In addition when I ran SS it took a bit of time to scan for services which makes me suspect it was doing a general drive scan of my multiple drives (some extra application copies are on different drives) rather than taking a look at just one or two targeted Services folders.
    It seems Apple made services a lot more up-front and manageable post Leopard (kind of a very strange thing for Apple to do given its post-Tiger trend towards its current mother-knows-best attitude).  There was mention of a "Services Manager" utility that I saw mentioned on a site dating from 2003 which suggested it was a very early utility but I could only find solid mention of it in a Mountain Lion or something version.  It seems it wasn't a very well advertised utility (kind of like all the goodies tucked away in Core Services folder) and was maybe something you had to download specially, and has now vanished for good into the dark pits of edgesuite.

  • Where are versions stored in Bridge\Adobe Drive?

    We are currently working with CQ5 \ Bridge 5 \ Drive 3. Lets say I have video file inside CQ and I want to change the version with Bridge. The new video file is a lot smaller, say 30megs less. I copy the new old file over using Bridge and add it as a version. I can now revert back to the old version if I want to or just use the new one. The question is where is the larger file stored? I don't see it in the DAM any more, only see the new smaller file however. If I check the actual file inside the var\dam in CQ I can see variations but I don't know if these are the actual files.
    What I'm getting at is that if I need to replace say 400 larger video files with smaller ones are the large ones still stored some place on the CQ server and would I manual have to delete them? I just need to know where those extra files are stored.
    Thanks!

    Thanks for the help. I was unable to find the "show package content" option inside the windows version of Bridge. For whatever reason it only seems to be a Mac option.
    Omke Oudeman wrote:
    The only file there is the newer version. So, that all comes back to my original quesiton what happens to the original file? Where is it stored. Is it cached some place on the CQ server and I need to delete the original from the versions?
    I'm afraid I don't have an answer for that. Don't know how CQ works but in general creating a new and smaller version should leave the original untouched.
    But I come to think of it as same behavior as in Lightroom, Aperture or iPhoto that uses a library structure.
    Don't know if you are on Mac or Windows. But on a Mac you can select this library file that itself shows only the icon (mostly in default picture or movie folder). But if used with large amount of files it can grow to quit a size. Using right mouse click gives the option to show package content and that reveals several folders with amongst them an original or master folder that contains the originals. (if you find them don't move them to other locations but copy, otherwise you can loose the functionality in CQ
    Hope this helps you on the right track.

  • Where are items stored in print queue?

    I held documents in print queue for several weeks while I had my printer packed for moving. System still backed up using Time Machine during this time. Before I reconnected printer, in trying to resolve another issue, I used Onyx software and deleted the cache (which apparently included the print queue). Now I want to recover the documents in the print queue from my time Machine back up but I am unable to find them.
    Where does OS X 10.6 put the data to print documents from the print queue? What is the name of the file or folder where they are stored?

    tomfromflagstaff wrote:
    Yes, I assume that the CUPS job is what caused my difficulty.
    And they are gone.
    As I mentioned, I only tried Onyx in 10.7.x.  Deleting the cache for the CUPS jobs did not actually remove a print job I had spooled.  I was able to "see" the file beginning the the "d" in /private/var/spool/cups and move it to my Desktop. 
    Did you try the Terminal comand I had in my last post to see if there are any files in the spool directory?  You will not be able to see the files themselves as even administrators do not have enough privileges to view that directory.  The best you can do is use the sudo command to list the files.
    The long and short of it is that if the files are not in /private/var/spool/cups, they are gone.
    If I understand you correctly, restoring my system to the Time Machine back-up prior to performing this maintenance will not restore my system to it's state (including these print files) at the time of the back-up? How can that be? My understanding was that Time Machine backed-up everything.
    Are there other vital files that Time Machine does not back up?
    That is my understanding based on what I see in 10.7.x.  Time Machine does not back up any caches or any of the files in /private/var/spool/cups.  Time Machine will also not back up any other caches or system logs.  I don't have a list of what it does not back up.  I am not even sure if there is such a list available to users.

  • Where are photographs stored on my computer?

    as have all my pics on a separate hard disk, want to delete a double i have on my hard disk - problem is cannot find that file anywhere. where do i access in iphoto where and how to put the pictures?
    yes, tried in the Pictures folder, but there is nothing there.
    i seem to remember that in iPhoto i can somehow reroute where pictures are stored. where and how do i find this?
    Many thanks,
    Mark

    Mark:
    Do you have a library currently that is a managed library? That is when photos are imported into it the files are copied into the library package/folder? If so the photos are located in the Originals folder of that library package in your Pictures folder. You can open it like this.
    It sounds like you want to have a referenced library where you are responsible for the management of the source files and have iPhoto only use alias files pointing to them. There are some consequences to that system. One is that if you have the library open and the disk gets dismounted iPhoto can lose the link between the alias files and the originals and you may have to reset them either folder by folder (if you're lucky) or file by file. Another downside is that if you delete a photo from the library you will have to find that file via the Finder on the external HD and delete it manually.
    You would be better served, IMO, if you had a managed library on the external HD which contained all of your photos. Then have a smaller library on the MBP with just the most current or most important files for when you take the laptop on the road. You can use the paid version of iPhoto Library Manager to copy albums or events from one library to the other as needed.
    You will also need a system to backup the external HD since those will be your only copy of the photos. There's a thread today by a user whose external HD crashed with the only copies of his photos on it. He's paying a considerable amount of money to recover that HD, more than a second external HD would cost. It's something to think about.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Where is mail stored under Tiger?

    I want to back up old correspondence, both outgoing and incoming. Where are they stored? Thanks.

    Michael,
    Just to suppliment your good advice, the Mail Downloads folder is not the primary location of attachments to emails -- attachments reside in the mailbox (including Inbox), thus within the Messages folder of the mailbox, and generally are only seen in the downloads folder if opened by another application other than mail. The preference for how long a copy stays in the Downloads folder can be set in Mail Preferences/General.
    I think the Mail Downloads folder has been added, primarily to support IMAP and .mac accounts where the file attached would otherwise require access to the server to use beyond simply viewing in the Mail window, but operates much the same with POP accounts.
    I would appreciate any thoughts you have about this, since I may have missed something in my explorations.
    Ernie
    PowerMac G5 Dual 2.5, iBook, and QS G4 867   Mac OS X (10.4.3)  

  • Where is email stored in Time Machine backups?

    Just had my computer stolen. I have backups on Time Machine via Time Capsule and want to share my wife's computer until we can buy a new one.  So, I want to get my email from the backup and move it to her computer, without doing a total restore of everything else that was on my machine.  The problem is, when I go in to the backups, I can't find where Mail is stored. On a mac, I know how to find it by clicking on Option while in the GO menu. This makes Library appear as an option in the Go menu.  Without doing this, however, Library is hidden, and it is within this Library that Mail is stored.  There is no way to do within the backups because there is no Go Menu in Time Machine - just on the Mac itself.  How can I retrieve all of my email from a Time Machine/Time Capsule backup  and move it to the other Mac (which uses the same Time Capsule)?

    Our friend pondini has info to help you.
    Q15 here.
    http://pondini.org/TM/15.html

  • Facebook reports that i'm using v3.5 of Firefox and Windows 2000 when running on 16.0.2 and XP (upgraded system). where is this info and how to reset?

    the PC was upgraded from Win2000 to XP, and has all the XP service packs installed. it is also running Firefox 16.0.2. when i go to Facebook, and other pages, it says that i'm running an unsupported operating system (says i'm using Windows 2000), and i should upgrade my browser to the latest version (says i'm running FF 3.5, or FF 3.6, can't remember which). i' ve looked thru the registry, but haven't found anything that jumps out. where else could this info be stored that Firefox is looking at.

    '' pbturner wrote:''
    where is this information stored? and how can i correct it?
    It's explained in the “Firefox is showing the wrong User Agent” section of the aforementioned article.
    # Type ''about:config'' in the address bar and press Enter.
    # Press the big button to bypass the warning.
    # In the Search bar, paste ''general.useragent''
    # If any of the search results show “Status: user set”, right-click each one and choose '''Reset'''
    You should also get rid of Fast Browser Search, which is what corrupted your user agent string. Other names to watch out for are “Fast Browser search protection”, “Fast Browser Search (MyTattoo)”.<br>These may appear not only in your Firefox add-ons, but also your Internet Explorer add-ons and Windows Control Panel, in the Uninstall or Add or Remove Programs category.
    * [[Disable or remove Add-ons]]

Maybe you are looking for

  • My I-Pod is not working.

    Whenever i connect my Ipod to my PC it just keeps on charging with the orange light,indiacting charing. I have lost my iTunes s/w how can i make my Ipod work properly.And could you help me out with the user manual or some i-tunes s/w help.

  • "Paste" problem in Combo box...

    I have a number of forms with combo boxes in them. These Combo Boxes contain addresses. I want to "add" and "item" to the list. When I try, it will only let me phsically type the addess into the add item box! I have a dozen forms I need to add the ex

  • HOW TO BLOCK CUSTOMER AT TIME OF BILLING WHEN CREDIT LIMT EXCEEDS

    SAP Gurus, I want to block billing (A/R Invoice) of particular customer whose credit Limit exceed from the defined. I have discussed it with Partner he has done some settings but users are still generating the invoice for those particular customers.

  • Ipod turn off issue

    I ´m surprised for the many posts on people not being able to turn their Ipod´s by pressing the Play/pause button and nobody from Apple care to answer! It is definitively an Ipod firmware issue (the button works for other functions). My Ipod refuses

  • Type of JDBC Drivers

    I use two methods to connect to oracle database. 1. through a JNDI datasouce. that is connect program connect to database through a app/web server. 2. directly from program through a OracleDataSource. please tell me what type of driver these two are?