PSE 4 improvements for "Collections"

Those who use PSE Collections and find that Collections are important, might be interested to learn about the following PSE 4 enhancements for the support of "Collections":
1) PSE 4 supports Version Set manipulation operations, while photos are viewed as part of a Collection.
While viewing photos as part of a collection in collection order (i.e. after selecting a collection in the right part of the Organizer window in order to display all photos of that collection in collection order), it is now possible with PSE 4 to "Reveal all items/photos of a Version set" and then to use the various Version Set manipulation commands (i.e. "Revert to Original", "Remove items from Version Set", "Set as Top Item", "Convert Version Set to individual items"). This was not possoible with PSE 3.
For me, this enhancement is significant, because I perform nearly all my photo-editing activities while viewing my photos in a collection sequence, that orders/sequences the photos in such a way that similar photos are adjacent to each other.
2) Faster re-sequencing of photos within large collections
With PSE 3 (and with PSA 1 and PSA 2), re-arranging with "Drag and Drop" the sequence of photos within a large collection was for me nearly a nightmare, when needing to move one or multiple photos to a new "distant location" within the collection (by "distant location", I mean a location that can not be shown in the same window/screen as the original location of the photos that I want to move).
With PSE 4 the drag and drop of photos within a collection to a "distant location" is much more efficient than in PSE 3 (and in PSA 2).
If I understand properly the subject: this enhancement is the result of more general PSE 4 enhacements for scrolling operations.
3) Editing Photos that are part of a Collection
With PSE 3, when editing a photo that is part of one (or more) Collections, PSE was replacing in the Collection(s) the original version of the photo by the edited version of the photo (this is as expected and is fine) and was then adding the original version of the Photo at the beginning of the Collection(s). The collection(s) was/were then containing both the edited version and the original version of the photo (as opposed to containing only the top photo within the Version Set). After a Photo-Edit, I had to determine in which Collection(s) the edited photo was located and I had to remove manually the original version of the photos from the Collection(s). This was a pain.
With PSE 4, this problem has been fixed. After an edit, the original version of the photo is not added to the beginning of the collection.
Also, when converting a PSE 3 or PSA 2 Catalog, PSA 4 does not add the original version of edited photos that are part of a versionset to the beginning of all of the collection. This too is an enhancement over PSE.3 (and by the way: when migrating from PSA 2, also Creations are properly migrated something that PSE 3 is not doing).
These PSE 4 enhancements to the support of collections contributed to my decision to migrate to PSE 4. It is my impression that others who also like and use extensively Collections might be interested in these PSE 4 enhancements.

Hi Barb
When I tried nearly one year ago to migrate from PSA 2 to PSE 3, I encountered the following problem with all my pre-existing Creations: the conversion process lost the information about the sequencing of the photos within the Creation. After the conversion it was up to the user to re-order the photos within the Creation. I hated it.
Also, I believe to remember (but I am not 100% sure anymore about it): for every edited photo, the converted Creation contained two versions of the photo - The Original version and the latest updated version.
After a migration from PSA 2 to PSE 4, I do not have on my PC these problems anymore. All my pre-existing Creations (they are slide-shows) have been converted without problems to PSE V4.
I am not sure to understand correctly what your following words mean "When I looked at the Photo Browser icons for some creations, they seemed to be the same pale icons".
On my PC, the color of the PSE 4 icons of the Creations are all pale blue and are all identical (i.e. the icons do not show any photo of the Creation). But the Creations are nevertheless OK.

