Convert a stored procedure to mapping in owb

Hi All,
We have stored procedures which are called in a mapping of OWB to load a target table.
I want to get rid of those stored proc and use a normal mapping there where in from the ammoing itsekf I can load the data in the target table.
Do we have any feature in owb where in that can be done automatically.

Hi,
I gone through URL which was posted, it was nice.. We are using OWB 11.1.0.7.0 Version in that we are unable to see Build from SQL. Can you please let us know in which version that option is available.
Regards,
Ava

Similar Messages

  • How to convert MSSQL stored procedure to PostgreSQL

    Hi,
    Anyone can help me...?
    How to convert MSSQL stored procedure to PostgreSQL function?
    Is there any tool available to convert T-SQL from MSSQL to PostgreSQL?
    Thanks in advance

    Hello
    Here, I write one sample stored procedure of SQL Server which I need to convert into PostgreSQL. Please help me in this with PostgreSQL.
    Thanks in advance.
    Below is sample SQL Server stored procedure: require to convert into PostgreSQL stored procedure
    CREATE PROCEDURE [dbo].[usp_GetData_ByTableName]
    @TableName NVARCHAR(MAX)
    ,@IncludeKeepAlive BIT
    ,@RowsAffected BIGINT=0 OUTPUT
    ) AS
    BEGIN
    SET NOCOUNT ON
    DECLARE @SQL VARCHAR(MAX)
    Select data base on parameter.
    SET @SQL =
    SELECT *FROM '+@TableName+'
    WHERE 1=1
    +
    CASE WHEN (@IncludeKeepAlive = 0)
    THEN
    AND [MessageTransactionID] <> 152
    ELSE
    END
    EXECUTE SP_EXECUTESQL @SQL
    RETURN 0

  • Converting DB2 stored procedure to Oracle?

    I need a little help with a problem I ran across this week. I have an existing DB2 Stored procedure that calls a COBOL program. (See the procedure below). Now, I need to convert this DB2 to an Oracle Stored Procedure. I need the procedure to call the same COBOL program that this DB2 procedure does. Is it possible in Oracle? Do I need to write a Java wrapper class instead? Please help!!
    CREATE PROCEDURE CO_CASEINFORMATION (
    IN PARM1 CHAR(006) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM2 CHAR(018) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM3 CHAR(004) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM4 CHAR(008) FOR SBCS DATA CCSID EBCDIC ,
    IN PARM5 CHAR(026) FOR SBCS DATA CCSID EBCDIC
    LANGUAGE COBOL
    EXTERNAL NAME COSP183
    COLLID CACSDEV9
    PARAMETER STYLE GENERAL
    NOT DETERMINISTIC
    MODIFIES SQL DATA
    WLM ENVIRONMENT CACSDEV9
    STAY RESIDENT YES
    RESULT SETS 01
    ;

    Although I've never done that with COBOL, the documentation says it is possible to call an external COBOL procedure from within Oracle, without a Java wrapper class.
    The way to do it is to rebuild your COBOL program with the Pro*COBOL pre-compiler.
    Read the Pro*COBOL Programmer's Guide for more details.

  • Converting Sybase Stored procedures

    Our team has looked at the conv72.exe add-on that converts
    Sybase Transact Sql stored procedures to PL/SQL stored
    procedures (packages). We like many aspects of the tool, but
    the output does not meet with our coding standards and
    conventions. We would still have to completely reformat and
    rename about 1/2 of the output. This would take almost as much
    time as converting the procedures manually. Is there any way
    that we can modify how the output is presented? i.e. Has anyone
    written any tools that reformat the output of this tool, or is
    there anyway that we can have access to the source code so that
    we can change how the output is formatted. Our team is familiar
    with virtually every programming environment, so we would not be
    looking for any support if we were to get the source code.
    null

    Julie,
    We would be very interested in looking at your coding standards
    to see if there is something we should do with our new Sybase
    plugin to the Migration Workbench to improve the quality of
    PLSQL code generated.
    If you would be interested in following up on this please
    drop an email to the Workbench helpdesk, infomwb@ie oracle.com,
    and we will discuss further.
    We are always looking to improve the Workbench and if there
    is something that we can do to help address this issue we
    would be very interested in persuing it.
    Regards,
    Marie
    ===
    Julie Allen (guest) wrote:
    : Our team has looked at the conv72.exe add-on that converts
    : Sybase Transact Sql stored procedures to PL/SQL stored
    : procedures (packages). We like many aspects of the tool, but
    : the output does not meet with our coding standards and
    : conventions. We would still have to completely reformat and
    : rename about 1/2 of the output. This would take almost as much
    : time as converting the procedures manually. Is there any way
    : that we can modify how the output is presented? i.e. Has
    anyone
    : written any tools that reformat the output of this tool, or is
    : there anyway that we can have access to the source code so that
    : we can change how the output is formatted. Our team is familiar
    : with virtually every programming environment, so we would not
    be
    : looking for any support if we were to get the source code.
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Please help convert MSSQL Stored Procedure to Oracle PL/SQL

    Hi there to all,
    this be my first post to these forums. I have already posted this question on a microsoft msdn forum, until someone advised that I ask my question here - dunno why I didnt think of that! ?:|
    Im working with an Oracle 10g Database from an ASP.NET 2.0 application, and want to know if it Oracle supports OPENXML (rhetorical question I fear!). The reason I ask is because I want to create an Oracle Stored Procedure that will accept an XML string as an input parameter, prepare it, select from it, and then insert it into an Oracle table.
    I have done this successfully in SQL server using the following as an example:
    CREATE PROCEDURE [dbo].[Employee_INSERT]
    bq. @INSERTRECORD XML
    AS
    BEGIN
    bq. DECLARE @XDOC INT; \\ EXEC sp_xml_preparedocument @XDOC OUTPUT, @INSERTRECORD; \\ INSERT INTO [dbo].[REC_Employees] (
    bq. bq. [EMPTITLE], \\ [EMPFNAME], \\ [EMPLNAME], \\ [EMPDEPTID], \\ [EMPBEGINDATE], \\ [EMPACTIVE], \\ [EMPDATEADDED]
    bq. )
    bq. SELECT
    bq. bq. [EMPTITLE] = Title, \\ [EMPFNAME] = Firstname, \\ [EMPLNAME] = LastName, \\ [EMPDEPTID] = DepartmentID, \\ [EMPBEGINDATE] = StartDate, \\ [EMPACTIVE] = IsActive, \\ [EMPDATEADDED] = GETUTCDATE()
    bq. FROM
    bq. bq. OPENXML(@XDOC, '/EMPREC/Table', 2) \\ WITH (
    bq. bq. Title VARCHAR(10), \\ FirstName VARCHAR(50), \\ LastName VARCHAR(50), \\ DepartmentID INT, \\ StartDate DATETIME, \\ IsActive BIT
    bq. bq. );
    bq. EXEC sp_xml_removedocument @XDOC;
    END
    I would sincerely appreciate any help in this regard!
    PS - Please excuse the formatting!
    Much Thanks!
    regards
    shalan

    Assuming your table is named DESTINATION
    Name                                      Null?    Type
    TITLE                                              VARCHAR2(10)
    FIRSTNAME                                          VARCHAR2(50)
    LASTNAME                                           VARCHAR2(50)
    DEPARTMENT                                         NUMBER
    STARTDATE                                          DATE
    ISACTIVE                                           NUMBERYou can use a procedure like:
    create or replace
    procedure test (p_xml in xmltype)
    is
    begin
      insert into destination
      select title
           , firstname
           , lastname
           , department
           , to_date (startdate, 'yyyy-dd-mm hh24:mi:ss') startdate
           , isactive
        from (xmltable ('/EMPREC/Table' passing p_xml
                       columns title varchar2(5) path 'Title'
                             , firstname varchar2(10) path 'FirstName'
                             , lastname varchar2(10) path 'LastName'
                             , department number path 'Department'
                             , startdate varchar2(20) path 'StartDate'
                             , isactive number path 'IsActive'
                      ) temp
    end test;to create records in the table
    Removed a unnecessary SELECT FROM DUAL...
    Edited by: Alex Nuijten on Jan 19, 2009 2:24 PM

  • Error while invoking database stored procedure while mapping to varchar,int

    Hi I am using Oracle SOA 11g 11.1.1.4
    In that i am calling db procedure.The procedure is taking input parameters int and varchar and nillable is true for both cases.Its a sybase data base.
    I am calling this db proc through db adater.Here I am mapping integer and string values to input parametres of db procedure.
    While testing i am getting following exception.Here in the error 9000 is the value i am passing for integer input.
    Exception occured when binding was invoked. Exception occured during invocation
    failed due to: Unimplemented object conversion. Conversion of type
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'Procedure1' failed due to: Unimplemented object conversion. Conversion of type 9000 whose JDBC type is OTHER to a Java object is not supported. An attempt was made to convert type 9000 to a Java object using an unsupported JDBC type: OTHER. Use a data type with a supported JDBC type. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part name="detail">
    <detail>Unimplemented object conversion. Conversion of type 9000 whose JDBC type is OTHER to a Java object is not supported. An attempt was made to convert type 9000 to a Java object using an unsupported JDBC type: OTHER. Use a data type with a supported JDBC type. </detail>
    </part>
    <part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>
    <faultType>
    Please help on this.
    Thanks
    <message>0</message>
    </faultType>
    </messages>

    I'm having a similar issue, while trying to invoke a SP from MS SQL Server.
    where the following is the DB adapter
    <schema targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/RetailDelivery/dbo/BPEL_Proc/" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/RetailDelivery/dbo/BPEL_Proc/" elementFormDefault="qualified">
    <element name="InputParameters">
    <complexType>
    <sequence>
    <element name="WorkFlowId" type="int" db:index="1" db:type="INT" minOccurs="0" nillable="true"/>
    <element name="Err" type="int" db:index="2" db:type="INT" minOccurs="0" nillable="true"/>
    <element name="StateID" type="int" db:index="3" db:type="INT" minOccurs="0" nillable="true"/>
    </sequence>
    </complexType>
    </element>
    <element name="OutputParameters">
    <complexType>
    <sequence>
    <element name="WorkFlowId" type="int" db:index="1" db:type="INT" minOccurs="0" nillable="true"/>
    <element name="Err" type="int" db:index="2" db:type="INT" minOccurs="0" nillable="true"/>
    <element name="StateID" type="int" db:index="3" db:type="INT" minOccurs="0" nillable="true"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    and this is .xsl for data transformations
    <xsl:template match="/">
    <db:InputParameters>
    <db:WorkFlowId>
    <xsl:if test="/ns0:Customer_Object/ns0:input_number/@xsi:nil">
    <xsl:attribute name="xsi:nil">
    <xsl:value-of select="/ns0:Customer_Object/ns0:input_number/@xsi:nil"/>
    </xsl:attribute>
    </xsl:if>
    <xsl:value-of select="/ns0:Customer_Object/ns0:input_number"/>
    </db:WorkFlowId>
    </db:InputParameters>
    </xsl:template>
    </xsl:stylesheet>
    where input_number is defined as Int.
    The problem is
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'PD_Tables_Populate' failed due to: Unimplemented object conversion.
    Conversion of type 6014 whose JDBC type is OTHER to a Java object is not supported.
    An attempt was made to convert type 6014 to a Java object using an unsupported JDBC type: OTHER.
    Use a data type with a supported JDBC type.
    where 6014 is actually the value i am filling in input_number field. The issue is that if i create new application and using the same db adapter it is working, but for some reason it is giving me this error for the current application.
    I'm using the same DB connection for calling other procedures and they are working with the same application.
    Any help will be appreciated! Thanks in advance!
    The problem was in the DB Adapter. After re-deploying it and delete/create data source it is working correctly now.
    Edited by: Huku on Aug 29, 2011 1:04 PM

  • Converting oracle stored procedure to inline sql

    I have an oracle stored proc.. that i need to convert to inline sql in code.. (vb.net)
    getting formatting errors all over the place..
    was wondering if someone could help.
    I have attached the oracle sp as well as my code sample..
    create or replace
    PROCEDURE "LAYOUT_UPDATE_INSERT" (
    v_layout_name IN NVARCHAR2 DEFAULT NULL,
    v_layout_description IN NVARCHAR2 DEFAULT NULL,
    v_layout_data IN BLOB DEFAULT NULL,
    v_profileid IN NUMBER DEFAULT NULL,
    v_layout_id IN NUMBER DEFAULT NULL,
    cur_out OUT sys_refcursor
    /*ADVICE(8): This item has not been declared, or it refers to a label
    [131] */
    AS
    v_temp NUMBER (1, 0) := 0;
    BEGIN
    BEGIN
    SELECT 1
    INTO v_temp
    FROM DUAL
    WHERE EXISTS (
    SELECT *
    FROM layouts
    WHERE profileid = v_profileid
    AND layout_id = v_layout_id);
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL;
    END;
    IF v_temp = 1
    THEN
    BEGIN
    UPDATE layouts
    SET layout_data = v_layout_data,
    layout_name = v_layout_name,
    layout_description = v_layout_description
    WHERE profileid = v_profileid AND layout_id = v_layout_id;
    END;
    ELSE
    BEGIN
    INSERT INTO layouts
    (layout_name, layout_description, layout_data,
    profileid
    VALUES (v_layout_name, v_layout_description, v_layout_data,
    v_profileid );
    OPEN cur_out FOR
    SELECT 1
    FROM DUAL;
    END;
    END IF;
    END "LAYOUT_UPDATE_INSERT";
    Code sample
    If DB.GetType.Name.Equals("OracleDatabase") Then
    Dim block As String
    block = block & " v_temp NUMBER (1, 0) := 0;"
    block = block & "BEGIN BEGIN"
    block = block & " Select 1 INTO(v_temp) FROM(DUAL) WHERE EXISTS ("
    block = block & " SELECT * FROM(layouts) WHERE(profileid = :4)AND layout_id = :5);"
    block = block & "Exception WHEN OTHERS THEN NULL;"
    block = block & " END;"
    block = block & "If v_temp = 1 Then THEN "
    block = block & "BEGIN UPDATE(layouts) SET layout_data = :3,"
    block = block & "layout_name = :1, layout_description = :2"
    block = block & "WHERE profileid = :4 AND layout_id = :5;"
    block = block & "END;"
    block = block & "Else BEGIN "
    block = block & "INSERT INTO layouts (layout_name, layout_description, layout_data,profileid)"
    block = block & "VALUES (:1, :2, :3, :4 );"
    block = block & "OPEN cur_out FOR"
    block = block & " Select 1 FROM DUAL; END; END IF;"
    Dim dbcommand As Common.DbCommand
    dbcommand = DB.GetSqlStringCommand(block)
    DB.AddInParameter(dbcommand, ":1", DbType.String, vLayoutName)
    DB.AddInParameter(dbcommand, ":2", DbType.String, vLayoutDescription)
    DB.AddInParameter(dbcommand, ":3", DbType.Binary, vLayoutData)
    DB.AddInParameter(dbcommand, ":4", DbType.Int32, vProfileID)
    DB.AddInParameter(dbcommand, ":5", DbType.Int32, vLayoutID)
    Dim result As DataSet
    result = DB.ExecuteDataSet(dbcommand)
    Edited by: Mainiac007 on May 11, 2009 12:59 PM

    Howdy,
    I do not know the VB syntax but this may help:
    using System.Text.RegularExpressions;
    Regex _regex = new Regex(@"\s{2,}", RegexOptions.None);
    string A_WONDERFUL_STRING = regex.Replace(MORETHAN_LIKELY_EVIL_STRING, " ");
    r,
    dennis
    I forgot this part:
    System.IO.FileStream fs = new FileStream(SOME_TEXT_FILE_WITH_PROC, FileMode.Open);
    System.IO.BinaryReader br = new BinaryReader(fs);
    ba = br.ReadBytes((int)fs.Length);
    br.Close();
    fs.Close();
    string MORE_THAN_LIKELY_EVIL_STRING = Encoding.UTF8.GetString(ba);
    should be in try/catch block
    Edited by: user633187 on May 11, 2009 3:07 PM

  • Prepared Statement and Stored Procedure..

    I have about 200 SQL statement in my Java application
    I have two options either to convert into
    Stored procedures
    or to convert into prepared statement ....
    Please guide me which options should be best....
    I need difference
    1)in term of speed.
    2)Memory..
    Regards
    Mahesh
    Senior DBA

    club your statements on the basis of related functionalities and change it to stored procedures as it will redudce no. of calls to the database and will be faster to fetch data in one go and even reduce the memory requirements.

  • Performance issue on Java Stored Procedure

    I have converted the Stored Procedures into JSP with SQLJ. I
    loaded the classes (not the source) onto Oracle 8i Database and
    published within tbe stored packages. What I found out was the
    performance is about 12 times on average slower than the PL/SQL
    stored packages when I made calls to JSP. I am not surprise JSP
    is slower than PL/SQL but can we improve by tunning the Java
    codings or VM within the 8i database?
    null

    James Chan (guest) wrote:
    : I have converted the Stored Procedures into JSP with SQLJ. I
    : loaded the classes (not the source) onto Oracle 8i Database and
    : published within tbe stored packages. What I found out was the
    : performance is about 12 times on average slower than the PL/SQL
    : stored packages when I made calls to JSP. I am not surprise JSP
    : is slower than PL/SQL but can we improve by tunning the Java
    : codings or VM within the 8i database?
    all user written java code in the 8i rdbms is currently running
    as bytecode in the jvm.
    a future release will provide a component called "Native Compiler
    [NCOMP]" so it should run considerably faster then.
    see the following link for details :
    http://technet.oracle.com/files/search/search.htm?ncomp
    null

  • How to call Stored Procedure in OWB?

    Hi,
    I'm not able to call stored procedures in the OWB. There are transformations available to call the functions namely Mapping Transformation, but i didnt find any such transformation for stored procedures.
    I was able to validate, generate ad deploy the stored procedure, but coudn't find any trasnformation which calls the stored procedure.
    And my source and the target are in the same schema, hence a connector module is also not needed.
    Can anyone help me in this regard and explain how to call a stored procedure in the Oracle Warehouse Builder?

    Hi Patrick,
    Thanks a lot for your reply.
    Hey Patric, sorry to bug you again.
    Regarding calling the Stored procedure, mine is a very simple scenario.
    I have created a table with two fields say A and B. My stored proc takes an input A1. The stored proc then selects the B field from that table when A1 has the same value as A.
    Then i check the condition, if the selected value is null then set the output variable to 'N'. Else to 'Y'.
    The logic that i'm following in OWB is:
    1.) create a mapping which contains the source as a table.
    2.) Give the field A in that table as an input to the Stored procedure which i can have it my Mapping Trasformation.
    3.) Then i need to specify the condition that the field A in the table should be equal to A1. And if equal, then fetch the value from the table and display either 'Y' or 'N' based on the condition that is checked in the Procedure.
    But the problem here i'm facing is that,i'm not able to store the output into a file, since the procedure doesnot return a value. And my target is a file.
    should i need to change my logic.
    Regards,
    Abhinav.

  • Stored procedure in OWB

    Hi ,
    I am new to OWB.
    I want to call a stored procedure in my Mapping and out put stored procedure is Complete dataset (i.e Multiple rows).
    Please help me how to implement this in OWB
    Regards
    Regards
    Kandasamy

    Hi
    I think you should use table function.
    Ott Karesz
    http://www.trendo-kft.hu

  • How to execute two stored procedures in a mapping?

    Hi All,
    I have a mapping with a source and a target table. In the same mapping, I have a stored procedure attached to a post mapping. during this execution of mapping the post mapping process works fine. Now I want to add one more stored procedure and attach to one more post mapping process. currently it is not allowing, is there any work around to implement this plan. pls post your suggestions.
    Thanks in Advance,
    Kishan

    Hello Kishan,
    The only way to archieve this currently is to create a super-procedure that calls all your stored procedures in sequence, and use the super-procedure with the post mapping operator.
    Regards, Hans Henrik

  • Problem during mapping when stored procedures is used

    Dear All,
    I am doing one File-XI-JDBC scenario using stored procedures.
    My source Data Type is like:
    MT_HEADER 1..1
          PRODH    1..1  xsd:string
          VTEXT      1..1  xsd.string
          DATUM    1..1  xsd.string
    My target Data Type is like:
    MT_HEADER    1..1
      Statement        1..1   
       SP_UPDATE  1..1
        action            required   xsd.string
        PRODH         1..1         xsd.string
          isInput         optional   xsd.string
          type            optional   xsd.string
        VTEXT          1..1         xsd.string
          isInput        optional    xsd.string
          type           optional    xsd.string
        DATUM        1..1          xsd.string
          isInput       optional     xsd.string
          type          optional     xsd.string
    In the mapping, EXECUTE>action; true>isInput; CHAR-->type; SP_UPDATE- stored procedure name in DB.
    When I am testing the message mapping its giving no errors but when i am processing the file it gives me following error:
    <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">EXCEPTION_DURING_EXECUTE</SAP:Code>
      <SAP:P1>com/sap/xi/tf/_MM_TEST_FILE_JDBC_T179T_</SAP:P1>
      <SAP:P2>com.sap.aii.utilxi.misc.api.BaseRuntimeException</SAP:P2>
      <SAP:P3>RuntimeException in Message-Mapping transformatio~</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>During the application mapping com/sap/xi/tf/_MM_TEST_FILE_JDBC_T179T_ a com.sap.aii.utilxi.misc.api.BaseRuntimeException was thrown: RuntimeException in Message-Mapping transformatio~</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
    Can anyone please guide what error I am making in the data type or in the mapping.
    Warm Regards,
    N.Jain

    Hi Nishu,
    The reason of this error is A message mapping is executed on the integration server at mapping runtime. A value mapping is called within the message mapping. If you did not maintain the values required for the mapping (Directory -> Tools -> Value mapping), an exception (BaseRuntimeException) occurs and the processing of the message is terminated.
    So please do this :
    1. Maintain the value mapping in the directory.
    2. To change the behavior in the case of an error, you must import a Support Package. Message processing is then no longer terminated. Instead, a warning appears in the log and the initial value is copied unchanged to the target document.
    Note: The behavior described only affects message mappings, that is, mappings generated using the graphic tool. If, on the other hand, you call the value mapping within a Java mapping and this fails, you receive a KeyMappingException. It is then the task of the Java mapping to react to this exception.
    Hope this will help you.
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Multi-Mapping - JDBC receiver -  Multiple stored procedure - How to sequence?

    Hi Folks,
    We have 7.1 .Done multi-mapping , single source mapped to 5 different stored procedures.
    The challenge we are facing here is , these stored procedure is not working sequentially .
    i.,e  for e.g., 2nd Stored Procedure should start only when first Stores procedure completely finished its turn.
    But third procedure getting completed before1 st stored procedure completes .
    Highly appreciate if any views on this ? How to sequence and make sure second will start only when first SP complete  ?
    -- Shiva

    Hi ,
    Thanks for your reply. all stored procedures are asynchronous one.
    If we go for ccBPM , do we need to put wait step ?
    - Here we dont know how much time each procedure takes to complete. Requirement is another procedure has to start only when the previous one completes.
    --Shiva

  • Error saving map. Stored procedure returned non-zero result BizTalk Bug

    Hallo all
    MSDN is reporting this Bug.
    "Error saving map. Stored procedure returned non-zero result." error message when you deploy the BizTalk Server 2010 applications in BizTalk Server 2010 Administration Console"
    http://support.microsoft.com/kb/2673264/en-us
    I am having this problem in BizTalk 2013. Is this correct? or I am doing something wrong..
    This error occured as I was about to deploy BizTalk application from Visual studio 2012 to BizTalk 2013.
    If this bug is available in 2013, where can I get a fix for it..
    Thanks in Advance
    AKE

    Hi AKE,
    Fix for this bug in BizTalk Server 2013 is not publicly available yet. Only option to get the fix for this bug is to contact:
    http://support.microsoft.com/contactus/?ws=support
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.

Maybe you are looking for