Error #13 - XMLExporter Type mismatch

I have a customer using Access 2003 and SQL Developer 1.5.0.53
During the migration process with using Qucik migration or generating XML file
he gets an Type Mismatch from Access
I have used the older version of SQL Developer which was 1.2 and did not run into this issue. Looks like something has changed or needs to be changed.

Hi,
Could you please confirm the version of the Exporter tool you used? From what I can recall, the same version of the Exporter was shipped with 1.5 as was shipped with 1.2, which is 10.2.0.2.5.
Please refer to the following related thread, where you have also posted your issue - Re: Error #13 - XMLExporter - Type mismatch I would recommend following the Diagnosing Exporter Problems announcement on the Microsoft Access Migration to Oracle APEX forum - http://forums.oracle.com/forums/ann.jspa?annID=376, and ensure that you have carried out the necessary steps on your MDB file.
Have you tried using another version of the Exporter tool?
Regards,
Hilary

Similar Messages

  • Error Number 13 Type Mismatch VBScript runtime error

    I am getting the following error when administering web forms in HFM v 11.1.2.1.600.07
    Error Number:13
    Error Description:Type mismatch
    Error Source:Microsoft VBScript runtime error
    Page On which Error Occurred:/hfm/data/WebFormBuilder.asp
    Google searches led me to suggestions that this might be a problem with errors in my Member Lists, but I have checked and re-checked this.  The Member list loads without errors and does not resolve the issue.
    Fortunately the problem is only present in my DEV environment.  The error specifically occurs when you click the Rows or Columns tab in the web form editor.  All other tabs work fine.
    At the same time all web forms are also returning the following error on submit:
    An unknown error has occurred in the HsvWebFormGeneratorACM object.
    Error Reference Number: {FE2DBEB4-89E2-4177-A585-474BDAF18CB7};User Name: vincent@Native Directory
    Num: 0x80040d40;Type: 1;DTime: 23/03/2015 14:09:20;Svr: HYPAPPDEV;File: CHsvWebFormGeneratorACM.cpp;Line: 1122;Ver: 11.1.2.1.000.3082;
    Num: 0x80040d40;Type: 0;DTime: 23/03/2015 14:09:20;Svr: HYPAPPDEV;File: CHsvWebFormGeneratorACM.cpp;Line: 914;Ver: 11.1.2.1.000.3082;
    Num: 0x80040d40;Type: 0;DTime: 23/03/2015 14:09:16;Svr: HYPFNDDEV;File: CHsvWebFormsACV.cpp;Line: 711;Ver: 11.1.2.1.600.3779;
    My normal support options have been voided because I recently installed Microsoft Web Platform 5.0 on the server not knowing it might affect HFM and I am unable to verify whether this issue arose before or after this installation as I hadn't used the DEV environment in a while.
    Uninstalling MS Web Platform and rolling back the IIS settings has failed to resolve the  problem.
    I have the option to restore the environment, but the SQL box hosts 2 DBs used in our PROD environment so I am trying to avoid this.
    Can anyone suggest anything, be it an HFM-oriented or related to undoing changes caused by the installation of the Web Platform?
    Thanks!

    The root cause of the above error is a faulty Data form/Data Grid design which anyone try to run with particular POV. This issue can come up when you have row with Scalc or with NoSuppress option and you have also selected in the data form design the option to Suppress the row with Nodata/Invalid/Zero. This can be conflicting/ambiguous when user selects a POV for which the data form comes up with Nodata/Zero/Invalid rows and hence throws the above error.

  • Type mismatch error when compile under v. 10 from 8

    We have an old report done about 2005, now we found a bug, so I need to fix it, but after I changed and compiled it(Vb6 app). Just error out with type mismatch.
    I checked that I need to change the vb project reference to 10, and component to 10
    Still does not work.
    Any one can suggest?
    Thanks.
    Greg

    Also one more thing, does crytal tells more information about which field caused "type mismatch"?
    I am trying to creat a new report in 10, and add field one by one, but then I got another error saying "This field name is not known", is there any place I can find which field crytal is complaining from "Crytal Report Viewer". I just can not believe crytal is giving such unclear message. It should say "xxxx field name is not known".
    Also, I tried to input old report(8) into new (10), then saying database changed needs to fix report, after fixes, apparently it caused type mismatch, is there a way to see which fields it fixed?
    Thanks.
    Greg
    Edited by: greg chu on Dec 5, 2008 3:48 PM

  • Data type mismatch when inserting into text field

    Hello all,
    Using VB script and ASP.
    I have a page that inserts into a field (casenum) in a table (clientsw) in a database. The field (casenum) in the table is data type TEXT :
    I create a recordset and then an insert statement which the following is part of:
    Code to insert the casenum into the field
    rsClients("Casenum")=Right(Date(),2) & "E-100" & rsCasenumber("countervalue")
    It inserts a number like 09E-1004500
    I then have code that takes that string and passes it to the next page as a variable
    Session("UserID")=rsClients("CASENUM")
    response.redirect "done3.asp"
    When it gets to the next page it is assigned as UserID
    Dim svuserid
    svuserid = "0"
    if (Session("UserID") <> "") then svuserid = Session("UserID")
    %>
    My information inserts into the database exactly as I want it, but when it gets to the next page I get an error that is displayed that says the following:
    Microsoft JET Database Engine error '80040e07'
    Data type mismatch in criteria expression.
    /done3.asp, line 16
    My code on the second page is as follows:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/connNewdatabase1.asp" -->
    <%
    Dim svuserid
    svuserid = "0"
    if (Session("UserID") <> "") then svuserid = Session("UserID")
    %>
    <%
    set rsClients = Server.CreateObject("ADODB.Recordset")
    rsClients.ActiveConnection = MM_connNewdatabase_STRING
    rsClients.Source = "SELECT *  FROM CLIENTSW WHERE CASENUM=" + Replace(svuserid, "'", "''") + "  ORDER BY CASENUM"
    rsClients.CursorType = 0
    rsClients.CursorLocation = 2
    rsClients.LockType = 3
    rsClients.Open()
    rsClients_numRows = 0
    %>
    Line 16 is the one that says rsClients.Open()
    If I take the concatenation out of rsClients("Casenum")=Right(Date(),2) & "E-100" & rsCasenumber("countervalue") and have only rsClients("Casenum")=rsCasenumber("countervalue") and change the table field to number, I don't get the "datatype mismatch error"
    What do I change to enable me to leave the above statement concatenated and insert into the table correctly and complete the stuff on the next page?

    >This is an access database, varchar is not an option for a datatype.
    Sorry. In another thread I thought you mentioned using SQL Server
    >I changed the + signed to ampersands instead and it doesn't make a difference.
    I didn't think that was the problem. I was just pointing out that it's a bad practice. If you use the '+' on two strings that can evaluate as numeric, it will actually add rather than concat them.

  • Type Mismatch when run a job in DTW

    We migrated to SAP B1 SP01 PL09, we had a job for the datatransfer that was working normally but after updated when the job runs an error is showed: Type Mismatch.
    We tried to connect manually and work fine, the problem is in the Job:
    "C:Program FilesSAPData Transfer WorkbenchDTW.exe" -s c:prueba.xml
    I checked the sentence and is fine.
    Does anybody know why this happen??
    Thanks
    Daniela Nuñ

    Maybe the path is incorrect,have you check the name? maybe Program Files is incorrect but "Archivos de Programa" may work
    the upgrade maybe change some folder name.
    Me parece que la ruta podria estar incorrecta Daniela, quizas el nombre no es Program Files sino Archivos de Programa...ya revisaste eso? Quizas la actualizacion cambio algun nombre de carpetas
    Example
    "C:\Archivos de programa\SAP\Data Transfer Workbench\DTW.exe" -s C:\Documents and Settings\mquintanag\Mis documentos\testClientes.xml

  • What is a "descriptor type mismatch" occurred?

    I'm using iMagine Photo to export some graphics and I can't for the life of me understand why I keep getting a
    "iMagine Photo got an error: A descriptor type mismatch occurred".
    Just what is a descriptor type mismatch??
    The script hangs up at the
    tell thisImporter to make exporter with properties {export folder location:exportFolder, export file name:fileName, export resolution:{72.0, 72.0}}
    command.
    Thanks.
    Pedro
    Here's the whole script:
    property gCopyrightText : ""
    property gNewExifList : {}
    property gDestFolder : missing value
    property gExifList : {}
    property unicodeType : 1
    property floatType : 2
    property intType : 3
    property float3Type : 4
    global exportFolder
    set theFolder to "Photo [OSX]:Users:home:Desktop:temp export:"
    --set folderRef to exportFolder
    --return folderRef
    if (count of gExifList) is equal to 0 then
    InitExifList()
    end if
    set fullTitleList to {}
    set theResult to gExifList
    set gNewExifList to {}
    repeat with i from 1 to the count of gExifList
    copy titleText of (item i of gExifList) to the end of fullTitleList
    end repeat
    set gNewExifList to gExifList
    tell application "Finder"
    set myFolder to ¬
    (choose folder with prompt "Where are my photos?")
    set theFiles to every file of myFolder
    set gDestFolder to myFolder
    repeat with i from 1 to count of theFiles
    set thisFile to item i of theFiles as alias
    set fileName to the name of thisFile
    tell application "iMagine Photo"
    activate
    set thisImporter to import graphic thisFile
    set exportFolder to "Photo [OSX]:Users:home:Desktop:temp export:"
    tell thisImporter to make exporter with properties {export folder location:exportFolder, export file name:fileName, export resolution:{72.0, 72.0}}
    set theExtension to the export file extension of thisImporter
    set the export file name of thisImporter to (fileName & theExtension)
    set exportedFile to exportFolder & fileName as alias
    export thisImporter
    set exifData to the exif data of thisImporter
    tell application "Preview"
    open exportedFile
    end tell
    set myInfo to the exif unicode of item 1 of exifData --something like that
    set myTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ";"
    set theSchool to first text item of myInfo
    set theCategories to second text item of myInfo
    set theEvent to third text item of myInfo
    set theKeywords to fourth text item of myInfo
    set theID to fifth text item of myInfo
    --return theID
    set AppleScript's text item delimiters to ":"
    set theID to second text item of theID
    set AppleScript's text item delimiters to myTID
    set thePhotog to the exif unicode of item 6 of exifData
    set gArtistText to thePhotog
    display dialog ¬
    "Who are the people in the photograph (from left to right)?" default answer theID
    set theID to "ID" & ":" & space & (text returned of result)
    set gImageInfoText to theSchool & ";" & theCategories & ";" & theEvent & ";" & theKeywords & ";" & space & theID & ";"
    set firstItem to {exif type:copyright, exif unicode:gImageInfoText}
    set newExifData to {{exif type:info, exif unicode:gImageInfoText}}
    repeat with i from 1 to the count of exifData
    set thisItem to item i of exifData
    set thisItemExifType to the exif type of thisItem
    repeat with j from 1 to the count of gNewExifList
    if thisItemExifType is equal to the exif type of (item j of gNewExifList) then
    copy thisItem to the end of newExifData
    end if
    end repeat
    end repeat
    tell thisImporter to make exporter with properties {export file type:"JPEG", export folder location:(theFolder), export file name:fileName}
    set the export exif data of thisImporter to newExifData
    export thisImporter
    close thisImporter
    end tell
    end repeat
    end tell
    on InitExifList()
    using terms from application "iMagine Photo" -- iMagine Video users replace Photo with Video.
    set gExifList to {{exif type:exif make, exifData:unicodeType, titleText:"Maker"}, {exif type:exif model, exifData:unicodeType, titleText:"Model"}, {exif type:software, exifData:unicodeType, titleText:"Software"}, {exif type:orientation, exifData:unicodeType, titleText:"Orientation"}, {exif type:exposure time in seconds, exifData:floatType, titleText:"Exposure Time (sec)"}, {exif type:aperture fNum, exifData:floatType, titleText:"Aperture fNum"}, {exif type:exposure program, exifData:unicodeType, titleText:"Exposure Program"}, {exif type:ISO film speed, exifData:intType, titleText:"ISO Film Speed"}, {exif type:capture date, exifData:unicodeType, titleText:"Capture Date"}, {exif type:exposure bias EV, exifData:floatType, titleText:"Exposure Bias"}, {exif type:metering mode, exifData:unicodeType, titleText:"Metering Mode"}, {exif type:light source, exifData:unicodeType, titleText:"Light Source"}, {exif type:flash, exifData:unicodeType, titleText:"Flash"}, {exif type:focal length mm, exifData:floatType, titleText:"Focal Length"}, {exif type:capture width in pixels, exifData:intType, titleText:"Capture Width (pixels)"}, {exif type:capture height in pixels, exifData:intType, titleText:"Capture Height (pixels)"}, {exif type:gps latitude ref, exifData:unicodeType, titleText:"Latitude Reference"}, {exif type:gps longitude ref, exifData:unicodeType, titleText:"Longitude Reference"}, {exif type:gps latitude, exifData:float3Type, titleText:"Latitude"}, {exif type:gps longitude, exifData:float3Type, titleText:"Longitude"}, {exif type:gps altitude, exifData:floatType, titleText:"Altitude (m)"}, {exif type:gps altitude ref, exifData:intType, titleText:"Altitude Ref"}}
    end using terms from
    end InitExifList
    G5 Mac OS X (10.3.8)
    G5   Mac OS X (10.3.8)  

    In ...
    set CR2File to myFolder & CR2FileName
    ... you are trying to concatentate a path (myFolder) with a string (CR2FileName), into a string. Instead, AppleScript considers the 'CR3File' (after 'set') to be a list (or array) and thus the {alias ..., "..."} result.
    I do not follow your two ...
    set thisFile to item i of theFiles as alias
    ... lines, one after the other; nor the ...
    return CR2File
    ... line. Considering you are using 'return' as if to return from a user created handler. 'return' can also be used, in AppleScript, to represent a carriage return.
    Below is code, I believe - you were trying to create.
    Note the use of 'repeat with i in theFiles' and using only 'i', in place of 'repeat with i from 1 to count of theFiles' and needing to use 'item i of theFiles'.
    set myFolder to choose folder with prompt "Where are my photos?"
    tell application "Finder" to set theFiles to every file of myFolder whose name ends with ".JPG"
    set tLIst to {}
    repeat with i in theFiles
    copy ((myFolder as string) & ((characters 1 through (offset of "." in ((name of i) as string)) of ((name of i) as string)) & "CR2" as string)) to end of tLIst
    end repeat
    tLIst
      Mac OS X (10.4.4)  

  • PLEASE HELP - Type mismatch: 'LBound'

    I cannot consolidate anything in my production application, I am getting this error on my rules.
    File: CHsvScriptEngine.cpp Version: 9.3.1.0.1502 Line: 353 Error: (-2147209278)(0x80042FC2)(Error executing VBScript Microsoft VBScript runtime error, Line 1090:Type mismatch: 'LBound'.)
    Backround:
    I had an entity that had no parent (parent = root).
    I then moved this entity under a parent. Now when I calculate this entity I get the error message above.
    Any ideas?
    I have the exact same rules/memeber lists/metadata in my test application and it works fine but not in production??
    Rules:
    '==========================================================
    'Calculate current month to prior MONTH non-FX differece
    '==========================================================
    'Create a list of base balance heet accounts
    sAcctList = HS.Account.List("","Master1")
    'Loop through each account in the list
    For sAcctLoop = LBound(sAcctList) To UBound(sAcctList) LINE 1090
    'Set the accounts to process
    sAcct = sAcctList(sAcctLoop)
    'HS.Clear "A#" & sAcct & ".C2#Other.C4#[None]"
    HS.EXP "A#" & sAcct & ".C2#Other.I#[ICP None].C4#[None] =" & _
    "A#" & sAcct & ".C1#TOTC1.C2#Diff_CM_PM.I#[ICP Top].C4#[None] - " & _
    "A#" & sAcct & ".C1#TOTC1.C2#CTA_Chg_Mom.I#[ICP Top].C4#[None]"
    Next

    It turns out that I had loaded an incorrect member list file and it was missing the account member list that this section of code in the rules was looking for.
    An error message of "missing member list" would have been helpful. :(
    It was only through trial and error that I figured it out.

  • XQuery dynamic type mismatch

    Hi all, I am new to xmldb and XQuery. Having trouble with relational xmltable quering... Any help is appriciated.
    I want the following output
    id info loc
    4 stuff2 1
    5 stuff3 1
    6 stuff1 1
    7 stuff4 2
    etc....
    The problem if feel is loc does not have a relation to transaction in the data. But I get an error "XQuery dynamic type mismatch"....
    I have created a basic example below:
    SELECT a.*
    FROM "testTable",
    XMLTABLE('/root/org/transaction'
    PASSING testTable.column
    COLUMNS
    id varchar2(2) PATH '@id',
    info varchar2(50) PATH '/info',
    loc varchar2(2) PATH '@loc'
    ) a
    <root>
    <org loc="1">
    <Transaction id="4"><info>stuff2</info></Transaction>
    <Transaction id="5"><info>stuff3</info></Transaction>
    <Transaction id="6"><info>stuff1</info></Transaction>
    </org>
    <org loc="2">
    <Transaction id="7"><info>stuff4</info></Transaction>
    <Transaction id="8"><info>stuff5</info></Transaction>
    </org>
    <org loc="3">
    <Transaction id="9"><info>stuff6</info></Transaction>
    <Transaction id="10"><info>stuff7</info></Transaction>
    </org>
    </root>
    Thanks again for any help.
    Edited by: user8820504 on Jan 14, 2010 2:27 PM

    You need two distinct tables, one that maps Transactions and one that maps Orgs. Then join them on id. Something like this:
    SQL> with testTable as (
      2  select xmltype('<root>
      3  <org loc="1">
      4  <Transaction id="4"><info>stuff2</info></Transaction>
      5  <Transaction id="5"><info>stuff3</info></Transaction>
      6  <Transaction id="6"><info>stuff1</info></Transaction>
      7  </org>
      8  <org loc="2">
      9  <Transaction id="7"><info>stuff4</info></Transaction>
    10  <Transaction id="8"><info>stuff5</info></Transaction>
    11  </org>
    12  <org loc="3">
    13  <Transaction id="9"><info>stuff6</info></Transaction>
    14  <Transaction id="10"><info>stuff7</info></Transaction>
    15  </org>
    16  </root>') doc
    17  from dual)
    18  SELECT id, info, loc
    19  FROM testTable,
    20       XMLTABLE('/root/org/Transaction'
    21       PASSING testTable.doc
    22       COLUMNS
    23       id varchar2(2) PATH '@id',
    24       info varchar2(50) PATH 'info',
    25       tr xmltype PATH '.'
    26        ) trans ,
    27       XMLTABLE('/root/org'
    28       PASSING testTable.doc
    29       COLUMNS
    30       loc varchar2(2) PATH '@loc',
    31       trs xmltype PATH 'Transaction'
    32        ) orgs
    33  where extractValue(orgs.trs,'/Transaction[@id="'||id||'"]/@id') is not null ;
    ID INFO                                               LO
    4  stuff2                                             1
    5  stuff3                                             1
    6  stuff1                                             1
    7  stuff4                                             2
    8  stuff5                                             2
    9  stuff6                                             3
    10 stuff7                                             3
    Selezionate 7 righe.Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/01/10/crittografia-in-plsql-utilizzando-dbms_crypto/]

  • Type Mismatch error while saving a BPC Report using eTools

    Hi,
    Iam getting a 'type mismatch' error when trying to save a BPC Excel  workbook using eTools>Save Dynamic Template >Company>eExcel. I am saving it as an .xlsx file.
    Can anyone please help out and let me know why I am getting this error.
    Thanks
    Arvind

    Hi,
    You need to save the file as .xls extension.

  • Type Mismatch error while calling a Java Function from Visual Basic 6.0...

    Hi,
    I'm having a problem in calling the Java Applet's Function from Visual Basic. First, I'm getting the handle of the Java Applet and components of it using "Document.Applets(n)" which is a HTML function. I'm calling this function from Visual Basic. My code is something like this...
    ' // Web1 is IE Browser in my Form.
    Dim Ap,Comp
    Dim Bol as Boolean
    Bol = true
    Ap = Web1.Document.Applets(0).getWindow() ' \\ Gets the Parent Window.
    Ap.setTitle("My Java Applet") ' \\ Sets the Title of the window.
    msgbox Ap.getVisibility() ' \\ This will return a Java boolean ( true or false )
    Ap.setVisibility(Bol) ' \\ Function Syntax is : void setVisibility(boolean b)
    Here in my code , i'm able to call any function that which accepts Integer or String but not boolean. So, i m facing problem with Ap.setVisibility() function. It gives me a "Type mismatch error" while executing it. Can you please tell me a way to do this from Visual Basic !
    I'm using Visual Basic 6.0, Windows 2000 , J2SDK 1.4.2_05.
    Please help me Friends.
    Thanks and Regards,
    Srinivas Annam.

    Hi
    I am not sure about this solution. try this
    Declare a variable as variant and store the boolean value in that variable and then use in ur method.
    Post ur reply in this forum.
    bye for now
    sat

  • How can I fix a xquery resulting error ORA-19279: XPTY0004 - XQuery dynamic type mismatch: expected singleton sequence  - got multi-item sequence

    Hello,
    How can I improve the XQuery below in order to obtain a minimised return to escape from both errors ORA-19279 and ORA-01706?
    XQUERY for $book in  fn:collection("oradb:/HR/TB_XML")//article let $cont := $book/bdy  where  $cont   [ora:contains(text(), "(near((The,power,Love),10, TRUE))") > 0] return $book
    ERROR:
    ORA-19279: XPTY0004 - XQuery dynamic type mismatch: expected singleton sequence
    - got multi-item sequence
    XQUERY for $book in  fn:collection("oradb:/HR/TB_XML")//article let $cont := $book/bdy  where  $cont   [ora:contains(., "(near((The,power,Love),10, TRUE))") > 0] return $book//bdy
    /*ERROR:
    ORA-01706: user function result value was too large
    Regards,
    Daiane

    below query works for 1 iteration . but for multiple sets i am getting following error .
    When you want to present repeating groups in relational format, you have to extract the sequence of items in the main XQuery expression.
    Each item is then passed to the COLUMNS clause to be further shredded into columns.
    This should work as expected :
    select x.*
    from abc t
       , xmltable(
           xmlnamespaces(
             default 'urn:swift:xsd:fin.970.2011'
           , 'urn:swift:xsd:mtmsg.2011' as "ns0"
         , '/ns0:FinMessage/ns0:Block4/Document/MT970/F61a/F61'
           passing t.col1
           columns F61ValueDate                Varchar(40) Path 'ValueDate'
                 , DebitCreditMark             Varchar(40) Path 'DebitCreditMark'
                 , Amount                      Varchar(40) Path 'Amount'
                 , TransactionType             Varchar(40) Path 'TransactionType'
                 , IdentificationCode          Varchar(40) Path 'IdentificationCode'                 
                 , ReferenceForTheAccountOwner Varchar(40) Path 'ReferenceForTheAccountOwner'
                 , SupplementaryDetails        Varchar(40) Path 'SupplementaryDetails'       
         ) x ;

  • Getting Type Mismatch Error while passing Array of Interfaces from C#(VSTO) to VBA through IDispatch interface

    Hi,
    I am facing issues like Type Mismatch while passing Array of interfaces from .NET  to VBA and vice versa using VSTO technology.
    My requirement is that ComInterfaceType needs to be InterfaceIsIDispatch.
    My Interface definition is somewhat like this
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("AAF48FBC-52B6-4179-A8D2-944D7FBF264E")]
        public interface IInterface1
            [DispId(0)]
            IInterface2[] GetObj();
            [DispId(1)]
            void SetObj(ref IInterface2[] obj);
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("CDC06E1D-FE8C-477E-97F1-604B73EF868F")]
        public interface IInterface2
    IF i am passing array of above interface (created in C#.Net) to VBA using GetObj API,i am getting type mismatch error in VBA while assigning the value to variable in VBA.Even assigning to variant type variable gives TypeMismatch.
    Also while passing Array of interfaces from VBA using SetObj API,excel crashes and sometimes it says method doesn't exists.
    Kindly provide some assistance regarding the same.
    Thanks

    Hi,
    I am facing issues like Type Mismatch while passing Array of interfaces from .NET  to VBA and vice versa using VSTO technology.
    My requirement is that ComInterfaceType needs to be InterfaceIsIDispatch.
    My Interface definition is somewhat like this
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("AAF48FBC-52B6-4179-A8D2-944D7FBF264E")]
        public interface IInterface1
            [DispId(0)]
            IInterface2[] GetObj();
            [DispId(1)]
            void SetObj(ref IInterface2[] obj);
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("CDC06E1D-FE8C-477E-97F1-604B73EF868F")]
        public interface IInterface2
    IF i am passing array of above interface (created in C#.Net) to VBA using GetObj API,i am getting type mismatch error in VBA while assigning the value to variable in VBA.Even assigning to variant type variable gives TypeMismatch.
    Also while passing Array of interfaces from VBA using SetObj API,excel crashes and sometimes it says method doesn't exists.
    Kindly provide some assistance regarding the same.
    Thanks

  • How to solve the "type mismatch" error in jCOM early binding program?

    I got a "type mismatch" error jCOM early binding program.
    I use the VB as the jCOM client to access the EJB deployed on WLS7. While using the
    object parameter like "java.lang.Integer" in EJB method call, I got that error message
    and my VB client had to be stopped?
    The same situation, the VB program work perfect when using the "int" as the parameter.
    And I try to instance the "myTLB.JavaLangInteger" in my VB program, but how ? The
    "New", "CreateObject" and "GetObject" all failure, I don't know what to do next ???

    Hi,
    This problem Could happen when you referesh quality or test system.
    Your delta setup for the related master and transaction data needs to be reinit.
    What happens is when you init. the delta and subsequent delta is all maintained in your source system
    please check Notes 852443,424848,834229
    Hope this helps
    Thanks
    Teja
    Message was edited by:
            Teja badugu

  • RowSet Column Type Mismatch Error

    Hi,
    I am using SOA 11g,
    JDeveloper 11.1.1.3.0
    BPEL, SOA 11g, DB2 Stored procedure,
    In a BPEL service I am getting this error while invoking a DB2 Stored procedure with Strong XSD.
    while running I am getting this error message. This error message while invoking DB2 stored procedure, both XSD are identical. Input to service & input to DB adapter.
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'dba' failed due to: RowSet Column Type Mismatch Error. The SQL type in the XSD (CHARACTER) does not match the SQL type in the RowSet (VARCHAR) for column LONGITEM of parameter RowSet. This procedure returns a RowSet which could in theory return any arbitrary result. However you chose at design time to generate a single strongly typed XSD describing this result set in all cases, based on a test execution of the stored procedure. This makes later XML transforms easier. You may have also edited the XSD directly. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    -CD

    Hi CD,
    maybe if your strong XSD contains db:type="CHAR", you could try to change it to "VARCHAR" instead.
    HTH,
    Steve

  • "Error 13 writing data in step 6: type mismatch" - Error during package run

    Hi experts,
    I am using SAP BPC 7.0 M and facing an issue while importing a package. I am encountering the error : "Error 13 writing data in step 6: type mismatch". The package is running successfully for some files but is failing for similar other files. The data is uploading successfully on server but still it is giving an error while conversion.
    Thanks,
    Regards,
    Kamya Nagpal

    Hi All,
    In continuation to the above message:
    Even when the package is failing, the data is getting uploaded in the server.
    Thanks,
    Regards,
    Kamya Nagpal
    Infosys Technologies Limited

Maybe you are looking for