Similar Messages

  • Opening animated gif in PSE 8 for Mac

    I am switching from PSE for PC to PSE 8 for Mac.
    I have always been able to open animated gif as layers and work with them, then resave as an updated animated gif.
    WIth PSE 8 for Mac, I get a pop up that the file is animated and can only see the top frame. Any ideas on how to open up all of the frames in layers?

    Do I need to enable this process for my Mac? Maybe I'm missing a plug-in or update?
    I have been opening these files from others, tweeking and resaving for almost 2 years in PSE. It definitely will not shuffle the individual panels on an animated gif into the layers box.
    My tweeking usually involves adjusting frame speed. Is that what you mean by 'frame rate'?
    Thank you for your help.

  • Issue with xsd Data type mapping for collection of user defined data type

    Hi,
    I am facing a issue with wsdl for xsd mapping for collection of user defined data type.
    Here is the code snippet.
    sample.java
    @WebMethod
    public QueryPageOutput AccountQue(QueryPageInput qpInput)
    public class QueryPageInput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class QueryPageOutput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class Account_IO implements Serializable, Cloneable {
    protected ArrayList <AccountIC> fintObjInst = null;
    public ArrayList<AccountIC>getfintObjInst()
    return (ArrayList<AccountIC>)fintObjInst.clone();
    public void setfintObjInst(AccountIC val)
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    Public class AccountIC
    protected String Name;
    protected String Desc;
    public String getName()
    return Name;
    public void setName(String name)
    Name = name;
    For the sample.java code, the wsdl generated is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="SimpleService"
    targetNamespace="http://example.org"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <wsdl:types>
    <xs:schema version="1.0" targetNamespace="http://examples.org" xmlns:ns1="http://example.org/types"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://example.org/types"/>
    <xs:element name="AccountWSService" type="ns1:accountEMRIO"/>
    </xs:schema>
    <xs:schema version="1.0" targetNamespace="http://example.org/types" xmlns:ns1="http://examples.org"
    xmlns:tns="http://example.org/types" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://examples.org"/>
    <xs:complexType name="queryPageOutput">
    <xs:sequence>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="queryPageInput">
    <xs:sequence>
    <xs:element name="fPageSize" type="xs:string" minOccurs="0"/>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    <xs:element name="fStartRowNum" type="xs:string" minOccurs="0"/>
    <xs:element name="fViewMode" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org" xmlns:ns1="http://example.org/types">
    <import namespace="http://example.org/types"/>
    <xsd:complexType name="AccountQue">
    <xsd:sequence>
    <xsd:element name="arg0" type="ns1:queryPageInput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQue" type="tns:AccountQue"/>
    <xsd:complexType name="AccountQueResponse">
    <xsd:sequence>
    <xsd:element name="return" type="ns1:queryPageOutput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQueResponse" type="tns:AccountQueResponse"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="AccountQueInput">
    <wsdl:part name="parameters" element="tns:AccountQue"/>
    </wsdl:message>
    <wsdl:message name="AccountQueOutput">
    <wsdl:part name="parameters" element="tns:AccountQueResponse"/>
    </wsdl:message>
    <wsdl:portType name="SimpleService">
    <wsdl:operation name="AccountQue">
    <wsdl:input message="tns:AccountQueInput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    <wsdl:output message="tns:AccountQueOutput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SimpleServiceSoapHttp" type="tns:SimpleService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AccountQue">
    <soap:operation soapAction=""/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SimpleService">
    <wsdl:port name="SimpleServicePort" binding="tns:SimpleServiceSoapHttp">
    <soap:address location="http://localhost:7101/WS-Project1-context-root/SimpleServicePort"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    In the above wsdl the collection of fintObjInst if of type xs:anytype. From the wsdl, I do not see the xsd mapping for AccountIC which includes Name and Desc. Due to which, when invoking the web service from a different client like c#(by creating proxy business service), I am unable to set the parameters for AccountIC. I am using JAX-WS stack and WLS 10.3. I have already looked at blog http://weblogs.java.net/blog/kohlert/archive/2006/10/jaxws_and_type.html but unable to solve this issue. However, at run time using a tool like SoapUI, when this wsdl is imported, I am able to see all the params related to AccountIC class.
    Can some one help me with this.
    Thanks,
    Sudha.

    Did you try adding the the XmlSeeAlso annotation to the webservice
    @XmlSeeAlso({<package.name>.AccountIC.class})
    This will add the schema for the data type (AccountIC) to the WSDL.
    Hope this helps.
    -Ajay

  • Bridge in pse 8 / pse 9 for Mac

    Hi. I use pse 8 for Mac and is fund of Bridge. Can anyone tell me if pse 9 includes Bridge in (pretty much) the same version.
    Or to put it another way: Would I benefit of an upgrade?

    Yes, there's no bridge in PSE 9, but you can keep on using Bridge CS4 if you don't want to use organizer. The only problem is that you can't update the raw converter in Bridge anymore, so you won't see thumbnails for newer camera models:
    http://barbarabrundage.com/2011/01/13/using-bridge-with-photoshop-elements-9/

  • Printing with PSE 8 for Mac

    Hi,
    hope some of you may give me some help.
    Have tried to print with PSE 8 for Mac, but in the printing options there is none where i can choose the type of paper (ie: glossy, premium glossy....).
    My printer is an Epson Stylus Photo 1400.
    It works fine with iPhoto, here i can choose paper type. And prints come out fine.
    Thanks for any advice,
    dangerly

    My printer is a Canon so not entirely sure if this helps but when I print from PSE 8 I do not get to choose the media type until I have clicked on the print button in the PSE dialog box. I am then presented with the dialog box for my printer where I can set the media type amongs other attributes.
    It is normal for the media type to be the job of the printer driver so perhaps it is the same for your printer.
    Jim Graham

  • Raw images do not show up in Bridge CS4 for PSE 8 for Mac

    I just downloaded PSE 8 for Mac and my raw files no longer show as thumbnails.  I can open them in Elements, but the image is blank in Bridge.  These same images were fine in CS3 (PSE 6 for Mac).  I have downloaded and installed the new Camera Raw 5.6 plug-in but that didn't work.  Any suggestions?  Thank you!

    You have to update bridge separately from PSE, and bridge ships with a pretty old version of ACR. Just go to Help>Updates in bridge and it will update itself for you.

  • ACR 6.1 for PSE 8 for Mac

    I use PSE 8 for the Mac to edit RAW photos from my Canon 40D.  I just bought a Canon T2i and PSE/ACR does not recognize the RAW file type from the new camera.  When I tried to install ACR 6.1 to see whether that would solve my problem, I got a message that I need to install a new copy of Adobe Application Manager.  Unfortunately the link that is provided in the pop-up message box is broken (I informed Adobe about that).
    Two questions:  Will installing ACR 6.1 solve my problem in reading the T2i RAW files?  If so, is there a workaround on the Adobe Application Manager problem?
    TIA

    Barbara,
         Thanks for the quick response and helpful link.  I downloaded ACR
    5.7 and followed the installation instructions.  When I opened
    Bridge, only generic thumbnails were shown with the EXIF data blank
    (the photos open in PSE).  I followed the instructions to purge the
    central cache, but that didn't help.  Any suggestions?
    Dick
    >You can't install ACR in PSE that way. Go here:
    >
    >http://www.adobe.com/support/downloads/product.jsp?product=40&platform=Macintosh
    >
    >and download and manually install the update in PSE. You won't be
    >able to update bridge past ACR 5.7.
    >

  • PSE 8 for Mac says "License expired"

    Hello.
    I am having a problem with PSE 8 for mac.  The situation for my software is complicated but it my be germane.  I download the trial version of the software and liked it.  I put the software on my wishlist.  My in-laws got a copy of the software for Christmas, but they bought the windows version from Costco.  Because Costco does not sell Mac software, I called up Adobe support and asked if they would cross grade me.  I did not want to return the software at Costco and not be able to get it.  So, I thought I would call Adobe and see what they could do -- cross grade could be a win/win.  They said that they would if I sent the serial number.  I did that, then they said that I need to pay $25 to cross grade, which I did not want to do.  I asked them to just give me a permanent serial number.  Adobe eventually did give me a permanent serial number for the PSE 8 trial and that is what I have been using.
    At about the time of the 10.6.3 update, PSE stopped working giving an error message "Licensing for this product has expired".  I tried a number solutions listed on the support site here at Adobe, but no have worked EXCEPT turning back the clock to 2008.  Is there a way to get this to work without having the clock wrong?
    Thanks.

    This shouldnt have been the case. I am sorry that you are experiencing this issue.
    Can you please try to do the following:
    1. When your system date is in year 2008 and you are able to work successfully with PSE Editor, go to Help Menu inside Editor and click on the link saying Help->Deactivate...
    2. Select the option to erase serial number and deactivate the product.
    3. This will quit PSE Editor as well.
    4. Launch PSE Editor again and now supply the serial number which Adobe gave to you again...
    Hopefully, this error message wouldnt come now...Please keep me informed...
    Regards,
    Ankush

  • PSE 8 (for Mac) refuses to launch - with message

    Just tried to launch PSE 8 (for Mac), it didn't launch, but produced the message: "Could not open scratch file because disk is not available."
    (tried this four times with the same result each time)
    Conclusion: because the most recent backup to RAID filled that disk, PSE 8 cannot access the scratch disk on the RAID backup disk.
    (This, even though I removed over 80 GB of old video files from the archive.)
    I purchased PSE 8 11/28/2009 - can I use an app removal utility to remove this installed version and re-download another installer?  It seems the most direct approach but first I have to ensure I can download a "replacement" and find out the original serial number to activate that replacement. 
    The original directions from Adobe indicate that all I have to do is access my order history and the serial number will be on the order form.  I'm not seeing any clearly identified serial number on that order. 
    So my question are;
    1. Should I first remove the original PSE 8 - or just the plists?
    2. how to find the original serial number?
    I do know already: once I have PSE 8 replacement installation running, I must set a scratch disk location on another (roomier) drive. this is not a problem: I have two 1 TB drives installed in my Mac Pro in addition to the two 500 GB drives which make up the (old) RAID. 
    Mac Pro 1,1 (2.66 Ghz Quad Core Xeon), OS 10.5.8

    Good call but it didn't work: tried deleting those plists twice.  Still get "disk not available" message w/ immediate PSE quit.
    Further: I ran Diskwarrior on my "home" drive, the cloned "home" drive AND the RAID backup. 
    This included Directory repair, File Check and Hardware Check on all three volumes.
    Also repaired permissions on "home" drive and cloned drive.
    I then repeated the attempt to launch PSE 8 on my "home" drive and the cloned "home" drive: same result. (failure)
    Sidebar: While running Disk Utility to repair permissions, I happened to click on the "RAID" button and found that
    one drive is listed as "Failed" and the other is listed as "Degraded." 
    Just in case that has anything to do with the PSE 8 failure to launch: I am now using Disk Utility to rebuild that RAID set.  This takes 4 hours and will wipe it clean.  I'll try in the morning once again to launch PSE 8 and get back with result.

  • I used to use PS "actions" are they in PSE 8 for Mac?

    I have been using an old version of Photoshop for Mac. Under  the Windows heading there was an Actions option where I could "record" some actions to edit photos and the"play" it to perfrom the same actions on different photos.
    In PSE 8 for Mac I see that under Guided Edit there is an Action player with 4 presets, none of which suit my purposes. It says that I can add (from where I don't know) or create my own actions sets by referring to the Help menu. When I search the help menu for " Create Action set" I get 15 topics and none of them seem to be about creating actions sets.
    I'd like to be able to record a set of acttions such as OPEN FILE- SIZE IMAGE-UNSHARP MASK-SAVE-CLOSE- and then play it back.
    Help appreciated.
    thanks,
    Rob

    When you save an action from photoshop 7, you should be able to
    choose the place for saving (i.e. desktop).
    The default place for saving actions is very often in the ps7 application folders.
    Something like: Applications>Photoshop 7>Presets>Photoshop Actions.
    As far as what actions from ps7 work in pse8, try to record steps in your
    action that are available in pse8. Something like unsharp mask will work,
    but not a command such as convert to cmyk. There are alot of commands
    that are not on the pse8 menus that do work such as a layer mask or trim.
    It would be good idea to test your actions in pse8, before installing a whole bunch and
    finding that half of them don't work.
    You could make test action for this purpose. In ps7, record an action
    such as Image>Trim.
    Name this action set Test (you can name the actual actions anything you want)
    and put it in your pse8 photo creations>photo effects folder.
    Then delete (move to your desktop) the MediaDatabase.db3 and start pse7
    (this will take a while to rebuild the effects panel).
    The Test action should be visable in the effects panel after selecting
    photo effects and show all. It wiil just be a black thumbnail named Test.
    From now on when you want to test an action, just replace the Test action
    with another action named Test, but with the action steps your testing
    and no need to delete any files (database).
    By testing your actions in this way, you avoid the hassle of making a
    xml file and a png thumbnail for an action that may not work.
    When installing actions that have been tested, you also need a xml file
    and a png thumbnail file in addition to the action. (look at xml and png
    files already in the photo effects folder for examples).
    You don't have worry about the jpeg files, as elements generates these itself.
    It's a good idea to delete (move to desktop) the the MediaDatabase.db3
    and the ThumbDatabase.db3 anytime you install actions other than the Test action.
    After you start pse8 and everything works, you can delete those files from your desktop.
    There is also an action player in pse8 under guided edit>automated actions.
    As tempting as it may be to test actions with the actions player, i would avoid that.
    One very good reason is that some of commands that are in pse8 don't work with
    the actions player, for example, any of the transform commands.
    In addition to texaschicksblog mentioned above, you may also want to read this pdf:
    http://www.camner.net/files/actions_in_PSE_8_for_mac.pdf
    Hope some of this helps.
    MTSTUNER

  • Univers 55 font missing in pse 8 for mac?

    HI
    i have pse 8 for both windows and mac. i used uit recently on my windows system and worked with a font called univers 55. however when trying to work on my mac, that font isnt there to select.
    any ideas how to get it or what i am doing wrong? why isnt it there?
    thanks!
    Kris

    Univers is not a free font.
    http://www.linotype.com/1560/Univers-family.html

  • How to print a picture package in PSE 13 for mac?

    I can not print a contact sheet or a picture package in PSE 13 for mac.  How do I enable this function?

    I believe you need to be in the Expert mode in the pse 13 editor and then they are listed under the File menu.

  • My computer - how can I improve for editing

    I am a hobby-editor . . . :-)
    Still I am curious to get some hints on which parts of my computer could be improved for video editing.
    So hopefully someone here could have a look on my hardware!
    Here are the specs: (in german!)
    Mainboard:
    Asus P6X58D-E
    ATX, Sockel 1366, Intel X58 / ICH10R Chipsatz, DDR3-1600
    Hersteller      Asus
    Modellbezeichnung      P6X58D-E
    CPU Sockel      1366
    unterstützte Prozessoren      Intel Core i7, Core i7 EE, Xeon (Nehalem)
    Mainboard Chipsatz      Intel X58 / ICH10R
    BIOS Hersteller      AMI
    Formfaktor      ATX
    QuickPath Interconnect QPI (MT/s)      6400
    ATX 12V Anschluss (8polig)      1
    ATX 2.0 Anschluss (24polig)      1
    Arbeitsspeichertyp      DDR3
    Arbeitsspeicher maximal (MB)      24576
    Speichertakt (MHz)      1600/1333/1066 (2000* *OC)
    Speichersteckplätze      6
    Triple Channel Unterstützung      vorhanden
    PCI (32-Bit) Steckplätze      2
    PCIe x1 Steckplätze      1
    PCIe x16 2.0 Steckplätze      3
    SLI / Crossfire Unterstützung      2/3 Way SLI/Quad CrossFireX
    SATA Controller      Intel ICH10R + Marvell® 9128
    SATA Anschlüsse      6x SATAII + 2x SATAIII
    SATA Protokolle      SATAI-III
    Unterstützte RAID Level      0,1,5,10
    USB Protokolle      USB 3.0/2.0/1.1
    USB Anschlüsse extern      4x USB 2.0 intern + 4x USB 2.0 extern + 2x USB 3.0 extern
    Soundchip      Realtek® ALC889
    Audiokanäle      8
    SPDIF Ausgang      1x optisch, 1x koaxial
    LAN Chipsatz      Marvell 88E8056®
    LAN-Ports      1
    LAN-Transferrate (MBit)      10/100/1000
    Anschlüsse für Lüfter      5
    PS/2 Schnittstelle (Tastatur)      1
    PS/2 Schnittstelle (Maus)      1
    IEEE1394a Firewire Schnittstelle      1
    CPU:
    Intel Core i7 950 (3,06GHz)
    Sockel 1366, Box - inkl. Kühler
    Hersteller/Modellbezeichnung
    Hersteller      Intel
    Prozessor Modell      Core i7
    Sockeltyp
    Prozessor Typ - Taktfrequenz      950 (3,06GHz)
    CPU Modellnummer      BX80601950
    Sockel      1366
    Packungstyp      Box - inkl. Kühler
    Prozessorkern      Bloomfield
    Anzahl Kerne      4
    QuickPath Interconnect QPI (MT/s)      4800
    Cache
    Energieverbrauch
    L1 Cache (kB)      4 x 64
    L2 Cache (kB)      1024
    L3 Cache (kB)      8192
    Energieverbrauch (Watt)      130
    Herstellungsprozess (nm)      45
    Kühler      Original Intel Box Kühler
    RAM:
    6144MB DDR3 Kingston KVR1333D3N9K3/6G
    DDR3 - 1333 (PC3 - 10600)
    Hersteller/Modellbezeichnung
    Hersteller      Kingston
    Herstellernummer      KVR1333D3N9K3/6G
    Technische Daten
    Kapazität (MB)      6144
    Kit bestehend aus      3 x 2048MB
    Speichertyp      DDR3
    Speicherstandard      DDR3 - 1333 (PC3 - 10600)
    Anschluss      DIMM 240-Pin
    Timings
    CAS Latency (CL)      9
    RAS-to-CAS-Delay (tRCD)      9
    RAS-Precharge-Time (tRP)      9
    Festplatte:
    1000GB Western Digital Caviar Black WD1002FAEX
    3,5", Serial-ATA/600 (6Gb/s), 64 MB Cache
    Hersteller      Western Digital
    Modellbezeichnung      Caviar Black WD1002FAEX
    Festplattenkapazität (GB)      1000
    Formfaktor (Zoll)      3,5
    Schnittstelle      Serial-ATA/600 (6Gb/s)
    Umdrehungen / Min.      7.200
    Geräuschentwicklung Betrieb (dB)      33
    Geräuschentwicklung StandBy (dB)      28
    Max. Transferrate (lesen) MB/s      keine Herstellerangaben verfügbar
    Max. Transferrate (schreiben) MB/s      keine Herstellerangaben verfügbar
    Zugriffszeit (ms)      4,2
    Cache (MB)      64
    Gewicht (g)      690
    Abmessungen (BxHxT) (mm)      101,6 x 25,4 x 147
    ARLT Garantie      Kein OEM. 5 Jahre Herstellergarantie. 3 Jahre ARLT Garantie davon 6 Monate Soforttausch bei Defekt
    wegen mehr Platz, größerem Cache, halber Zugriffszeit und SATA3-Schnittstelle, Transfer Rate (Buffer To Disk) 126 MB/s (Max) - sehr guter Wert !
    Brenner:
    LG GH22NS 22/22/48/32 DVD-Brenner, S-ATA
    Super Multi DVD-Brenner ? mit S-ATA Schnittstelle
    INTERNER 22x/22x Super Multi DVD-Brenner mit SecurDisk Unterstützung. Der perfekte Alleskönner für Ihren PC. Brennt nicht nur die gängigen Formate (DVD+R/+RW,-R/-RW) sondern auch DVD-RAM und ist außerdem durch die Double/Dual Layer Funktionalität für die Zukunft gerüstetHersteller      LG
    Modellbezeichnung      GH22NS40
    Farbe      schwarz
    Bauart      intern
    Schnittstelle      Serial-ATA
    Formfaktor (Zoll)      5,25
    Medienaufnahme      Schublade
    Puffer (Kb)      2048
    Zugriffszeit CD-ROM (ms)      120
    Zugriffszeit DVD-ROM (ms)      140
    Zugriffszeit DVD-RAM (ms)      175
    Lesen CD-ROM      48
    Lesen DVD-ROM      16
    Lesen DVD-RAM      5
    Schreiben CD-R      48
    Schreiben DVD-R      22
    Schreiben DVD+R      22
    Schreiben CD-RW      32
    Schreiben DVD-RW      6
    Schreiben DVD+RW      8
    Schreiben DVD-R DL      10
    Schreiben DVD+R DL      10
    Schreiben DVD-RAM      12
    Betriebs-LED      vorhanden
    Grafikkarte:
    Gainward Geforce 9500GT
    1024MB, PCIe 2.0, DVI, VGA, HDMI
    Hersteller/Modellbezeichnung
    Hersteller      Gainward
    Anschlussart      PCI-Express 2.0
    Stromversorgung
    Maximaler Verbrauch bei Volllast (Watt)      75
    GPU
    GPU Hersteller      NVIDIA
    GPU Bezeichnung      Geforce 9500GT
    GPU Takt (MHz)      550
    Kühlung      passiv
    DirectX Version      10
    Shader Model Version      4.0
    OpenGL Version      2.0
    HDCP Unterstützung      Ja
    NVIDIA CUDA-fähig      Ja
    Grafikspeicher
    Speicherkapazität (MB)      1024
    Speichertyp      DDR2
    Speichertakt (MHz)      800
    Speicheranbindung (Bit)      128
    RAMDAC (MHz)      400
    Dual-Link Unterstützung      ja
    unterstützte Auflösungen
    Max Auflösung (dpi)      2560x1600x32Bit 60 Hz (Dual Link)
    SLI / Crossfire Unterstützung      SLI
    Anschlüsse
    DVI Schnittstelle      1
    VGA D-Sub Schnittstelle      1
    HDMI Schnittstelle      1
    Unterstützte Betriebssysteme      Windows XP, Windows Vista
    Zubehör      Treiber CD
    Packungstyp      Retail
    Netzteil:
    550Watt, ARLT Netzteil, 12cm Lüfter, 20+4pin, schwarz
    Anschluß Mainboard
    ATX (20pin. + 4pin. Buchse)
    Anschlüsse Endgeräte
    8x 4 Pin Stromanschlüsse (HDD), 2x 4 Pin Stromanschlüsse (FDD), 2x SATA Stromanschlüsse, 1x 6 Pin Stromanschluss (VGA), 1x 4 Pin Stromanschluss (CPU)
    Eingänge
    230V Netz
    Leistung
    550Watt
    Lüfter
    1x 12x12cm silent
    Hersteller/Modellbezeichnung
    Leistung
    Hersteller      Arlt
    Modellbezeichnung      LowNoise
    Watt      550
    Anschlüsse
    ATX 12V Anschluss (4polig)      1
    ATX Anschluss (20polig)      1
    ATX 2.0 Anschluss (24polig)      1
    S-ATA Stromanschlüsse      2
    3,5" Anschlüsse      2
    5,25" Anschlüsse      8
    Eingangsspannung (V)      230
    Sonstiges
    Bauform      ATX
    Lüfter (mm)      120
    CPU Kühler:
    Scythe Mugen 2 Rev. B, CPU Kühler für Sockel 1366/1156/775/478/754/939/AM2/AM2+/AM3/940
    Hersteller      Scythe
    Modellbezeichnung      Mugen 2 Rev. B
    Material Kühlkörper      Kupfer / Aluminium
    kompatible CPU Sockel      1366/1156/775/478/754/939/AM2/AM2+/AM3/940
    Freigegeben bis (MHz)      alle Taktraten
    Lüfterdrehzahl (U/Min)      1400
    Geräuschentwicklung Betrieb (dB)      26,5
    Abmessungen (BxHxT) (mm)      130 x 158 x 100
    Gewicht (g)      870
    Besonderheiten      bis zu 4 Lüfter verbaubar
    mitgeliefertes Zubehör      Backplates
    Schrauben
    Installationsanleitung
    Luftdurchfluss (m³/h)      126
    Kühlung      aktiv
    Cardreader:
    Apacer AE700, Kartenlesegerät 30-in-1
    intern, USB, Schwarz
    Hersteller      Apacer
    Modellbezeichnung      Embeded Card Reader AE700
    Kartenleser Typ      30-in-1
    Farbe (Gehäuse)      Schwarz
    Anschluss      USB
    Breite (mm)      101
    Höhe (mm)      25
    Tiefe (mm)      100
    lesbare Formate
    XD PictureCard      ja
    mini-/micro SD      ja
    SD Memorycard      ja
    MultimediaCard      ja
    Microdrive      ja
    MemoryStick      ja
    CompactFlash      ja
    OS:
    Windows 7 Professional 64-Bit System-Builder-Version
    Windows 7 Professional 64-Bit System-Builder-Version, EnglischHersteller      Microsoft
    Art der Software      Betriebssystem
    Datenträger      DVD
    Lizenz (Anzahl PC's)      1
    Softwareversion      OEM
    Produktaktivierung erforderlich      ja
    2 x eSATA als PCIe:
    Delock Controller Karte 2x eSATA, 2xSATA, 1x IDE
    2x intern SATA oder 2x eSATA Spezifikation
    1x intern PATA IDE Spezifikation
    Datentransferraten:
    SATA II bis zu 3 Gbps
    PATA bis zu 133 Mbps
    PCI Express x1 Standard
    Unterstützt PCI Express 1.0a Spezifikation
    Unterstützt bis zu 2 HDD am SATA, sowie 2 HDD am IDE Controller
    Unterstützt Native Command Queue (NCQ)
    Raid 0, 1
    Festplatte:
    2000GB Western Digital RE4-GP (WD2002FYPS)
    3,5", Serial-ATA/300 (3Gb/s), 64 MB Cache
    Hersteller      Western Digital
    Modellbezeichnung      RE4-GP (WD2002FYPS)
    Festplattenkapazität (GB)      2000
    Bauart      intern
    Formfaktor (Zoll)      3,5
    Schnittstelle      Serial-ATA/300 (3Gb/s)
    Umdrehungen / Min.      5.400 - 7.200 (dynamisch je nach Auslastung)
    Geräuschentwicklung Betrieb (dB)      29
    Geräuschentwicklung StandBy (dB)      25
    Max. Transferrate (lesen) MB/s      110
    Zugriffszeit (ms)      8,9
    Cache (MB)      64
    MTBF (h)      1.200.000
    Gewicht (g)      730
    Abmessungen (BxHxT) (mm)      101,6 x 26,1 x 147
    Besonderheiten      Energiesparende Green Power Festplatte
    Please have a look at my system and give me ideas how I could eventuially improve it.
    regards

    I agree completely with Harm. A 550W PSU of average (or middling) quality like the one that you have (which, by the way, is based on a CWT PSH or PSH-II platform) is not quite enough to power a power-hungry CPU like the i7-950 of yours, especially if a better-performing GPU such as the the GTX 560 Ti that Harm suggested is added along with two or more additional hard drives. (Your system currently has exactly two hard drives, which is the absolute minimum that you should have in an editing system unless you want performance to be slower than an old Pentium 4. However, one of those hard drives spins at only 5400 RPM - far from ideal for an editing system. You really want all of the hard drives inside that system to spin at 7200 RPM.)
    Speaking of the GTX 560 Ti, you don't need the one with 448 cores since a non-overclocked (read: stock speed) i7-950 can't take full advantage of that higher-end GPU (and please note that the GTX 560 Ti 448 is actually a GTX 570 with one of its shader units disabled whereas the standard GTX 560 Ti is a different chip altogether). The standard GTX 560 Ti, with its 384 CUDA cores and a 256-bit DDR5 memory bus width, would suffice. However, if you do wish to overclock the i7-950 (to at least 3.8GHz), then the 448-core edition of the GTX 560 Ti would make more sense. (The 9500 GT that you currently have is not only old, it's slow and weak as well: It has only 32 CUDA cores, and it uses really, really crummy DDR2 RAM with only a 128-bit memory bus width. Such a card would have made the GPU-accelerated mode significantly slower than software-only mode during certain operations within CS5.x.)
    By the way, I was wrong six months ago about the Dell systems sold during Fall 2011 that came with a 1.25GB version of the GTX 560 Ti: I had assumed that that card had 448 cores. Well, I did more research, and discovered that there was an OEM version of the GTX 560 Ti which did use a 320-bit DDR5 memory bus - but it had only 352 CUDA cores. It uses the same GPU as the GTX 570 and GTX 580, but with only 11 of its 16 shader units enabled, making it a GTX 570 with four of that GPU's shader units disabled. The Dell version of the GTX 560 Ti is, indeed, only a 352-core unit that was based off of a GTX 570. That made the Dell GTX 560 Ti expensive for what it is - at around $300, it cost as much money as the 448-core version of the GTX 560 Ti sold for around that time.

  • POSTING_ILLEGAL_STATEMENT in MIGO for collective slip

    Hi all.
    I am using smartforms for printing GI slips in MIGO. The problem is that when i want to print the document for collective slip i get a short dump with error: POSTING_ILLEGAL_STATEMENT. I have looked over the internet for a solution but i could not find one.
    Any ideas ?
    Regards,
    Cristian.

    Hi,
    For correct and quick response, Try posting your question in this forum -  
    SAP Community Network Forums » SAP Solutions » ERP SD Sales
    Thanks,
    Shambhu.

  • Process Improvement for Shopping Cart

    I would like to have the availability to contact customer service regarding a recommended process improvement for Verizon customers.  I have been a loyal Verizon since 2003, but my most recent experience is enough to drive me straight into the arms of T-Mobile and take them up on their offer to buy me out of all 6 contract agreements on my Verizon account.
    I recently attempted to upgrade my device online.  It was a relatively seamless process until I reached the end and got to the shopping cart.  I elected to pick my phone up in the nearest store but to do so you have to pay online with a credit or debit card.  You do not have the option to bill your account or pay in the store.  As it turns out, the billing zip code that is associated with your credit card MUST match the service address zip code on your Verizon account.  I am an identity theft victim and because of this all of my mail goes to a Post Office Box for security reasons.  I obviously do not live in a Post Office Box, so my service address will never match the zip code on my billing address.
    I am keenly aware that this is probably done for security reasons.  Verizon doesn't want people obtaining a compromised account and sending a phone just anywhere.  However, I was not opting to have anything shipped to me.  I was picking up in the store so it should not matter what my billing zip code is.
    The part that was most frustrating was the customer service individuals that I spoke with suggested things like (1) I should contact my bank and all of my bank statements and credit/debit card statements come to my house or (2) update my Verizon service address to the physical address of the Post Office even though I don't live there.  When I was told to do option 2 listed above, I was told I had to log out of my account for the change to take effect and then re-log back in only to lose my entire order.  All of this just to place an order and pick it up in a store.  All I needed to do was just pay for my phone.
    I next gave up and went in to the store.  After an hour of waiting and trying to figure out where the problem was, the Verizon store couldn't take the coupon code that the customer service person had given me online.  Translation - after all of this frustration with a dead-end result, I learned I was going to have to pay about $100 more for my phone.  I walked away.
    I went back online and the only option I had was to go back to square one and re-order online and this time, elect to have the phone shipped and billed to my account.  I chose overnight shipping and just learned that the phone was shipped UPS ground and will be delivered after 5 days.
    Needless to say, this has all been extremely disappointing and the most frustrating part is that it is all avoidable with a simple programming change.  All of this was totally unnecessary.  As an identity theft victim, I will NEVER have my mail delivered to the mailbox in my neighborhood.  Does Verizon really want to offer that as a suggestion for people who want to buy a phone?  Do they want to be responsible for the results?  With identity theft being the fastest growing crime in America, somehow I just don't see that as a viable solution.  There are many, many people just like me who don't have the same physical and billing addresses.
    Finally, I will leave you with this question... Have you ever had this much trouble placing an order and paying for that order online?  If I went to a store and purchased a phone in the store, would Verizon's payment processor care that the billing address on my credit card was different from the physical address where I live?  NO!  Companies are typically ready to take your money!  It shouldn't be this hard to just pay someone for a phone.
    If anyone can point me in the direction of how to make sure someone from Verizon Corporate is aware of this problem and that this is taken under consideration for future enhancements/changes to their eCommerce system it would be much appreciated.

    Hi,
      I think your process level evaluation id is not true, that is the reason system skips the process level.. Can you check your evaluation event-expression code. What do you see in SLG1?  For testing purpose change the evaluation id to 0EV000 and check. Make Sure you debug through the user(requester) that you are creating the SC. Please test and let me know...
    Saravanan

Maybe you are looking for

  • Text message to update LG Ally

    I received a text message to get an app from the market to enable the OS update - when I try to install this app I get an error saying that no android phones are associated with my account - I have tried to find where to associate my phone with my go

  • FI Vendor Balance not matching with Profit Center Vendor Balance

    Hi, Our problem is as under: AS seen in FI report for Vendor X Doc. Date      Pstng Date        Amount in doc. curr.              Curr.     "Amount in local cur."     LCurr 2/15/2011          2/23/2011         -185,400.00                          SEK

  • External procedure with Pro*C in it

    I have some C functions that I have compiled into a shared library on Unix. One of the functions contains a SQL statement to insert into a table, so I compile the file with Pro*C. It compiles fine. I have another C program that calls the function wit

  • Updated to 3.0, Won't send MMS messages?

    I recently updated my iPhone to the 3.0 software and under my ROGERS iPhone value pack it tells me i get unlimited MMS messages but right now I am unable to send MMS messages. My phone tells me that it has sent them but 3 of my friends who all have i

  • Photo will diappear from the iPhoto library once I disconnect the external hard drive.

    I backed up Photo Booth from my macbook before it recover now I am not able to upload the photos into the iPhoto library.