Any workarounds for not supported features of XML Schema

Hi,
We are trying to generate JAVA source code by providing a xsd.
This XML Schema file has all sorts of Identity constraints & attribute wildcards.
Due to the above reasons I am unable to generate the code.
Are there any workarounds? If so Please share those.
Thanks & Regards,
Priti Ranka

I am sorry I did not mention the tech. being used.
I am using JAXB for the above task.

Similar Messages

  • Any tools for converting java class to xml schema ?

    Hi,
    Are there any tools out there that can convert my java class to xml schema. How such tools take care of java collections like HashTable, ArrayList etc. in my class structure. I am not interested in writing any configuration files(like jaxb configuration files, jibx binding xml files etc.) for serving this purpose and the can be able to give me xml schema from the java classes. Please suggest ...
    I am not sure even JAXB 2.0 allows me to do this without writing any jaxb configuration files or annotations in my java class which is not there in JDK 1.4.2
    Thanks & Regards,
    Kr.

    Hi,
    You can convert the EDI file to XML in any of the ways
    1) Using third party seeburger adapters
    2) Conversion agent
    3) Stylus studio.
    I think using java code it will be very difficult.
    Thnx
    Chirag

  • ORA-19201: Datatype not supported when validating XML against an XSD

    Hello.
    Info: using Oracle 10.2.0.1.0, Java components are installed.
    I've created an XML view using ora:view, which is validated against a registered XSD. This view is created successfully.
    But when I SELECT * from this view, it gives ORA-19201 - Datatype not supported.
    Can't understand why. I've matched the XML to the XSD, and the datatypes all look fine to me. I've referred to the XSD using the XMLFORMAT.CREATEFORMAT option. When I use the same option to specify "NO_SCHEMA", it returns the correct XML, but we need to validate it against the XSD.
    I'm thinking one of two things has happened here:
    1. I've made a mistake with either my registration, or how I've used XMLFORMAT to refer to the XSD.
    2. There's a bug in Oracle.
    My money's on 1. Can anyone help?
    Thanks,
    Ray.

    Hello Geoff, I didn't want to send any code until I knew someone was willing to look at it (there's a lot of it).
    Here is the XSD:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <!--W3C Schema generated by XMLSpy v2006 rel. 3 sp1 (http://www.altova.com)-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:element name="TransInfo">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="PIE_ERROR" type="PIE_ERRORType" minOccurs="0"/>
                        <xs:element name="Transaction" type="TransactionType" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:complexType name="PIE_ERRORType">
              <xs:sequence>
                   <xs:element ref="ERROR_CODE"/>
                   <xs:element ref="DESCRIPTION"/>
              </xs:sequence>
         </xs:complexType>
         <xs:element name="ERROR_CODE">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="0001"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="DESCRIPTION">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="LEAD NUMBER 12345 IS INVALID"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:complexType name="TransactionType">
              <xs:sequence>
                   <xs:element ref="TRANSACTION_NUMBER"/>
                   <xs:element ref="TRANSACTION_STATUS"/>
    <xs:element ref="CONTACT_ID"/>
                   <xs:element ref="INVOICE_NUMBER"/>
                   <xs:element ref="CHANNEL"/>
                   <xs:element ref="CSA"/>
                   <xs:element ref="OPEN_DATETIME"/>
                   <xs:element ref="CLOSED_DATETIME"/>
                   <xs:element name="Orderline" type="OrderlineType" maxOccurs="unbounded"/>
              </xs:sequence>
         </xs:complexType>
         <xs:element name="TRANSACTION_NUMBER">
              <xs:simpleType>
                   <xs:restriction base="xs:int">
                        <xs:enumeration value="3455229"/>
                        <xs:enumeration value="3455230"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="TRANSACTION_STATUS">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="C"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="CONTACT_ID">
              <xs:simpleType>
                   <xs:restriction base="xs:int">
                        <xs:enumeration value="111"/>
                        <xs:enumeration value="222"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="INVOICE_NUMBER">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="123456789"/>
                        <xs:enumeration value="987654321"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="CHANNEL">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="Test 1"/>
                        <xs:enumeration value="Test 2"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="CSA">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="SEARLEA"/>
                        <xs:enumeration value="SILVAJ"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="OPEN_DATETIME">
              <xs:simpleType>
                   <xs:restriction base="xs:dateTime">
                        <xs:enumeration value="2001-10-26T20:32:52"/>
                        <xs:enumeration value="2004-12-06T10:23:25"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="CLOSED_DATETIME">
              <xs:simpleType>
                   <xs:restriction base="xs:dateTime">
                        <xs:enumeration value="2001-10-26T21:32:52"/>
                        <xs:enumeration value="2004-12-06T10:23:25"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:complexType name="OrderlineType">
              <xs:sequence>
                   <xs:element ref="ORDER_QTY"/>
                   <xs:element ref="RETAIL_AMT"/>
                   <xs:element ref="SALE_AMT"/>
                   <xs:element ref="PRODUCT_DESCR"/>
                   <xs:element ref="PART"/>
                   <xs:element ref="IMEI"/>
                   <xs:element name="BankDetails" type="BankDetailsType"/>
              </xs:sequence>
         </xs:complexType>
         <xs:element name="ORDER_QTY">
              <xs:simpleType>
                   <xs:restriction base="xs:int">
                        <xs:enumeration value="1"/>
                        <xs:enumeration value="3"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="RETAIL_AMT">
              <xs:simpleType>
                   <xs:restriction base="xs:decimal">
                        <xs:enumeration value="45.67"/>
                        <xs:enumeration value="54.76"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="SALE_AMT">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="45.67"/>
                        <xs:enumeration value="54.76"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="PRODUCT_DESCR">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="Product test 2"/>
                        <xs:enumeration value="Vodafone Nokia 6230 Pack"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="PART">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="6806"/>
                        <xs:enumeration value="8606"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="IMEI">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="099000000000001"/>
                        <xs:enumeration value="09900078900001"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:complexType name="BankDetailsType">
              <xs:sequence>
                   <xs:element ref="BANK_NAME"/>
                   <xs:element ref="ACCOUNT_NAME"/>
                   <xs:element ref="ACCOUNT_NUMBER"/>
                   <xs:element ref="SORT_CODE"/>
              </xs:sequence>
         </xs:complexType>
         <xs:element name="BANK_NAME">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="HSBC"/>
                        <xs:enumeration value="LLOYDS"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="ACCOUNT_NAME">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="MR A SEARLE"/>
                        <xs:enumeration value="MR J SILVA"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="ACCOUNT_NUMBER">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="87698789"/>
                        <xs:enumeration value="89769082"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="SORT_CODE">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="100928"/>
                        <xs:enumeration value="123346"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
    </xs:schema>
    I then registered this XSD using DBMS_XMLSCHEMA.REGISTER, calling it test_1.xsd. It is visble in USER_XML_SCHEMAS.
    Here are the 15 views used to drive the XML:
    SQL> desc v_pie_branch
    Name Null? Type
    BRANCH NOT NULL NUMBER(4)
    SQL> desc v_pie_branch_feature
    Name Null? Type
    BRANCH_FEATURE NOT NULL NUMBER(10)
    BRANCH NUMBER(4)
    FEATURE_TYPE VARCHAR2(10)
    CHANNEL VARCHAR2(40)
    SQL> desc v_pie_transaction
    Name Null? Type
    TRANSACTION_NUMBER NOT NULL NUMBER(10)
    BRANCH NUMBER(4)
    EMPLOYEE_TRANS VARCHAR2(12)
    CONTACT NUMBER(8)
    OPEN_DAT DATE
    OPEN_TIM DATE
    TRANSACTION_STATUS VARCHAR2(1)
    TRANS_TYPE VARCHAR2(1)
    CLOSED_DAT DATE
    CLOSED_TIM DATE
    INVOICE_NUMBER NUMBER(10)
    INVOICE_DAT DATE
    CSA VARCHAR2(12)
    CREATED_ON DATE
    AMENDED_BY VARCHAR2(12)
    AMENDED_ON DATE
    OPEN_DATETIME VARCHAR2(19)
    CLOSED_DATETIME VARCHAR2(19)
    SQL> desc v_pie_bank_detail
    Name Null? Type
    BANK_DETAIL NOT NULL NUMBER(12)
    BANKCODE VARCHAR2(40)
    SORTCODE VARCHAR2(40)
    BANK_NAME VARCHAR2(60)
    SQL> desc v_pie_account_detail
    Name Null? Type
    ACCOUNT_DETAIL NOT NULL NUMBER(12)
    BANK_DETAIL NUMBER(12)
    ACCOUNT_NUMBER VARCHAR2(40)
    SORT_CODE VARCHAR2(40)
    ACCOUNT_NAME VARCHAR2(40)
    BANKCODE VARCHAR2(40)
    SQL> desc v_pie_account_link
    Name Null? Type
    ACCOUNT_LINK NOT NULL NUMBER(12)
    CONTACT NUMBER(12)
    ACCOUNT_DETAIL NUMBER(12)
    ACC_LINK_TYP NUMBER(12)
    BNK_SINCE DATE
    AC_DET VARCHAR2(40)
    SQL> desc v_pie_compesn
    Name Null? Type
    COMPESN NOT NULL NUMBER(10)
    CONTACT NUMBER(8)
    IMEI VARCHAR2(25)
    SQL> desc v_pie_contact
    Name Null? Type
    CONTACT_ID NOT NULL NUMBER(8)
    CONTACT_TYP VARCHAR2(1)
    COMPANY NUMBER(10)
    BRANCH NUMBER(4)
    DEAD_FLG VARCHAR2(1)
    FORENAME VARCHAR2(20)
    TITLE VARCHAR2(5)
    MID_INITIAL VARCHAR2(1)
    GENDER VARCHAR2(1)
    FRAUD_FLG VARCHAR2(1)
    SQL> desc v_pie_servcon
    Name Null? Type
    SERVCON NOT NULL NUMBER(10)
    CONTRACT NUMBER(10)
    CONNECTION_CURR NUMBER(10)
    CONTACT NUMBER(8)
    SQL> desc v_pie_tpplan_compline
    Name Null? Type
    TPPLAN_COMPLINE NOT NULL NUMBER(10)
    SERVCON NUMBER(10)
    PPLAN NUMBER(10)
    SQL> desc v_pie_tpplan_comp_detail
    Name Null? Type
    TPPLAN_COMPLINE NOT NULL NUMBER(10)
    RULE_DETAIL_NO NOT NULL VARCHAR2(5)
    RULE_DETAIL_LINE NOT NULL NUMBER(2)
    U_VERSION VARCHAR2(1)
    OPTION VARCHAR2(40)
    OPT_STRING VARCHAR2(40)
    SQL> desc v_pie_tpplan
    Name Null? Type
    SERVCON NOT NULL NUMBER(10)
    PPLAN NOT NULL NUMBER(10)
    U_VERSION VARCHAR2(1)
    SQL> desc v_pie_connection
    Name Null? Type
    CONNECTION NOT NULL NUMBER(10)
    CONTACT NUMBER(8)
    ADDRESSNO NUMBER(5)
    TRANSACTION NUMBER(10)
    TPRODLINE NUMBER(10)
    CONTRACT NUMBER(10)
    SERVCON NUMBER(10)
    SQL> desc v_pie_tprodline
    Name Null? Type
    TRANSACTION NOT NULL NUMBER(10)
    TPRODLINE NOT NULL NUMBER(10)
    CONTACT NUMBER(8)
    PRODUCT NUMBER(10)
    ORDER_QTY NUMBER(12)
    RETAIL_AMT NUMBER
    SALE_AMT NUMBER
    SQL> desc v_pie_product
    Name Null? Type
    PRODUCT NOT NULL NUMBER(10)
    PART VARCHAR2(20)
    PRODUCT_DESCR VARCHAR2(40)
    This is the code to create an XML view, validating against the schema:
    create OR REPLACE VIEW v_xml_validate AS
    SELECT SYS_XMLAGG(XMLQuery('
    <PIE_ERROR>
    <ERROR_CODE>"0001"</ERROR_CODE>
    <DESCRIPTION>"There was an error with this customer"</DESCRIPTION>
    </PIE_ERROR>,
    <Transaction>
    {for $t in ora:view("V_PIE_TRANSACTION")/ROW
        ,$ct in ora:view("V_PIE_CONTACT")/ROW
        ,$b in ora:view("V_PIE_BRANCH")/ROW
        ,$bf in ora:view("V_PIE_BRANCH_FEATURE")/ROW
    where $t/CONTACT = $ct/CONTACT_ID
    and   $t/BRANCH = $b/BRANCH
    and   $b/BRANCH = $bf/BRANCH
    return ($t/TRANSACTION_NUMBER
            ,$t/TRANSACTION_STATUS
            ,$ct/CONTACT_ID
            ,$t/INVOICE_NUMBER
            ,$bf/CHANNEL
            ,$t/CSA
            ,$t/OPEN_DATETIME
            ,$t/CLOSED_DATETIME
            ,<Orderline>
                  {for $tpl in ora:view("V_PIE_TPRODLINE")/ROW
                      ,$pr  in ora:view("V_PIE_PRODUCT")/ROW
                      ,$cmpesn  in ora:view("V_PIE_COMPESN")/ROW
                   where $tpl/TRANSACTION eq $t/TRANSACTION_NUMBER
                   and   $tpl/PRODUCT eq $pr/PRODUCT
                   and   $ct/CONTACT_ID eq $cmpesn/CONTACT
                   return ($tpl/ORDER_QTY
                          ,$tpl/RETAIL_AMT
                          ,$tpl/SALE_AMT
                          ,$pr/PRODUCT_DESCR
                          ,$pr/PART
                          ,$cmpesn/IMEI
                          ,<BankDetails>
                               {for $conn in ora:view("V_PIE_CONNECTION")/ROW
                                for $scon in ora:view("V_PIE_SERVCON")/ROW
                                for $tpp in ora:view("V_PIE_TPPLAN")/ROW
                                for $tppc in ora:view("V_PIE_TPPLAN_COMPLINE")/ROW
                                for $tppcd in ora:view("V_PIE_TPPLAN_COMP_DETAIL")/ROW
                                for $al in ora:view("V_PIE_ACCOUNT_LINK")/ROW
                                for $ad in ora:view("V_PIE_ACCOUNT_DETAIL")/ROW
                                for $bd in ora:view("V_PIE_BANK_DETAIL")/ROW
                                where $conn/CONTACT eq $ct/CONTACT_ID
                                and   $scon/CONTACT eq $conn/CONTACT
                                and   $tpp/SERVCON eq $scon/SERVCON
                                and   $tppc/SERVCON eq $tpp/SERVCON
                                and   $tppc/PPLAN eq $tpp/PPLAN
                                and   $tppcd/TPPLAN_COMPLINE eq $tppc/TPPLAN_COMPLINE
                                and   $al/AC_DET eq $tppcd/OPT_STRING
                                and   $ad/ACCOUNT_DETAIL eq $al/ACCOUNT_DETAIL
                                and   $bd/BANK_DETAIL eq $ad/BANK_DETAIL
                                return ($bd/BANK_NAME
                                       ,$ad/ACCOUNT_NAME
                                       ,$ad/ACCOUNT_NUMBER
                                       ,$ad/SORT_CODE
    </BankDetails>
    </Orderline>
    </Transaction>'
    RETURNING CONTENT),
    XMLFORMAT.CREATEFORMAT('TransInfo','USE_GIVEN_SCHEMA','test_1.xsd', 'http://xmlns.cpw.co.uk/CPW/EPOS/Order/RetrieveTransaction/RetrieveTransaction', NULL, NULL)) AS xml_string FROM DUAL;
    The view is created with no errors. Selecting * from it, however, gives:
    ORA-19201 - Datatype not supported
    Marrying the XML to the XSD shows nothing obviously wrong.
    Thanks,
    Ray.

  • Any workarounds for the 2880 pixel size limit?

    I have a client that would like a Flash animation that's 5440
    pixels wide, to span 3 widescreen monitors for a tradeshow
    presentation. Flash won't let me make the stage any bigger than
    2880 - does anyone know any ways around that limit?
    I Googled it and found out that you used to be able to scale
    the SWF beyond 2880 in an HTML file, and it would show well using
    Flash Player 7, but apparently that trick no longer works in
    Players 8+.
    Any other ways to make a single SWF that can span 3 large
    monitors?
    Thanks in advance,
    - Frank

    The problem here is the legacy flash document size constraint of 2880 x 2880 pixels. Why is this limitation still in place? Most screen have landscape orientation and we have this square constraint that turns out to be a waste if you are developing for larger screen displays and anything that is 4:3 or 16:9. Something does not add up here. What if someone needs to make a dual wide screen HD show that measured 3840 x 1080 pixels? We can do setup documents at 3840 x 1080 pixels in PowerPoint, PDF, Silverlight (at least this is what I have read regarding Silverlight), but not in Flash. Why not?
    If Flash is a platform… then it needs to spread its wings a bit and embrace all the potential uses that are non-web. Flash represents multimedia delivery to millions, but shackling it to the 2880 x 2880 pixel limitation for a document size is problem for many people now and looming for those working toward have the flash engine as a core component in media delivery. At least give us a dual Wide screen monitor resolution of 3840 x 1080 pixels instead of a square of 2880 x 2880 pixels – which no one really uses (at least I have not seen any sqaure screens lately). Hey, if Adobe decided to shave off on the unused pixels from the 2880 height (2880 – 1080 = 1800) of the format you get an additional 1800 pixels that could applied where it is needed – to the width of the document size… giving us a 4680 x 1080 pixel document. This could then be used for immersive simulation, game situations, and real-world wide-screen experiences.
    Sorry I don't have an answer, just the same question. "Any workarounds for the 2880 pixel size limit?"

  • Any workaround for - Like '%VALUE' to reference the index

    Hi
    I have an index on Col1 but it is not referenced because i am making like '%value'
    EX:
    where Col1 LIKE '%VALUE'
    this is a business request to search %Value and not Value%
    is there is any workaround for that ?
    Thanks

    Define working perfectly.
    Just because it's using an index doesn't mean it's efficient.
    One proper solution here is to create a function-based index to reverse the string.
    You could use the undocumented, unsupported REVERSE function to test but as a proper implementation you should probably implement your own reversing function.
    That way, instead of a leading wildcard, you end up with a trailing wildcard and you can use an appropriate index when suitable.
    e.g. something like
    CREATE INDEX i1 ON t1 (REVERSE(col1));
    SELECT *
    FROM    t1
    WHERE REVERSE(col1) LIKE REVERSE('%Value');

  • Any workarounds for the X11 apps segmentation faults on intel with 10.4.8 ?

    Hi,
    We've an X11 application, compiled for PPC, which runs fine with a G5 iMac on 10.4.8. However, it crashes with a segmentation fault on a MacBook Pro with 10.4.8 (running through Rosetta).
    Searching the web, we found that this seems to be a widespread problem for X11 apps running on Intel Macs with 10.4.8.
    Has this been submitted as an important bug to Apple?
    Are there any workarounds for it?
    Is the problem specific to PPC-only builds, or does it also happen with Universal builds?
    Thank you for any hints you could give about this,
    cesar
      Mac OS X (10.4.8)  

    A powerpc-binary program running under Rosetta can only load powerpc-binary modules...can't cross in and out of emulation within a single process. Perhaps your program is trying to load a module from X11 that is present as an intel-only binary? Rosetta is certainly no future-looking cure-all, just a stop-gap to allow one to keep using older stuff, and it is kinda fragile sometimes. If your target audience is both powerpc and intel machines, compile as a universal binary so it's native for everyone.

  • Is there any workaround for URL & TABS

    Hi ,
    1.I have the following case mentioned at :
    URL region error when changing tabs
    2. I would like to know if there are any workarounds for this case, due to we urgently need this functionality.
    Thanks in advance
    Etay G

    Etay,
    The question on the post you referenced was answered thoroughly and has nothing to do with the subject of this post.
    If you have a new question, please post it here in full detail.
    Scott

  • Are there any workarounds for multiple PDF files created for a single Word 2011 document?

    I am running...
    Mac OS X Version 10.6.8
    Word for Mac 2011
    Adobe Acrobat X Version 10.1.0
    I am working with 100 plus page Word documents that go back and forth between portrait and landscape layouts. When I attempt to create an Acrobat PDF document (or one using the native Mac PDF function), I end up with 10 to 15 separate PDF documents. One person suggested that I simple stitch them together, which is an inordinate amount of work as compared to how simple it is do on my PC with older versions of Acrobat and Word. However, I have noticed that the margins are way off and the pagination is off sometimes too. So even this workaround is not the answer. I last talked to Microsoft, Apple, and Acrobat tech support about five weeks ago. Each blaming the other two but saying they were working together to solve the problem. My recent searches of forums has not revealed any solutions nor have updates changed anything.
    As I am anticipating the day when my old PC stops working, I am searching for a possible workaround or other solution for this problem.

    Thanks for your reply.
    The tip-off may be this.  In Word 2007 on my pc when I print the document to a printer, Word generates 1 print file for the entire document. If I print to PDF, one print file is generated by Word and Acrobat creates a PDF from this file.
    What I just discovered by accident was that when Word for Mac 2011 prints the same Word document to a printer it creates about 10 different print files.  So instead of a 100 page PDF document I end up with 10 PDF documents of 1 to 30 pages depending where the page orientation shifts in the Word document. If you print to a printer that is not turned on, you can see all of the files stacked up in the printer queue. I suspect that Word for Mac 2011 generates 10 different print files during the PDF creation process and therefore Acrobat logically creates 10 different PDFs.  Unfortunately, there are margin errors and other layout errors in these 10 different PDFs so stitching them together is useless.
    I am beginning to think that the way Word for Mac 2011 prints documents is simply incompatabile to Acrobat or the PDF creator that is native to the Mac OS.
    I just think that this is a problem that Microsoft is going to have to fix.

  • Is there any workaround for Bug 6644652 ?

    Hi
    This issue is documented in DBAppTables GTC Connector at Known issues:
    "Bug 6644652
    Reconciliation of account deletion is not supported. In other words, if a record is
    deleted from the target database, then this deletion is not reconciled into Oracle
    Identity Manager"
    Is there any workaround that can be used ?
    Thank You in advanced,
    Ionut

    EHLO!
    Today I ALMOST finalized my delete-recon (is for AD objects, but I think it may work in many contexts). As the pals said, you have to use the createDeleteReconciliationEvent method from the operations API.
    I had a big problem: I spent a day looking for a NullPointerException that was raised just when this method is called. I realized that there is not a problem itself, the exception was raised because I was launching from the Eclipse project! So, instead of develop all the stuff and then pass it to OIM, I had to maje the jar, put it into the ScheduleTask folder, and execute it with the Task Scheduler from the Design Console, or from the Admin Console.
    For a brief:
    1) make a class that extends com.thortech.xl.scheduler.tasks.SchedulerBaseTask
    2) implement the execute() method
    3) for creating the operator, you can call (tcReconciliationOperationsIntf)getUtility("Thor.API.Operations.tcReconciliationOperationsIntf") (getUility is inherited from SchedulerBaseTask)
    4) Make some Map object, with key/value pairs. Keys have to be the same as they appear in the Reconciliation Fields of the Resource Object, and at least you have to put the required ones. Call the method, the first parameter is a String with the RO ("Xellerate User", "AD User", "Exchange", etc).
    For example, you can make something like this:
                   HashMap hm = new HashMap();
                   hm.put("User ID", "drldap");
                   hm.put("objectGUID", "12345679");
                   try {
                        reconOps.createDeleteReconciliationEvent("AD User", hm);
                   catch(Exception e) {
                        e.printStackTrace(System.out);
    Hope it was helpful. Enjoy!
    DrLDAP!

  • LabVIEW 2009 SP1 Run-Time Engine (Minimum) (32-bit) for Windows - Supported Features

    Hi,
    Can some one please point out what features are supported by the LV RTE (Minimum ) [LabVIEW 2009 SP1 Run-Time Engine (Minimum) (32-bit) for Windows]
    1) Is there a limit on the size of the exe which can be run on it?
    2) Will this support additional modules like DAQ etc.,? Or do we have to chose the regular installer ( 170 Mb ) for that purpose?
    3) If a list of what it does or does not support is available, it would be extremely helpful.
    Thanks In advance.
    Regards,
    Vijay

    Anand, 
    I did go through both the links that you had sent earlier before posting on the forum. For eaxample refer the following link where it says,
    http://joule.ni.com/nidu/cds/view/p/lang/en/id/1599
    It does not contain the full run-time engine, but will allow some executables to run.
    1) What do they mean by 'some' executables. Is there a list of yay's and no's available?
    2) Can someone from NI reply to this and shed more knowledge?
    Regards,
    Vijay 

  • Is there any workaround for exporting 24 bit AAF of OMF in soundtrack?

    Hi
    Soundtrack pro seems to have only 16bit AAF export function. Is there any workaround to be able to export a multitrack session in higher bit (24bit industry standard) resolution, in AAF or OMF format?
    I know Final Cut has 24bit AAF export funcion, but sending clips from soundtrack to Final Cut seems not possible. Only sending mastermixes to FC is possible. But I want to send individual clips to FC.
    Or any other suggestions are welcome for solving this problem.
    Thanks!
    Xske

    If Premiere offers you the option to use hardware encoding, then your card is recognized. There is normally nothing more to do.  If I understand you correctly, you are concerned that Premiere is not using the card.  There are 2 ways to check if it is:
    1. Install someting like GPU-Z (google it, it's free) to monitor the GPU. Start to encode something that will actually use CUDA cores, and you should see some activity reported, given as a percentage.  Keep in mind that CUDA is only used for some specific tasks (some effects, resizing) when encoding.
    2. Export a file that will use CUDA when encoding 2 times, once with hardware encoding enabled, and then with software only. Is there a difference in the time needed to complete the export?

  • Is there any workaround for log LNs in read-only env. UNEXPECTED_STATE

    I'm at 5.0.43 and encounter the same problem mentioned in The Berkeley DB Java Edition Package: BDB JE Library Version  11.2.5.0 (Release 5.0.55) Change Log
    Fixed a bug that caused an exception such as the following, when opening an Environment in read-only mode. This occurred under certain circumstances when a clean shutdown (final checkpoint) was not performed when the Environment was last used by a read-write process.
    I have below 2 questions:
    1) I want to know if there's any workaround to this problem without having to upgrade BDB-JE.
    2) Just want to make sure we will not have data compatible issue if we have to upgrade to the latest version
    Thanks for your help.

    This is a transient problem when opening in read-only mode.  It does not cause corruption or a compatibility issue.
    If you open the environment read-write and perform a normal shutdown (Environment.close), then it should be possible to open the environment read-only again.
    However, it is possible that it could happen again if the read-write process exits without calling Environment.close.  The only way to guarantee it won't happen again is to always call Environment.close in the read-write process before opening it read-only, or upgrade to the latest version of JE 5.
    --mark

  • Any workaround for using Excel  2000 in 2004s ???

    Greetings.
    1. We have Excel 2000 and Windows 2000 standardized in the company and not upgrading to the Windows XP/Vista  in the immediate future.
    2. Since the new 2004s BI tools do not support downloading to Excel 2000, we are looking for other options such as continue using  3.5 query designer.  But from the 3.5 Query designer "Display Query on the web", Publish to Portal or Bex Broadcaster links not working or erroring out.
    Greatly appreciate your tips and suggestions for this scenario.
    Thanks.
    PK

    Hello PK,
       Do not try to find a workaround  to use excel 2000 with NW 2004s. This may not be useful as Excel 2000 is not supported by SAP for NW 2004s.
    But you should be able continue using BW 3.5 tools. Please post the errors that you are getting so that members can help you.
    Regards,
    Sheik Bilal

  • Can't Open Any Apps: "architecture not supported"

    I'm using Snow Leopard on my Intel MBP, but keep handy a clone from a couple years ago on an external hard drive....in case I need to boot from another drive for diagnosis/repair.
    The clone on the external is from OS 10.5.7. And whenever I try to launch any apps (including native Mac ones like Safari....which are the versions that were on disk when I cloned) on that drive, I get "can't open; architecture not supported".
    I've tried adjusting an app's permissions to let me read/write/own,  renaming, and copying the apps.....but they won't open.
    Any ideas?
    I'll note that I'm trying to launch apps that were cloned at the time I was running OS 10.5.7. I'm not trying to launch apps from my internal drive.

    Unless you cloned a working Snow Leopard installation, which unless I'm misunderstanding you did not - you said you cloned 10.5 - then again you probably do not have the Rosetta environment installed. It won't matter that you have 10.5 on the external disk and that the applications are on that drive unless you boot from that drive. Nor will it matter that you cloned a 10.5 drive to your internal when you then upgrade to 10.6; the Rosetta environment does not carry over from 10.5 automatically when you upgrade to 10.6.
    Again, try installing Rosetta per the instructions to which I linked.
    Regards.

  • Crosstab problem:  Any workaround for that?

    Post Author: jef.zapata
    CA Forum: Charts and Graphs
    Hi,
    I've got a mater report, in which I use a subreport as detail. My subreport consist as a crosstable. For each record of the master report, I pass in parameter a key to the subreport to get the appropriated crosstable. The problem is that for one crosstable, I can get multiple page, and when printing/previewing the master report, if the record row returns a crosstable on multiple page, I only got one page print: the next ones are missing.
    Is there a way to prevent that? Is there any workaround? maybee its my method that is not the best one to use in this case...
    Thanks!

    Define working perfectly.
    Just because it's using an index doesn't mean it's efficient.
    One proper solution here is to create a function-based index to reverse the string.
    You could use the undocumented, unsupported REVERSE function to test but as a proper implementation you should probably implement your own reversing function.
    That way, instead of a leading wildcard, you end up with a trailing wildcard and you can use an appropriate index when suitable.
    e.g. something like
    CREATE INDEX i1 ON t1 (REVERSE(col1));
    SELECT *
    FROM    t1
    WHERE REVERSE(col1) LIKE REVERSE('%Value');

