Rawvalue reference Error: Invalid property get operation; dataGroup doesn't have property

When I reference a rawvalue of an object that does not exist I get an error.  If the object does not exist i want to hid the form field. Any help with the javascript to do this

Hi,
This seems a little strange, a dataGroup sounds like you are referencing an object in your data connection, not a form object.  A dataGroup object represents a group element, such as a complex type in an XML Schema definition and it does not have a rawValue (with uppercase "V") property.  If you are referencing this object via a resolveNode call then you will get a null result if it does not exist.
Regards
Bruce

Similar Messages

  • Invalid property get operation; subform doesn't have property 'rawValue'

    Hello,
    I have a form where on the Submit button I'm putting JavaScript that checks each field and radio button set to ensure the user has filled something in. I have used this script before successfully, but this time it is not working and for the life of me I can't see what wrong. Also, I've not encountered this particular error message before. Here is the text I am seeing on clicking the Submit button:
    Acrobat JavaScript Debugger Functions Version 11.0
    Acrobat EScript Built-in Functions Version 11.0
    Acrobat SOAP 11.0
    Exception in line 5 of function top_level, script XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
    GeneralError: Operation failed.
    XFAObject.rawValue:5:XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
    Invalid property get operation; subform doesn't have property 'rawValue'
    I'm glad to share my script if that's helpful as well.
    Thanks in advance for your help,
    MDawn.

    Here's the script:
    var v1 = page1.firstPage.positioned.firstLine.reqType.rawValue;
    var v2 = page1.firstPage.positioned.firstLine.orderQuote.rawValue;
    var v3 = page1.firstPage.positioned.description.rawValue;
    var v4 = page1.firstPage.positioned.rentExempt.rawValue;
    var v5 = page1.firstPage.positioned.header.posSub.storeNbr.rawValue;
    var v6 = page1.firstPage.positioned.header.posSub.storeName.rawValue;
    var v7 = page1.firstPage.positioned.header.posSub.RadioButtonList.rawValue;
    var v8 = page1.firstPage.positioned.header.posSub.storeContact.rawValue;
    var v9 = page1.firstPage.positioned.header.posSub.email.rawValue;
    var v10 = page1.firstPage.positioned.header.posSub.contactsPhone.rawValue;
    var v11 = page1.firstPage.positioned.header.posSub.custName.rawValue;
    var v12 = page1.firstPage.positioned.header.posSub.custPhone.rawValue;
    var v13 = page1.firstPage.positioned.header.posSub.custEmail.rawValue;
    var v14 = page1.firstPage.positioned.dateNeeded.RadioButtonList.rawValue;
    var v15 = page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2.rawValue;
    var v16 = page1.firstPage.positioned.dateNeeded.addlInfo.rushFees.rawValue;
    var v17 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.rushFeePrices.rawValue;
    var v18 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonList.rawValue;
    var v19 = page1.firstPage.positioned.chairsArtInfo.RadioButtonList.rawValue;
    var v20 = page2.personalization.header.RadioButtonList.rawValue;
    var v21 = page2.shipping.shipTo.RadioButtonList.rawValue;
    var v22 = page2.shipping.customerAddress.rawValue;
    var v23 = page2.shipping.rushOrders.RadioButtonList.rawValue;
    //REQUEST
    if ((v1 == "") || (v1 == null))
       xfa.host.messageBox( "Please select the type of request" );
       xfa.host.setFocus("page1.firstPage.positioned.firstLine.reqType");
    //ORDER_QUOTE
    } else {
    if ((v2 == "") || (v2 == null))
        xfa.host.messageBox( "Please indicate whether this is an order or quote" );
      xfa.host.setFocus ("page1.firstPage.positioned.firstLine.orderQuote");
    //DESCRIPTION
    } else {
      if (((v1 == "3")) && ((v3 == "" || v3 == null)))
      xfa.host.messageBox( "Please enter a description" );
      xfa.host.setFocus("page1.firstPage.positioned.description");
    //RENT EXEMPT
    } else {
      if (((v1 == "2")) && ((v4 == "" || v4 == null)))
      xfa.host.messageBox( "Please indicate if the order is rent exempt or royalty exempt" );
      xfa.host.setFocus("page1.firstPage.positioned.rentExempt");
    //STORE NUMBER
    } else {
      if ((v5 == "" || v5 == null))
         xfa.host.messageBox( "Please enter the store number" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeNbr");
    //SCHOOL'S NAME
    } else {
      if ((v6 == "" || v6 == null))
         xfa.host.messageBox( "Please enter the school's name" ); 
      xfa.host.setFocus ("page1.firstPage.positioned.header.posSub.storeName");
    //COUNTRY
    } else {
    if ((v7 == "") || (v7 == null))
      xfa.host.messageBox( "Please enter the store's country" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.RadioButtonList");
    //STORE CONTACT
    } else {
    if ((v8 == "") || (v8 == null))
      xfa.host.messageBox( "Please enter the name of the store's contact person" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeContact");
    //CONTACT'S EMAIL
    } else {
      if ((v9 == "" || v9 == null))
         xfa.host.messageBox( "Please enter the store contact's email address" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.email");
    //CONTACT'S PHONE
    } else {
    if ((v10 == "") || (v10 == null))
      xfa.host.messageBox( "Please enter the customer's telephone number" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.contactsPhone");
    //CUSTOMER NAME
    } else {
    if ((v11 == "") || (v11 == null))
      xfa.host.messageBox( "Please enter the customer's name" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custName");
    //CUSTOMER PHONE
    } else {
      if ((v12 == "" || v12 == null))
         xfa.host.messageBox( "Please enter the customer's telephone number" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custPhone");
    //CUSTOMER EMAIL
    } else {
    if ((v13 == "") || (v13 == null))
      xfa.host.messageBox( "Please the customer's email address" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custEmail");
    //DATE NEEDED
    } else {
    if ((v15 == "") || (v15 == null))
      xfa.host.messageBox( "Please whether the order is needed by a specific date" );
      xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.RadioButtonList");
    //SPECIFIC DATE
    } else {
      if ((v16 == "" || v16 == null))
         xfa.host.messageBox( "Please enter date the order is needed" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2");
    //RUSH FEES
    } else {
      if ((v17 == "" || v17 == null))
         xfa.host.messageBox( "Please indicate if rush fees are applicable" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.rushFees");
    //RUSH PROCESSING FEES
    } else {
      if ((v18 == "" || v18 == null))
         xfa.host.messageBox( "Please select the rush processing fee that is wanted" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonLi st");
    //CHAIR ART INFORMATION
    } else {
      if ((v19 == "" || v1 == null))
         xfa.host.messageBox( "Please identify the format of the art for the chair" );
         xfa.host.setFocus("page1.firstPage.positioned.chairsArtInfo.RadioButtonList");
    //PERSONALIZATION
    } else {
      if ((v20 == "" || v20 == null))
         xfa.host.messageBox( "Please identify whether personalization is needed for this order" );
         xfa.host.setFocus("page2.personalization.header.RadioButtonList");
    //SHIPPING INFO
    } else {
      if ((v21 == "" || v21 == null))
         xfa.host.messageBox( "Please identify where the order will be shipped" );
      xfa.host.setFocus("page2.shipping.shipTo.RadioButtonList");
    //CUSTOMER'S ADDRESS
    } else {
      if ((v22 == "" || v22 == null))
         xfa.host.messageBox( "Please provide the customer's address" );
         xfa.host.setFocus("page2.shipping.customerAddress");
    //RUSH FEE
    } else {
      if ((v23 == "" || v23 == null))
         xfa.host.messageBox( "Please select the rush fee that the customer wants" );
         xfa.host.setFocus("page2.shipping.rushOrders.RadioButtonList");
    } else {
      Button2.execEvent("click");

  • My Timesheet error: invalid property

    Hi ,
    When i am trying to create the time sheet in fiori i am getting the error "Invalid property",we added 2 custom fields in cats,but i am not sure is there any changes i need to do in the GW or Front end .Can any body suggest any solutions for this.
    Thanks,
    Mohan

    Hi Mohan,
    As a first step make sure all the GW and front end requirements are up to date. You can check that here. If that all is ok then I would suggest making sure you have all the necessary support packs in place - check here.
    Thanks,
    Liz
    (SAP Technology RIG)

  • Error - "Invalid floating point operation"

    I keep getting a message that says "invalid floating point operation" and the files that I am trying to read are scrambled.  They used to be ok.  Please advise....

    Hi,
    I have the same problem, Laptop Qosmio F50 is 4 weeks old and now the webcam stopped working.... it's quite annoying, whenever I start the application it says ' Invalid floating point operation'. To me this sounds as some issues in the software and the compatibility on vista, I think it could happen after putting the laptop to hibernate or suspension state and then when it comes back, the webcam stops working. so let's see if toshiba realeases a fix or new version quickly, otherwise I would be quite disspointed with such a good laptop.

  • Qosmio F50 - Webcam error - Invalid floating point operation

    Hi
    I have Qosmio F50 (4 Weeks old) problem is after two weeks webcam has stopped working *Invalid floating point operation*
    I have to close program via task manager, *Camera assistant software not responding*.
    Have tried following.
    Update all drivers, system restore
    Toshiba help line after all efforts suggested complete reinstall this is to aggressive for me as it would loose certain software on laptop that I had to transfer from old PC and had to plead with certain software companies to transfer (only one license etc).
    Has anybody else had this problem and is there a simple solution
    Will

    Hi,
    I have the same problem, Laptop Qosmio F50 is 4 weeks old and now the webcam stopped working.... it's quite annoying, whenever I start the application it says ' Invalid floating point operation'. To me this sounds as some issues in the software and the compatibility on vista, I think it could happen after putting the laptop to hibernate or suspension state and then when it comes back, the webcam stops working. so let's see if toshiba realeases a fix or new version quickly, otherwise I would be quite disspointed with such a good laptop.

  • Hi, I'd like to buy a 13 inch macbook air. My biggest concern is to get one that doesn't have high EMFs to it and that has low heat. Which one would you suggest? The older 2010, or the 2011 with the i5 chip or the newest with the i7 chip?

    Hi, I would like to buy my first laptop computer, the 13 inch macbook air.
    My biggest concerns are:
    1. Which has the least amount of EMFs? I'm sensitive to that and have enjoyed my iPad (original) that has no EMF fields.
    2. Which runs the coolest?
    I want the 128 gig one. Which would fit my requirments, the 2010 with the 2 Core Duo, the 2011 I believe it is with the i5 chip, or the newest one with the i7 chip? From the reviews I have read, it sounds like the one with the i7 chip runs the hottest.
    I'm sure I am missing a whole lot of information, please fill me in!
    Thanks,
    Martha

    Changing the 13 inch screen resolution will unfortunately result in a less sharp display, simply because all these type of displays have an 'native' resolution which gives optimal results, leaving other settings less crisp. The 13 inch MBA panel has a native resolution of 1440x900, which is remarkable for a screen of that size (I have 17 inch widescreen monitors at work with that same resolution) but it can certainly be set at a lower figure.
    The one area where the trackpad has benefits over a mouse is that you can use multi-touch gestures, just as on the iPad. That's a feature I really like, particularly being able to zoom in and out and scroll up and down, though of course other gestures are supported too. As such then it does indeed work much like the touch screen capaibilities of an iPad.
    If you have a Mighty Mouse the one with the tiny scroll-ball on the top-front, then they are notorious for scrolling issues due to getting clogged up. They're not hard to clean, but the Mighty Mouse is notably inferior to the later Magic Mouse, which doesn't have a scroll-ball or wheel, but uses the whole top panel for scrolling using gestures in much the same way as a trackpad. I've found a Magic Mouse a good investment for any Bluetooth-capable Mac (which of course includes all MBA models).
    [ON EDIT]: The MBA doesn't come with Flash, but it is a free download from Adobe, and is very simple to install. Just make sure you get the installer from Adobe.com and not any other location since there is some malware which masquerades as a Flash installer but is not safe to install! Beware though that Flash is very processor intensive, and if anything will run the MBA fans up to speed, and heat the system up, it is that.
    Good luck with the readings!!

  • Want to get broadband, house doesn't have a main s...

    Hi,
    Am desperate to get broadband so I can get my games console online and not have to suffer from using my Netbook with a mobile broadband dongle.  However, my mum's house phone wiring is so ancient that we don't have a main phone socket.  We seem to have an old (52a?) junction box by the front door in the hallway and one in the living room (no phone in there, just an ancient 1960's/70's phone in the kitchen where you have to put your finger in a hole and move the dial thing around!).
    We have a cheap upstairs bedroom phone which has a phone socket, but know this is not a main socket as it was installed over 20 years ago when my mum was giving a phone as a present and there was already wiring into the bedroom already from the previous occupant).
    So, to get broadband will we need a main phone socket fitted downstairs? 
    Or will this secondary/extension socket be okay? (guessing it won't be from what I have tried to learn online)
    I called BT last week but just got a confusing sales patter.  They were advising purchasing infinity and the lady said that this would include installation of a main socket if required.  Is this right?  Is so it sounds like a good deal?
    If they do install this how would it effect the existing phones and wiring in the house?  Would they have to be ripped up and replaced?  How big a job would this be?
    Sorry for the length and amount of questions.  My mother is very scared of any sort of change so I need to convince her of the need to get broadband while reassure her it won't be a huge hassle!
    Help and advice would be much appreciated...

    Thanks sjtp,
    Sorry for being cluless, it is a minefield.
    The main reason for broadband is getting my XBox 360 online (and PS4 when it comes out hopefully).  I wouldn't be playing games online on a huge basis, it would mainly be for authenticating purchases online (I missed out on the Catwoman content on Batman: Arkham City and missions on Mass Effect 2 by not being online), downloading arcade titles and DLC missions for games I have bought on disc.  Gaming seems to be going very online-centric, even if you only want to play single player games! 
    It would also be used for basic Internet use on my Netbook, I'm not interested in downloading or watching movies or TV online.
    I have deduced that the microfilters with the BT HomeHub would fit the upstairs phone socket, but my concern is that this is not the main line and the seemingly main phone point is an ancient junction box it can't be connected to any filter.
    Do you think the normal BT broadband package would work as things stand, with just connecting the HomeHub to the upstairs socket?  Last thing I want is to go ahead and find out it doesn't work with the existing phone infrastructure aand that an engineer is required after all. 
    Sorry I have explained it so poorly!

  • XML Source Error - cache property

    Hello,
    I am using Livecycle Designer and am trying to edit an existing form.
    I have no problem editing in the design view and master pages, however there are certain texts on the preview and printed form that are only viewable in the xml source (that's the only place I can see them anyway!!).
    However when trying to edit the xml source to change these texts I get an XML Source Error popup and cannot save change.
    'The following error was found with the xml source'
    'Invalid property set operation; cache doesn't have property '#text''
    Don't know what this property '#text' is or what the error refers to. I can't find anything online about it. Could it be a setting in form property - I've tried changing some of these but no joy!!
    Any help greatly appreciated.
    Deep.

    Hi,
    I suspect that your form is corrupt. You need to be careful when "editing" a form in the XML Source. If you delete incomplete sections, it may throw an error.
    One option may be to copy all of the visible objects into a new form.
    Good luck,
    Niall

  • WebAS - invalid property value

    Hi,
    I started to apply SP11 to WebAS 6.4 SP9 and now having problems starting the dispatcher-process. The developer-trace shows two errors:
    error => Invalid property value [box.number/J2EJC00MC00009304] [jstartxx.c 808]
    error => Invalid property value [system.id/0] [jstartxx.c 808]
    I can't figure out why these values are wrong. What are the right values and where to set them?

    Hello,
    I found the same problem.
    When upgrading from WebAS 6.40 SP09 => SP11 (or SP12) the update process stops before "Deploy online" because the J2EE  engine came not up.
    This is because a wrong jvm parameter in the dispatchers default configuration in  WebAS 6.40 SP9:
    Xms170m instead <b>-</b>Xms170m.
    To fix the problem it seem to be the best choise to use the configtool BEFORE starting the upgrade to SP11 or 12.
    Move to the instance_IDxxx\dispatcher_IDxxx general tab and correct the wrong jvm parameter Xms170m to -Xms170m.
    Thats all.

  • I get error 1055 "Object Reference Is Invalid" when I try to write to a property node

    Hi, I'm trying to get these results to be displayed in two tables now, where I originally had them being displayed in just one. Outside of the attached vi, I can just copy the value property from one table to the other after this vi has run, and the table values appear properly. The problem with that is, that any table property I assign (changing background colours to be exact), is not considered part of the value property, and thus isn't copied when I copy the value from one to the other.
    The thing I can't understand is that the second set of property nodes (at the bottom), give me the "Object Reference Is Invalid" when I added them. I've tried everything I can think of, but can see no logical reason why I get that error for those two, while I don't get the error for the top two (not wired to constants).
    Any help on this would be much appreciated. Thanks
    Geoff
    Attachments:
    Table Display Testing.vi ‏396 KB

    The logical reason that you're getting that error is that you are not passing in a reference to Table In Two. The control is not wired to the connector pane so you are not getting a reference from the calling VI.

  • [svn:fx-4.0.0] 13531: * Fixed invalid property reference error reporting by postponing the

    Revision: 13531
    Revision: 13531
    Author:   [email protected]
    Date:     2010-01-15 12:50:59 -0800 (Fri, 15 Jan 2010)
    Log Message:
    Fixed invalid property reference error reporting by postponing the
      validation until prelink when the MxmlDocument's type is available.
    QE notes:
    Doc notes:
    Bugs: SDK-22995, SDK-24738
    Reviewer: Gaurav, Darrell
    Tests run: checkintests, mxmlcunit
    Is noteworthy for integration: no
    Code-level description of changes:
      modules/compiler/src/java/flex2/compiler_en.properties
        Renamed css.StyleDef.InvalidPropertyReference to
        css.StylesContainer.InvalidPropertyReference.
      modules/compiler/src/java/flex2/compiler/css/StyleDef.java
        Removed InvalidPropertyReference checking from processReference().
      modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
        Modified setMxmlDocument() to store a reference to it's QName.
        Modified validate() to iterate over all style properties and to
        call validatePropertyReferences() if mxmlDocumentQName is not
        null.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22995
        http://bugs.adobe.com/jira/browse/SDK-24738
    Modified Paths:
        flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler/css/StyleDef.java
        flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
        flex/sdk/branches/4.0.0/modules/compiler/src/java/flex2/compiler_en.properties

    Hi
    yes, I had the same issue and I found a solution.
    You need to request a patch for BUG 9212862 (already corrected in WLS 10.3.3) and do the follwing:
    javax.xml.ws.BindingProvider provider = (javax.xml.ws.BindingProvider)port;
    java.util.Map context = provider.getRequestContext();
    context.put(weblogic.wsee.jaxrpc.WLStub.POLICY_COMPATIBILITY_PREFERENCE, weblogic.wsee.jaxrpc.WLStub.POLICY_COMPATIBILITY_MSFT);      
    This will cause the SecurityMessageArchitect class of WLS to not send the SecurityTokenReference in the Soap security header.
    Please note that is evidently a non-comformity to the specs of microsoft:
    Please give a look at
    http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf (8.3 Signing Tokens)
    and also at:
    http://www.oasis-open.org/committees/download.php/16768/wss-v1.1-spec-os-SAMLTokenProfile.pdf
    (3.4 Identifying and Referencing Security Tokens)
    A SAML key identifier reference MUST be used for all (local and remote) references to SAML 1.1
    assertions. [...]
    All conformant implementations MUST be able to process SAML assertion references occurring in a
    <wsse:Security> header or in a header element other than a signature to acquire the corresponding
    assertion. A conformant implementation MUST be able to process any such reference independent of the
    confirmation method of the referenced assertion.
    It follows that the .NET 3.5 is a non conformat implementation: I would gladly know which is the position of Microsoft on that.
    ciao
    carlo

  • On cRIO-9033, property node: Owning VI Reference is Invalid

    I am starring for the first time to work with a UI on cRIO-9033. The code I am trying to adapt to work on the RT is working on Windows just fine. But when I put it on the RT it throws errors. I looked through the code and I kept getting error 1026 Reference is No Longer Valid. I made a very simple code to try and run (as linked below), and it throws the same error.
    When I probe the error coming out of the VI Property Node: Panel, it gives me an Invalid Reference Error. Nothing closed the reference and the VI is obviously still running and in memory since this is the VI. I'm not sure what is wrong. Could it be that I am running it from development environment? Or is this a quirk with programming in Linux?
    Attachments:
    Simpler UI.vi ‏16 KB

    I found another bug. You just to follow my instructions if you don't mind
    Open the attached code
    Run it. It should work fine
    Move anything on the front panel and save it
    Run it. You should get errors.
    I'm not sure what is wrong but I can reproduce the problem over here. 
    BEFORE IMAGE
    AFTER IMAGE
    notice the I moved error out 2
    Actually on my more complicated example the property node giving the panel references passes invalid references all the time. Not just when I resave it.
    Attachments:
    Simpler UI.vi ‏19 KB

  • Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.
      intially i created view object named EmpByEmail.........for that EmpByEmail1 is created in datacontrols....i deleted EmpByEmail in demo.model by mistake and i created again with same name EmpBYEmail another view object...again another EmpByEmail2 is created in datacontrols.....
    while i am running i am getting following error:::::::
    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Hi,
        Please seasrch for the EmpByEmail1 file in ur project and remove all the details in the Page Def and UI and then try again.
    Due to the EmpByEmail1 existance in page Def this may occur . It may help , still if it was not working then I am sorry for that.

  • An unexpected 'invalid property array index' error occured in wdbrlog

    Hi experts,
    My system is :
    SAP_BW 7.0 Path  0012
    SAP GUI Final Release Patch 24
    In my query definition, I right-click on one of the characteristics..Eg. Posting Date --> Properties --> Change 'Suppress Results Rows' option from "Never" to "Always". --> Press OK.
    Then I get this pop-up with error message:
    <u>Program Error Intercepted
    An unexpected 'invalid property array index' error occured in wdbrlog.
    1 error(s) are logged.</u>
    If I say continue, it kicks me out of BeX. I need to re-login to do the stuff.
    I find some information, but i dont know what happens.
    Did anyone get the similar error?
    Thanks,
    Marc

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi
    <Br>
    I am afraid you may have to re-install your SAP GUI and Business Explorer.
    <Br><Br>Hope it helps.
    <Br>
    <Br>
    Cheers
    Abhijit
    <Br>* Removed
    </FONT>

  • Getting Error 'Invalid export DLL or export format'

    Hi, we are getting the above error when exporting to Excel from Crystal Reports. Although the export is via one of our products, the process of exporting the report is controlled by the Crystal Report viewer which we have no control over.
    Basic system details are as follows:
    Operating system : - Windows Server 2003 R2 Service pack 2
    Crystal Reports : - Crystal Reports Developer version 12.0.0.683, product type : Full
    Problem summary : - When exporting a report, exporting to excel produces an error 'Invalid export DLL or export format'.
    We have tried the following so far, obviously to no avail:
    The Business Objects folder has been added to the PATH variable.
    Crystal Reports has been deinstalled and reinstalled.
    Your help in getting to the bottom of this is greatly appreciated!

    Hi.
    Please check the fourm
    "Invalid export DLL or export format" with Crystal Reports 2008
    Regards
    Gangadhar

Maybe you are looking for