Dell s320wi keystone value

Hi I am facing display issue on dell s320wi projector, while using projector on wireless or VGA after some time it's display goes tilted, I don't know why this is happening, can any one please help????

Newer operating systems, computers, & audio cards do not require the use of the cable from the CD Rom to the soundcard. It is now handled via the IDE cable. Being that you only upgraded half of this equation (that being the computer and not the soundcard), this may be a "trial & error" situation. I do not have the experience with modem cards to comment on that one.
Finally, you will need to disable the onboard soundcard via the motherboard's Bios. Look in the MB's manual to perform this action.
Message Edited by johnston2 on 0-25-2006 06:49 PM

Similar Messages

  • Dell Live! Value Soundblater card!!!! Need some advice

    I have an old 400 that has this card installed model #CT4780. I have purchased a new Dell E30 and want to install this card in it. I have downloaded the driver pack <FONT face=Verdana color=#ff0000 size=3>Li'veDrvUni-Pack(ENG).exe. This<FONT face=Verdana color=#ff0000 size=3> was<FONT face=Verdana color=#ff0000 size=3> listed<FONT face=Verdana color=#ff0000 size=3> on<FONT face=Verdana color=#ff0000 size=3> the<FONT face=Verdana color=#ff0000 size=3> website<FONT face=Verdana color=#ff0000 size=3> as<FONT face=Verdana color=#ff0000 size=3><FONT face=Verdana color=#ff0000 size=3> the<FONT face=Verdana color=#ff0000 size=3> correct<FONT face=Verdana color=#ff0000 size=3> one<FONT face=Verdana color=#ff0000 size=3> for<FONT face=Verdana color=#ff0000 size=3> XP.<FONT face=Verdana color=#ff0000 size=3> I notice that in the old computer there is a cable from the card to the CD-Rom and also one from the card to the modem. Are these cables need in the new computer? Also will I have a conflict with the integrated sound card that came with the new computer? I have not done anything expect download the driver pack.
    I know some about computers but do not like to install boards and new computers fearing some thing will go wrong. I need some advice and the procedure before I preceded. Any help would be greatly appreciated. Thanks

    Newer operating systems, computers, & audio cards do not require the use of the cable from the CD Rom to the soundcard. It is now handled via the IDE cable. Being that you only upgraded half of this equation (that being the computer and not the soundcard), this may be a "trial & error" situation. I do not have the experience with modem cards to comment on that one.
    Finally, you will need to disable the onboard soundcard via the motherboard's Bios. Look in the MB's manual to perform this action.
    Message Edited by johnston2 on 0-25-2006 06:49 PM

  • Link between delivery line item and sales order item schedule line.

    Hello friends,
    This is a continuation of my earlier query - for which I got half the solution, and this is the remaining problem.
    I want to know: from delivery document line item, how to link it to sales order line item's schedule line (when there are multiple schedule lines with identical quantities).
    Thanks for your help.
    - Chetan

    This is the code which i used for the same purpose and its working.
    Hope this will help you too....
    ****it_itab  is my final internal table.
    *Internal table for manupulating the Delivery balance when
    *its used in more than one schedule line
    TYPES: BEGIN OF ty_new,
           vbeln TYPE vbep-vbeln," so no
           posnr TYPE vbep-posnr," so line no
           etenr TYPE vbep-etenr," schedule line
           delno TYPE lips-vbeln,"delivery no
           delposnr TYPE lips-posnr,"del item no
           totval TYPE vbep-wmeng," total del wise value
           val   TYPE vbep-wmeng," del wise used value
           sdval TYPE vbep-wmeng,"schedule wise  del used value
           sdtotval TYPE vbep-wmeng," total Schedule value
         END OF ty_new.
    DATA:it_new TYPE ty_new OCCURS 0,
         wa_new TYPE ty_new.
    DATA: it_vbepvb TYPE TABLE OF vbepvb,
            wa_vbepvb LIKE LINE OF it_vbepvb,
            fvbfa TYPE TABLE OF vbfa,
            fvbup TYPE TABLE OF vbup,
            fvbap TYPE TABLE OF vbapvb.
      LOOP AT it_vbak INTO wa_vbak.
        LOOP AT it_vbap INTO wa_vbap
                WHERE vbeln = wa_vbak-vbeln.
      SELECT * FROM   vbfa INTO TABLE fvbfa WHERE vbelv = wa_vbap-vbeln
                                             AND  posnv = wa_vbap-posnr.
      SELECT * FROM   vbup INTO TABLE  fvbup WHERE vbeln = wa_vbap-vbeln
                                             AND  posnr = wa_vbap-posnr.
      SELECT * FROM   vbap INTO TABLE fvbap WHERE vbeln = wa_vbap-vbeln
                                             AND  posnr = wa_vbap-posnr.
      SELECT * FROM   vbep INTO TABLE it_vbepvb WHERE vbeln = wa_vbap-vbeln
                                             AND  posnr = wa_vbap-posnr.
      CALL FUNCTION 'RV_SCHEDULE_CHECK_DELIVERIES'
        EXPORTING
          fbeleg                        = wa_vbap-vbeln
          fposnr                        = wa_vbap-posnr
      FVERRECHNUNG                  = ' '
      FS073_ALT                     = ' '
      IF_NO_SORT                    = ' '
        TABLES
       fvbfa                         = fvbfa
       fvbup                         = fvbup
       fxvbep                        = it_vbepvb
      FVBLB                        =
        fvbap                        = fvbap
    EXCEPTIONS
      FEHLER_BEI_LESEN_FVBUP        = 1
      FEHLER_BEI_LESEN_FXVBEP       = 2
      OTHERS                        = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT it_vbepvb BY vbeln posnr edatu.
      LOOP AT it_vbepvb INTO wa_vbepvb
                    WHERE vbeln = wa_vbap-vbeln
                      AND posnr = wa_vbap-posnr.
        to write data of schedule line with no delivery
        MOVE wa_vbepvb-olfmng_flt TO wa_itab-openqty.
        IF  wa_vbepvb-bmeng EQ wa_itab-openqty.
          CLEAR wa_itab.
          PERFORM schedule_data.  "schedule line based data to be displayed
          MOVE: wa_vbap-lgort TO wa_itab-lgort.
          MOVE: wa_vbepvb-etenr TO wa_itab-etenr,
                wa_vbepvb-bmeng TO wa_itab-kwmeng,
                wa_vbepvb-olfmng_flt TO wa_itab-openqty.
          APPEND wa_itab TO it_itab .
          CLEAR wa_itab.
        ENDIF.
        LOOP AT it_vbfa INTO wa_vbfa WHERE vbelv = wa_vbepvb-vbeln
                                            AND  posnv = wa_vbepvb-posnr.
          READ TABLE it_likp INTO wa_likp WITH KEY vbeln = wa_vbfa-vbeln.
          CHECK wa_likp-bldat >= wa_vbepvb-edatu.
    check the Delivery doc date with the schedule line confirmed date
          CLEAR: delbal, deltot,wa_new.
          LOOP AT it_new INTO wa_new WHERE vbeln = wa_vbepvb-vbeln
                                         AND       posnr = wa_vbepvb-posnr
                                         AND       etenr = wa_vbepvb-etenr.
            deltot = deltot  +  wa_new-sdval.
          ENDLOOP.
          delbal = wa_new-sdtotval - deltot.
          CHECK sy-subrc <> 0 OR delbal GT 0.
          MOVE wa_vbepvb-olfmng_flt TO wa_itab-openqty.
          CHECK  wa_vbepvb-bmeng NE wa_itab-openqty.
    ****To check whether this delivery is already fully allocated against
    any other schedule.
    LOOP AT it_lips INTO wa_lips WHERE  vbeln = wa_vbfa-vbeln
                                           AND posnr = wa_vbfa-posnn.
            MOVE: wa_likp-bolnr TO wa_itab-vesname.
            MOVE: wa_likp-vbeln TO wa_itab-delno.
            MOVE: wa_likp-wadat TO wa_itab-wadat.
            MOVE: wa_likp-anzpk TO wa_itab-anzpk.
            MOVE: wa_likp-lddat TO wa_itab-lddat.
            MOVE: wa_likp-ernam TO wa_itab-ernam.
    ******end of code added by IVL1 on sep 27 2007 #3618
            PERFORM schedule_data.
            IF wa_lips-umvkz <> 0.
              tempquant = wa_lips-umvkn / wa_lips-umvkz.
            ELSE.
              tempquant = wa_lips-umvkn. "delivery qty
            ENDIF.
            tempquant = tempquant * wa_vbfa-rfmng.
    ***New logic added to get delivery qty schedule wise****
            MOVE: wa_vbepvb-etenr TO wa_itab-etenr,
                  wa_vbepvb-bmeng TO wa_itab-kwmeng,
                  wa_vbepvb-olfmng_flt TO wa_itab-openqty. "jo
    **if delivery qty is less than or equal to schedule line qty******
            IF tempquant LE  wa_vbepvb-bmeng.
              wa_itab-delqty =  tempquant.
              LOOP AT it_new INTO wa_new  WHERE  vbeln = wa_vbepvb-vbeln
                                         AND     posnr = wa_vbepvb-posnr
                                         AND     etenr = wa_vbepvb-etenr
                                         AND     delno  = wa_lips-vbeln
                                         AND     delposnr = wa_lips-posnr.
                MOVE-CORRESPONDING  wa_itab TO wa_new.
                wa_new-delposnr = wa_lips-posnr.
                wa_new-val = tempquant.
                wa_new-totval = tempquant.
                wa_new-sdval  = tempquant.
                wa_new-sdtotval = wa_vbepvb-bmeng.
                MODIFY TABLE it_new FROM wa_new .
                IF NOT sy-subrc IS INITIAL.
                  APPEND wa_new  TO it_new.
                ENDIF.
              ENDLOOP.
              IF sy-subrc <> 0.
                MOVE-CORRESPONDING  wa_itab TO wa_new.
                wa_new-delposnr = wa_lips-posnr.
                wa_new-val = tempquant.
                wa_new-totval = tempquant.
                wa_new-sdval  = tempquant.
                wa_new-sdtotval = wa_vbepvb-bmeng.
                APPEND wa_new TO it_new.
              ENDIF.
             wa_itab-delqty =  tempquant.
             CLEAR tempquant.
            ELSE.
        lips qty > so schedule lineqty
              CLEAR deltol.
              LOOP AT it_new INTO wa_new WHERE    vbeln = wa_vbepvb-vbeln
                                          AND      posnr = wa_vbepvb-posnr
                                         AND     etenr = wa_vbepvb-etenr
                                          AND     delno  = wa_lips-vbeln
                                          AND    delposnr = wa_lips-posnr.
                deltol = deltol  + wa_new-val.
              ENDLOOP.
              LOOP AT it_new INTO wa_new  WHERE    vbeln = wa_vbepvb-vbeln
                                          AND      posnr = wa_vbepvb-posnr
                                          AND     delno  = wa_lips-vbeln
                                          AND    delposnr = wa_lips-posnr.
                MOVE-CORRESPONDING  wa_itab TO wa_new.
                wa_new-val = wa_new-totval - deltol.
                wa_itab-delqty =  wa_new-val.
                wa_new-delposnr = wa_lips-posnr.
                wa_new-totval = tempquant.
                wa_new-sdval  = wa_new-val.
                wa_new-sdtotval = wa_vbepvb-bmeng.
                MODIFY TABLE it_new FROM wa_new .
                IF NOT sy-subrc IS INITIAL.
                  APPEND wa_new  TO it_new.
                ENDIF.
              ENDLOOP.
              IF  sy-subrc <> 0.
                MOVE-CORRESPONDING  wa_itab TO wa_new.
                wa_itab-delqty =  wa_vbepvb-bmeng.
                wa_new-delposnr = wa_lips-posnr.
                wa_new-val =  wa_vbepvb-bmeng.
                wa_new-totval = tempquant.
                wa_new-sdval  = wa_vbepvb-bmeng.
                wa_new-sdtotval = wa_vbepvb-bmeng.
                APPEND wa_new  TO it_new.
              ENDIF.
            ENDIF.
            IF NOT wa_lips-lgort IS INITIAL.
              MOVE: wa_lips-lgort TO wa_itab-lgort.
            ELSE.
              MOVE: wa_vbap-lgort TO wa_itab-lgort.
            ENDIF.
            APPEND wa_itab TO it_itab .
            CLEAR wa_itab.
          ENDLOOP. 
        ENDLOOP.
        CLEAR wa_vbepvb.
      ENDLOOP.
        ENDLOOP.
        CLEAR wa_vbak.
      ENDLOOP.

  • Getting delivery date for material number i PO...

    Hi,
    I am Smartform associated with PO in ME22N:
    Now I need to get the delivery date associated with Differnet Grid items in a material.
    So if I go to some material and then if I click on Delivery schedule:
    I see columns for delivery date, sat. del da, Grid value, etc...
    But I want to know the table or function module we need to use to get Delivery date associated with
    prticular Grid item of a material in PO.
    Please help me out.
    Thanks.
    Regards,
    Ramesh.

    Hi ,
    Check out for BAPI_PO_GETDETAIL.
    In this BAPI,
    fill parameters : PURCHASEORDER with PO number
                      ITEMS with 'X'
                      SCHEDULES with 'X'
    Then in tables PO_ITEMS you will get Item details and
    in table <b>PO_ITEM_SCHEDULES</b> you will get required details like delivery date
    Hope this helps.
    Regards,
    Akshay Bhagwat

  • CGContextDrawImage camera app crashes

    Hello All,
    My first post on this forum. I am trying to obtain an image using the AVCaptureSession. I followed this tutorial http://www.benjaminloulier.com/posts/2-ios4-and-direct-access-to-the-camera. I am creating uiimage from image ref and then obtaining pixels from that uiimage. But the app crashes after sometime (less than 30s). I tried analyzing using Leaks and that too crashes. Using logs I found the app crashes just before the line  CGContextDrawImage(context, rect, image1.CGImage); Do you guys have any suggestions on what I might be doing wrong. I also see Memory Allocation errors a few seconds before the app crashes. Please help.
    Please find the code below:
    // Create a UIImage from sample buffer data
    - (UIImage *) imageFromSampleBufferCMSampleBufferRef) sampleBuffer
    lock = @"YES";
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
    // Lock the base address of the pixel buffer
    CVPixelBufferLockBaseAddress(imageBuffer, 0);
    // Get the number of bytes per row for the pixel buffer
    void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer);
    // Get the number of bytes per row for the pixel buffer
    size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer);
    // Get the pixel buffer width and height
    size_t width = CVPixelBufferGetWidth(imageBuffer);
    size_t height = CVPixelBufferGetHeight(imageBuffer);
    // Create a device-dependent RGB color space
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    size_t bufferSize = CVPixelBufferGetDataSize(imageBuffer);
    // Create a Quartz direct-access data provider that uses data we supply.
    NSData *data = [NSData dataWithBytes:baseAddress length:bufferSize];
    CGDataProviderRef dataProvider = CGDataProviderCreateWithCFData((__bridge CFDataRef)data);
    CGImageRef quartzImage = CGImageCreate(width, height, 8, 32, bytesPerRow,
                  colorSpace, kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Little,
                  dataProvider, NULL, true, kCGRenderingIntentDefault);
    CGDataProviderRelease(dataProvider);
    // Unlock the pixel buffer
    CGColorSpaceRelease(colorSpace);
    // Create an image object from the Quartz image
    UIImage *image = [UIImage imageWithCGImage:quartzImage];
    // Release the Quartz image
    CGImageRelease(quartzImage);
    CVPixelBufferUnlockBaseAddress(imageBuffer,0);
    baseAddress = nil;
    [data  release];
    lock = @"NO";
    return(image);
    -(void)calculate
    @try {
            UIImage *image1 = [self stillImage];   //Capture an image from the camera.
            //Extract the pixels from the camera image.
            CGColorSpaceRef colourSpace = CGColorSpaceCreateDeviceRGB();
            size_t bytesPerRow = image1.size.width*4;
            unsigned char* bitmapData = (unsigned char*)malloc(bytesPerRow*image1.size.height);
            CGContextRef context = CGBitmapContextCreate(bitmapData, image1.size.width, image1.size.height, 8, bytesPerRow,colourSpace,kCGImageAlphaPremultipliedFirst|kCGBitmapByteOrder32Big);
            CGColorSpaceRelease(colourSpace);
            CGContextDrawImage(context, rect, image1.CGImage);
            unsigned char* pixels = (unsigned char*)CGBitmapContextGetData(context);
            totalLuminance = 0.0;
            for(int p=0; p<image1.size.width*image1.size.height*4; p+=4)
                totalLuminance += pixels[p]*0.3 + pixels[p+1]*0.59 + pixels[p+2]*0.11;
            totalLuminance /= (image1.size.height * image1.size.width);                  
            pixels = nil;
            bitmapData = nil;
            [image1 release];
        CGContextRelease(context);
            //image1 = nil;
            //totalLuminance = [n floatValue];                   //Calculate the total luminance.
            float f = [del.camcont.slider value];
            float total = totalLuminance * f;
            NSString *ns = [NSString stringWithFormat:@"Lux : %0.2f", total];
            NSLog(@"slider = %f",f);
            NSLog(@"totlaluminance = %f",totalLuminance);
            NSLog(@"%@",ns);
            //NSString *ns = [NSString initWithFormat:@"Lux : %0.2f", total];
            [del.camcont.lux setText:ns];//Display the total luminance.
            self.stillImage = nil;
            //[self.stillImage release];
             ns = nil;
            //n = nil;
            //del = nil;
        @catch (NSException *exception) {
            NSLog(@"main: Caught %@: %@", [exception name], [exception reason]);

    The error happens in the Calculate method which uses the Image retrieved from the AVCaptureSession ImageBuffer to do some calculations. Calculate method is called every second directly from the function which gets the still image.
    A few seconds later I get Memory Allocation Error at line:
    for(int p=0; p<image1.size.width*image1.size.height*4; p+=4)
       totalLuminance += pixels[p]*0.3 + pixels[p+1]*0.59 + pixels[p+2]*0.11;
    And then after a few iterations crashes at the line
    CGContextDrawImage(context, rect, image1.CGImage);
    Can someone please guide me on how I can make sure I am releasing the memory allocated to objects properly.
    Thanks

  • Regarding the flat file

    hi gurus.
    i have to bring the datas from a flatfile to SAP. i have written a code but am getting an error in phone in split statement. There are many phone number in the flatfile in unformatted form. some as mobile no,landline no, some with off: no and res: no how to split all the words and only the phone no i want. This is the sample data
    07453/234802,231843,232277
    08377/264265,R.254276
    2417121/2417151/2417191
    08377/551265,R.554276
    Off:71 Resi:107
    02465/22263,22210,Nanded
    Off:20 Resi:38 & 267
    (220)-6785,7321,7325,R:1707
    244080, R.244172
    445019
    help me in sloving the problem
    REPORT ZVKFO .
    DATA : DSN(50) TYPE C VALUE '/sapmnt/bdc/fone.txt',
    ROW(30) TYPE C,
    DEL TYPE C VALUE '/',
    DEL1 TYPE C VALUE '-',
    DEL2 TYPE C VALUE ','.
    DATA : BEGIN OF ITAB OCCURS 0,
    PHONE(10) TYPE C,
    END OF ITAB.
    OPEN DATASET DSN FOR INPUT IN TEXT MODE ENCODING DEFAULT .
    READ DATASET DSN INTO ITAB.
    DO 100 TIMES.
    SPLIT ITAB AT DEL INTO PHONE.
    *split itab at del1 into phone.
    *split itab at del2 into phone.
    ITAB-PHONE = ROW.
    ENDDO.
    WRITE : ITAB-PHONE.

    Hi,
    the statement u r using is wrong. It should be
    DATA: VALUE TYPE STRING.
    SPLIT ITAB-PHONE AT DEL INTO ITAB-PHONE VALUE.
    Always when u split the itab-phone the string will be split into two. so u need to give two variables after the into statement so the one will have first half of the string and the other will have the second half.
    also i didnt get ur point u r splitting ur record to PHONE and assigning ROW to it. Also there is no append statement for the table.
    thanks,
    Srinath.

  • JAXB Binding problem

    Am having trouble building an external binding file to cope with the following xsd extract
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="urn:hl7-org:v3" xmlns="urn:hl7-org:v3" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:hl7="urn:hl7-org:v3" xmlns:xlink="http://www.w3.org/TR/WD-xlink" xmlns:gsd="http://aurora.regenstrief.org/GenericXMLSchema" elementFormDefault="qualified">
         <xsd:complexType name="ANY" abstract="true">
              <xsd:attribute name="nullFlavor" type="cs_NullFlavor" use="optional"/>
         </xsd:complexType>
         <xsd:simpleType name="cs_NullFlavor">
              <xsd:restriction base="cs">
                   <xsd:enumeration value="NI"/>
                   <xsd:enumeration value="NA"/>
                   <xsd:enumeration value="UNK"/>
              </xsd:restriction>
         </xsd:simpleType>
         <xsd:simpleType name="cs_AddressPartType">
              <xsd:restriction base="cs">
                   <xsd:enumeration value="DEL"/>
                   <xsd:enumeration value="STTYP"/>
                   <xsd:enumeration value="STR"/>
                   <xsd:enumeration value="ADDRK"/>
              </xsd:restriction>
         </xsd:simpleType>
         <xsd:complexType name="AD" mixed="true">
              <xsd:complexContent mixed="true">
                   <xsd:extension base="ANY">
                        <xsd:sequence>
                             <xsd:choice minOccurs="0" maxOccurs="unbounded">
                                  <xsd:element name="streetName">
                                       <xsd:complexType mixed="true">
                                            <xsd:complexContent mixed="true">
                                                 <xsd:restriction base="ADXP">
                                                      <xsd:attribute name="partType" type="cs_AddressPartType" fixed="STR"/>
                                                 </xsd:restriction>
                                            </xsd:complexContent>
                                       </xsd:complexType>
                                  </xsd:element>
                                  <xsd:element name="streetNameType">
                                       <xsd:complexType mixed="true">
                                            <xsd:complexContent mixed="true">
                                                 <xsd:restriction base="ADXP">
                                                      <xsd:attribute name="partType" type="cs_AddressPartType" fixed="STTYP"/>
                                                 </xsd:restriction>
                                            </xsd:complexContent>
                                       </xsd:complexType>
                                  </xsd:element>
                             </xsd:choice>
                        </xsd:sequence>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
         <xsd:simpleType name="cs_BinaryDataEncoding">
              <xsd:restriction base="xsd:NMTOKEN">
                   <xsd:enumeration value="B64"/>
                   <xsd:enumeration value="TXT"/>
              </xsd:restriction>
         </xsd:simpleType>
         <xsd:complexType name="BIN" abstract="true" mixed="true">
              <xsd:complexContent mixed="true">
                   <xsd:extension base="ANY">
                        <xsd:attribute name="representation" type="cs_BinaryDataEncoding" use="optional" default="TXT">
                        </xsd:attribute>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
         <xsd:complexType name="ED" mixed="true">
              <xsd:complexContent mixed="true">
                   <xsd:extension base="BIN">
                        <xsd:attribute name="mediaType" type="cs" use="optional" default="text/plain">
                        </xsd:attribute>
                        <xsd:attribute name="language" type="cs" use="optional">
                        </xsd:attribute>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
         <xsd:complexType name="ST" mixed="true">
              <xsd:complexContent mixed="true">
                   <xsd:restriction base="ED">
                        <xsd:attribute name="mediaType" type="cs" use="optional" default="text/plain">
                        </xsd:attribute>
                        <xsd:attribute name="language" type="cs" use="optional">
                        </xsd:attribute>
                   </xsd:restriction>
              </xsd:complexContent>
         </xsd:complexType>
         <xsd:complexType name="ADXP" mixed="true">
              <xsd:complexContent mixed="true">
                   <xsd:extension base="ST">
                        <xsd:attribute name="partType" type="cs_AddressPartType">
                        </xsd:attribute>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
         <xsd:simpleType name="cs">
              <xsd:restriction base="xsd:token">
                   <xsd:pattern value="[^\s]*"/>
              </xsd:restriction>
         </xsd:simpleType>
    </xsd:schema>
    Above is a very much truncated extract of our xsd file
    I get XJC errors around 'streetNameType'
    any ideas on a binding definition that works with this ??
    Thanks

    This is the SAMPLE schema - that includes the earlier post
    (ie the earlier post shows datatypes.xsd)
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema targetNamespace="urn:hl7-org:v3" xmlns="urn:hl7-org:v3" xmlns:hl7="urn:hl7-org:v3" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:include schemaLocation="datatypes.xsd"/>
         <xs:element name="rootTest" type="test.smTest"/>
         <xs:complexType name="test.smTest">
              <xs:sequence>
                   <xs:element name="id" type="xs:anySimpleType"/>
                   <xs:element name="addr" type="AD" minOccurs="0"/>
              </xs:sequence>
         </xs:complexType>
    </xs:schema>

  • Query, Xquery

    I'm an italian student and I need your help:
    I have the following xml document that is called tiny5_LTQ-FT.mzML0.99.1.xml :
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Twana Johnson (Institute for Systems Biology) -->
    <mzML xmlns="http://psi.hupo.org/schema_revision/mzML_0.99.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://psi.hupo.org/schema_revision/mzML_0.99.1 mzML0.99.1.xsd" accession="" id="urn:lsid:psidev.info:mzML.instanceDocuments.tiny1" version="0.99.1">
         <cvList count="1">
              <cv cvLabel="MS" fullName="Proteomics Standards Initiative Mass Spectrometry Ontology" version="2.0.2" URI="http://psidev.sourceforge.net/ms/xml/mzdata/psi-ms.2.0.2.obo"/>
         </cvList>
    </mzML>
    I want to select the value of the cv attribute but
    -if I write doc ('dbxml:/container1.dbxml/tiny4_LTQ-FT.mzML0.99.1.xml')/*/*/*/ @ fullName it returns the exact result!
    -if I write doc ('dbxml:/container1.dbxml/tiny4_LTQ-FT.mzML0.99.1.xml')/mzML/cvList/cv/@ fullName it doesn't indicate errors but the resultset remains empty
    it's just an example, my document is very long and I can't use the wild cards to interrogate him.
    the following class makes it:
    package searchmzml2;
    import com.sleepycat.dbxml.XmlDocument;
    import com.sleepycat.dbxml.XmlDocumentConfig;
    import com.sleepycat.dbxml.XmlManagerConfig;
    import com.sleepycat.dbxml.XmlQueryExpression;
    import com.sleepycat.dbxml.XmlContainer;
    import com.sleepycat.dbxml.XmlException;
    import com.sleepycat.dbxml.XmlInputStream;
    import com.sleepycat.dbxml.XmlManager;
    import com.sleepycat.dbxml.XmlUpdateContext;
    import com.sleepycat.dbxml.XmlQueryContext;
    import com.sleepycat.dbxml.XmlResults;
    import com.sleepycat.dbxml.XmlValue;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import java.io.File;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.io.FileNotFoundException;
    import javax.swing.JOptionPane;
    public class VisualizzaDocumento {
    public String doc="tiny4_LTQ-FT.mzML0.99.1.xml";
    private static File path2DbEnv = new File("C:/mynbprogect1/search mzML2");
    private static String theContainer = "container1.dbxml";
    public static String id="";
    /** Creates a new instance of VisualizzaDocumento */
    public VisualizzaDocumento() {
    // metodo per visualizzare l'id del documento
    public static void asPresentazione()throws Throwable{
    myDbEnv env = null;
         XmlContainer openedContainer = null;
         try {
    XmlDocumentConfig conf= new XmlDocumentConfig();
    conf.setWellFormedOnly(true);
         //Create an environment
         env = new myDbEnv(path2DbEnv);
         XmlManager theMgr = env.getManager();
         //Open a container in that environment
         openedContainer = theMgr.openContainer(theContainer);
         XmlQueryContext context = theMgr.createQueryContext();
    String query="doc ('dbxml:/container1.dbxml/tiny5_LTQ-FT.mzML0.99.1.xml')/*/*/*/@ fullName";
    XmlQueryExpression qe = theMgr.prepare(query, context);
    XmlResults results = qe.execute(context);
    if(results.size()==0){
    // JOptionPane.showMessageDialog(null,"la query non ha prodotto risultati \n Riprova!!");
    System.out.print("il resultset è vuoto");
    XmlValue value = results.next();
    qe.delete();
    while (value != null) {
    id = value.asString();
    System.out.println("il valore del resulset è: "+id);
    value.delete();
    value = results.next();
    results.delete();
         } catch (Exception e) {
    System.err.println("Error performing query against " + theContainer);
    System.err.println(" Message: " + e.getMessage());
    throw e;
         finally {
         cleanup(env, openedContainer);
    System.out.println("il metodo sembra che sia andato a buon fine");
    }// end method
    private static void cleanup(myDbEnv env, XmlContainer openedContainer) {
         try {
         if (openedContainer != null)
              openedContainer.close();
         if (env != null)
              env.cleanup();
         } catch (Exception e) {
    System.out.println("l'errore in chiusura è il seguente" +e.getMessage());
    THANK YOU SO MUCH.!
    Francesco Galati

    hi! I made what you wrote me and now the programm recognizes the elements but it doesen't recognize the attributes. what do I have to do for this situation?
    for example:
    -if I write doc ('dbxml:/container1.dbxml/tiny4_LTQ-FT.mzML0.99.1.xml')/mzML/cvList/cv/ @ * ---------it returns the exact result!
    -if i write doc ('dbxml:/container1.dbxml/tiny4_LTQ-FT.mzML0.99.1.xml')/mzML/cvList/cv/ @ fullName ------------------- it doesn't indicate errors but the resultset remains empty
    I wait for your answer and I send best reguards to you!
    ciao ciao :)
    Francesco Galati

  • Why should I choose a T400 over a E6400?

    I'm a graduate student about to start a master's program in a field of engineering. I need something that is sturdy, dependable, non-intrusive, quiet, cool (temperature), light and compact. This is why I'm interested in the T400 and E6400.
    For around $750 (incl. tax) this is the T400 I want to get:
    P8400
    2gb, 1DIMM ram
    250gb hdd
    14.1 LED WXGA w/camera
    CDRW/DVDROM
    Intel 5300 Wifi
    Intel graphics
    Media card reader
    6-cell battery
    Vista basic (will buy vista ultimate and upgrade with student discount)
    1-year warranty
    For less, I can get this refurb'd E6400:
    P8700
    2gb, 1DIMM ram DDR2
    160 gb HDD, 7200rpm
    14.1 WXGA+ LED backlit
    Intel 5300
    Intel graphics
    Vista business
    6-cell battery
    DVD/RW
    3 year warranty
    I'm really torn between the two. I like the T400 for its understated design, rubberized outer surface, and rollcage. I like the Dell for its value and offering more for less. 
    I havn't been able to see them or try them in person I and probably won't be able to.
    So I'd like to here from owners why they prefer their Thinkpad over other notebooks, and if you're tried both I'd like to hear about your experiences. 
    Thanks.

    Hi thesundandthemoo,
    Welcome to the Lenovo forum
    If you haven't already, I'd recommend heading to notebookreview.com and reading their reviews of both the E6400 and T400. Also visit their forums and see what users have to say.
    As this is a Lenovo users' forum, the opinions you get here are biased. But I guess you know that.
    Anyway, my opinion: The Dell E6400 looks great on paper, is a great design. I've never set fingers on one, but from the reviews I looked at before getting my T500, it seemed it is somewhat flawed in execution. I recall reading reports of malfunctioning hardware and general flakiness. Those reports were anecdotal only, and to be fair in this forum you will read of some users having trouble with their T400's too. No manufacturer is immune from letting an occasional lemon slip through. If we had accurate statistics about quality control we could make a rational choice. In the absence of those, we're left with:
    Anecdotal user experiences and evaluations of laptop quality;
    More anecdotal user experiences of quality of service in addressing any problems.
    In my case I bought my T500 (over E6500) based on my personal experience with earlier ThinkPads and excellent support and service from IBM / Lenovo / EasyServ when the occasional problem arose. My T500 was not 100% perfect from day one: it had a somewhat flexible keyboard (by ThinkPad standards), and a problem displaying digital video through the dock's DVI to one of my monitors. To Lenovo's immense credit, they have fixed both problems to my complete satisfaction. It is this willingness to listen to customer complaints (in this forum and elsewhere) and commitment to make things right -- in combination with excellent design, build quality and driver support -- that makes me such a fan of ThinkPads. They are the first laptops I consider when making any new purchase for myself or others.
    Good luck with your search, it would be great if you let us know what you decide and why.
    Best regards,
    Frank
    Results of Your Ideal Business-Class Laptop survey, concluded 2009-07-29.
    Did someone help you?
    Say thanks! with a kudo.
    Even better: Pay it forward, help someone else.

  • Checkbox comparisons

    I solved my previous post, but this post is somewhat related,
    so I need to post again, for help.
    My form displays mulitple line items and I add a checkbox
    next to each. If checked, that line is deleted. Here is my checkbox
    : <cfinput type="checkbox"
    name="del/#urdn_number#/#urdn_line_item#" value="Yes">
    I then have to add the exact information rigth underneath,
    but this time, the checkbox will be used to edit. So if checked,
    that line is edited. (I know you do not need a checkbox for this,
    but for consistency, they wanted one for edit to match the delete,
    since they are the same items). Here is the checkbox for edit
    <cfinput type="checkbox"
    name="edit/#urdn_number#/#urdn_line_item#" value="Yes">
    Here is my question : If there are two line items (same) for
    the delete and edit, how do I check/compare so that if line item 1
    is checked for delete and line item 1 is checked for edit, this is
    now allowed, since you cannot delete and edit the same line item.
    I do not know how to validate this, so that is why I am
    posting.

    quote:
    The checkboxes for the edit all have the same name, and they
    all have the same name for the delete.
    Do you mean that the edit and delete checkboxes share the
    same name?
    For example:
    edit: <cfinput type="checkbox" name="box_1"
    value="edit">
    delete: <cfinput type="checkbox" name="box_1"
    value="delete">
    If that is the case, you will have to validate against the
    value of box_1, not the name itself.. if the value is equal to
    "edit,delete" for box_1, then obviously both options have been
    selected. Checkboxes return their value as a list.
    <cfif isDefined('form.box_1') AND form.box_1 EQ
    'edit,delete'>
    logic here.
    </cfif>
    Ideally, you should be using radio buttons in this situation
    since a user shouldn't be able to select both edit and delete to
    begin with.

  • Problem with SB Live! Value & Dell 8

    I recently reinstalled a fresh copy of XP on my Dell 8200 PC. When I start the PC, the SB Li've! Value card isn't "enabled". I have to go into Device Manager to "enable" it so I have sound. What needs to be done to correct his annoying problem? Thanks.

    Suggestions anyone?

  • How to recover file with this error?: Errore durante l'analisi dell'indice del documento: invalid character in attribute value

    Hello, I have a big problem with my ibooks Author file,
    after saved and close file, don't re-open!!
    we receive this message: Errore durante l'analisi dell'indice del documento: invalid character in attribute value
    please help me!
    I redid the file three times

    I have solved!!! the problem was on the .mp3 files included on file, after I have converted all the mp3 on mp4 (5 files corrupted was not converted), reload new files on mp4 and all it's ok (saved and closed saved and closed)

  • S/B Live Value Dell OEM CT4

    Calling all expertsI have a Sound Blaster Value Dell OEM? CT4780 card that I kept from my old Dell Dimension XPS T500. I?built a budget PC using an MSI? MS-6533XG mobo with P4. 2.8GHz Northwood 533 FSB.Using?XP Pro SP2? and Altec Lansing ADA880 speakers.
    The original Dell drivers?need replacing. The old Dell had an SPDIF feeding the Sub-Woofer. I no longer have the SPDIF source.Does any one know which drivers will get my sound up and running.

    Did you check dell's web site?

  • SB Live Value!(Ct4780) not detected when connected--WinXP Pro--Dell Dimension XPS T8

    heya, i recently went down to the US Virgin Island to work on my cousins charter yacht as first mate(from Jan '05 - Aug '05). Anyways getting back on topic, I come home to my desktop PC the way I left it with the case always off because i lost many of the screws for the PCI slots and i would frequently need to reseat the cards; and because i frequently would mess around with an ultra66controller trying to get it to work. now when i got back i booted up my pc and did a quick checkup(devmgmt.msc, msinfo32, services.msc, etc) and for some reason my sound card is not detected. sound & audio devices in the control panel listed no audio device. There is no listing of anything related to the card in sound, video & game ctls.(no WDM compatible entry or anything). I tried to change the PCI slot of the card, but each time to no avail. i am thinking it has something to do with the integrated BIOS sound, or this old Yamaha driver for Dell(i was messing around with an old resource cd and i think i may have installed it a few weeks to a month ago, my memory is blurred thanks to some xanax that night so im not sure if i did. anyone have any ideas?

    Hi,
    Does the BIOS detect the card? depending on the mboard you do sometimes get a summary of all PCI devices in the system so I'd be checking here to see if it is appearing. After that I'd be checking another computer to see if the card has failed.
    If the card passes onother system then there may be a problem with the BIOS NVRAM - some sort of problem that is preventing the card from being detected. Resetting the NVRAM (usually involves moving a jumper on the board) and then restarting after the reset can sometimes do the trick. This is a last step though and I'd suggest verify the card is actually working.
    Hope this hel
    ps.
    John

  • SQL Open Sales Orders Value using today's currency rates

    Hi experts,
    I am creating a report for displaying the open sales order values (and other fields) using current currency rate (where applicable). I developed the below query. The only problem with this query is that it ignores the order rows in which the currency field is blank (Don't understand why this happens in SAP). Do you have other ideas?
    Thanks & Regards,
    IC
    SELECT 
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date",  T0.CardCode as "Cust Code",  T0.CardName as "Customer Name",  T1.ItemCode, 
    T1.Dscription,  T3.ItmsGrpNam,  T1.U_SU,  T1.U_SULEN,  T1.U_SUQTY,  T2.InvntryUom as 'Stock UOM',  T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered", T1.OpenQty as 'Bal Qty', T1.Price*T1.Quantity/T4.Rate AS "Ord Value (GBP)", T1.Price*T1.OpenQty/T4.Rate  AS "Open Qty Val (GBP)", T1.Price/T4.Rate  AS "Price (GBP)", T1.Price*T1.OpenQty as "Ord Value (BP Currency)", T1.Price as 'Price (BP Curr)', T1.Currency as 'Cur Ind', T4.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date",  T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod, ORTT T4 WHERE T0.DocCur <> 'GBP' AND T1.Currency=T4.Currency AND T4.[RateDate] = [%0] AND T1.OpenQty > 0
    UNION ALL
    SELECT
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date", T0.CardCode as "Cust Code", T0.CardName as "Customer Name", T1.ItemCode, T1.Dscription, T3.ItmsGrpNam, T1.U_SU, T1.U_SULEN, T1.U_SUQTY, T2.InvntryUom as 'Stock UOM', T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered", T1.OpenQty as 'Bal Qty', T1.LineTotal AS "Ord Value (GBP)", T1.LineTotal/T1.Quantity*T1.OpenQty AS "Open Qty Val (GBP)", T1.LineTotal/T1.Quantity AS "Price (GBP)", T1.Price*T1.OpenQty as "Ord Value (BP Currency)",T1.Price as 'Price (BP Curr)', T1.Currency as 'Cur Ind', T1.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date", T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod WHERE T0.DocCur = 'GBP'  AND T1.OpenQty > 0 ORDER BY 2,1

    Hi,
    Try:
    SELECT 
    T0.DocNum as 'Sales Ord No', T0.DocDate as "Ord Date",  T0.CardCode as "Cust Code",  T0.CardName as "Customer Name", 
    T1.ItemCode,  T1.Dscription,  T3.ItmsGrpNam,  T1.U_SU,  T1.U_SULEN,  T1.U_SUQTY,  T2.InvntryUom as 'Stock UOM', 
    T1.Quantity as 'Ord Qty', T1.Quantity*T2.U_ITWTSTU as 'Weight (KG)', T1.Quantity-T1.OpenQty as "Qty Delivered",
    T1.OpenQty as 'Bal Qty', T1.Price*T1.Quantity/T4.Rate AS "Ord Value (GBP)",
    T1.Price*T1.OpenQty/T4.Rate  AS "Open Qty Val (GBP)", T1.Price/T4.Rate  AS "Price (GBP)",
    T1.Price*T1.OpenQty as "Ord Value (BP Currency)", T1.Price as 'Price (BP Curr)',
    T1.Currency as 'Cur Ind', T4.[Rate] AS 'Curr Rate', T0.DocDueDate as "Due Date",  T1.WhsCode as 'Del WHG'
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod
    LEFT JOIN ORTT T4 ON T1.Currency=T4.Currency AND T4.[RateDate] = [%0] AND T4.Rate != 0
    WHERE T0.DocCur != 'GBP' AND AND T1.OpenQty > 0
    Thanks,
    Gordon

Maybe you are looking for