Maybe you are looking for

  • How can I install just selected features( like just nidaq drivers) for NI-DAQ 693 via command line silently

    I am trying to create installation program for my application which uses NI-DAQ drivers. I want to include the installation of NI DAQ drivers with my program. I know that you can use setup.exe from command line. But for version 6.9.3 is there a way I

  • What is causing this?

    I am messing about with a css menu, and all looks as it should in IE, but in Firefox and Safari the menu starts to far over to the right. My code is - #lowermenu{ padding: 1px 0px 1px 1px;/ background-color: #FFFFFF; text-decoration:none; font-size:

  • Encore CS6 - Black menu

    Hi there, I am currently working on a project which requires me to develop motion menu's on dvd with transisions from menu to menu, but I keep getting black menus instead of the chosen asset as backgrounds for the menus. Here are the elements involve

  • Converting a .psd photo to Jpeg.

    I need help. The main goal is to decrease the MB size of the picture. How do you convert a .psd from Photoshop Elements 8 to a JPeg. Thanks. Gerry

  • PS tutorial using custom shape tool - why is shape so huge?

    I am following a PS tutorial to create a simple spot pattern. When I open the new doc and click on the custom shape to select a spot shape & place it in centre of grid, the shape is massive - way bigger than the document even. What am I doing wrong p