Updating the blueprint on oracle bpa using Jdeveloper

I have seen articles that after importing blueprint from oracle BPA repository with JDeveloper, the user can make changes to it in JDeveloper and update the blueprint at the oracle BPA repository. The updates will appear as suggestions at the BPA side.
Anyone knows where can I find tutorials on this?

Hello,
I have exactly the same problem! Any hints for a workaround?
Regards Thomas

Similar Messages

  • How to update the data in sqlserver table using procedure in biztalkserver

    Hi,
    Please can any one answer this below question
    how to update the data in sqlserver table using procedure in biztalkserver
    while am using executescalar,typedprocedure getting some warning
    Warning:The adapter failed to transmit message going to send port "SendtoSql1" with URL "mssql://nal126//MU_Stage2?". It will be retransmitted after the retry interval specified for this Send Port. Details
    Please send me asap....
    Thanks...

    Hi Messip,
    A detailed error would have helped us to answer you more appropriately but
    You can follow the post which has step by step instructions, to understand how to use Stored Procedure:
    http://tech-findings.blogspot.in/2013/07/insert-records-in-sql-server-using-wcf.html
    Maheshkumar
    S Tiwari|User
    Page|Blog|BizTalk
    2013: Inserting RawXML (Whole Incoming XML Message) in SQL database

  • How to update the value in xml file using transformer after setNodeValue

    Hi,
    This is my code
    I want to set update the values in xml file using transformer..
    Any one can help me
    This is my Xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <place>
    <name>chennai</name>
    </place>
    Jsp Page
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="javax.xml.parsers.DocumentBuilderFactory,
    javax.xml.parsers.DocumentBuilder,org.w3c.dom.*,org.w3c.dom.Element"
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <% String str="";
    String str1="";
    try
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse("http://localhost:8084/XmlApplication1/sss.xml");
    out.println("Before change");
    NodeList n11 = doc.getElementsByTagName("name");
    Node n22= n11.item(0).getFirstChild();
    str1 = n22.getNodeValue();
    out.println(str1);
    out.println("After change");
    String name = "Banglore";
    NodeList nlst = doc.getElementsByTagName("name");
    Node node= nlst.item(0).getFirstChild();
    node.setNodeValue(name);
    NodeList n1 = doc.getElementsByTagName("name");
    Node n2= n1.item(0).getFirstChild();
    str = n2.getNodeValue();
    out.println(str);
    catch(Exception e)
    out.println(e) ;
    %>
    <h1><%=str%></h1>
    <%--
    This example uses JSTL, uncomment the taglib directive above.
    To test, display the page like this: index.jsp?sayHello=true&name=Murphy
    --%>
    <%--
    <c:if test="${param.sayHello}">
    <!-- Let's welcome the user ${param.name} -->
    Hello ${param.name}!
    </c:if>
    --%>
    </body>
    </html>

    hi check this exit...
    IWO10012

  • I am trying to update the Subcontracting type of PO using 'BAPI_PO_CHANGE'. However i am able to update this field . Can someone advice me how to do.

    HI,
    I am trying to update the Subcontracting type of PO using 'BAPI_PO_CHANGE'. However i am able to update this field .
    Can someone advice me how to do.
    My code sample is :
    wl_poitem-po_item = l_ebelp.
    wl_poitemx-po_item = wl_poitem-po_item.
    wl_poitemx-po_itemx = c_x.
    *C--material procurement indicator need to update
    *   the type of procurement
    wl_materialind-po_item       = wl_poitem-po_item.
    wl_materialindx-po_item      = wl_poitem-po_item.
    wl_materialindx-po_itemx     = c_x.
    wl_materialind-item_no       = wl_poitem-po_item.
    wl_materialindx-item_no      = wl_poitem-po_item.
    wl_materialindx-item_nox     = c_x.
    wl_materialind-mat_provision = 'S'.
    wl_materialindx-mat_provision = c_x.
    wl_materialind-sched_line      = '0001'.
    wl_materialindx-sched_line     = '0001'.
    wl_materialindx-sched_linex    = c_x.
    wl_materialind-entry_quantity  = wl_poitem-quantity.
    wl_materialindx-entry_quantity = c_x.
    wl_materialind-plant           = wl_poitem-plant.
    wl_materialindx-plant          = c_x.
    wl_materialind-material        = wl_poitem-material.
    wl_materialindx-material       = c_x.
    wl_materialind-item_cat        = 'L'.
    wl_materialindx-item_cat       = c_x.
    wl_extensionin-structure  = 'BAPI_TE_MEPOITEM'.
    wl_extensioninx-structure = 'BAPI_TE_MEPOITEMX' .
    wl_extensionin-valuepart1+222(1) = '1'.
    wl_extensioninx-valuepart1+24(1) = c_x.
    APPEND wl_poitem  TO tl_poitem.
    CLEAR  wl_poitem.
    APPEND wl_poitemx TO tl_poitemx.
    CLEAR  wl_poitemx.
    APPEND wl_materialind TO tl_materialind.
    CLEAR  wl_materialind.
    APPEND wl_materialindx TO tl_materialindx.
    CLEAR  wl_materialindx.
    APPEND wl_extensionin  TO tl_extensionin.
    CLEAR  wl_extensionin.
    APPEND wl_extensioninx TO tl_extensioninx.
    CLEAR  wl_extensioninx.
    CALL FUNCTION 'BAPI_PO_CHANGE'
       EXPORTING
         purchaseorder = l_ebeln
         versions      = wa_version
       TABLES
         return        = tl_return
    *    poitem        = tl_poitem
    *    poitemx       = tl_poitemx
         pocomponents  = tl_materialind
         pocomponentsx = tl_materialindx
         extensionin   = tl_extensionin
         extensionout  = tl_extensioninx.
    READ TABLE  tl_return WITH KEY type = 'E' TRANSPORTING NO FIELDS.
    IF sy-subrc NE 0.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    ENDIF.

    In the above question i mean- I am UNABLE to update

  • I'am using iphone 5 i tried to update the ios 8.0.2 using the shift key in itunes update @ windows 8 i have the file which i downloaded, but it says that firmware version is not compatible. what can i do for it . help me friends

    i'am using iphone 5, i tried to update the ios 8.0.2 using the shift key in itunes update @ windows 8 i have the file which i downloaded, but it says that firmware version is not compatible. what can i do for it . help me friends

    Hello vinoth1986,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning update issues:
    If you can't update or restore your iPhone, iPad, or iPod touch
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • [svn] 762: -update the 3.0 branch to use build. properties to create the flex-sdk-description.xml

    Revision: 762
    Author: [email protected]
    Date: 2008-03-10 07:44:49 -0700 (Mon, 10 Mar 2008)
    Log Message:
    -update the 3.0 branch to use build.properties to create the flex-sdk-description.xml
    Modified Paths:
    flex/sdk/branches/3.0.x/build.properties
    flex/sdk/branches/3.0.x/build.xml
    Added Paths:
    flex/sdk/branches/3.0.x/collateral/en_US/flex-sdk-description.xml

    By the way, simply adding the quotes around the lexical names in the sql statement doesn't work. That causes the lexical references to be ignored as simple string values:
    SELECT
       '&FLEX_GL_BALANCING_APROMPT' alias_gl_balancing_aprompt
      ,'&FLEX_GL_ACCOUNT_LPROMPT'   alias_gl_account_lprompt
      ,'&ACCT_BAL_LPROMPT'          alias_acct_bal_lprompt
    FROM dualI turned on statement-level debugging via xdodebug.cfg and saw how it compiled the lexicals. By replicating the call to apps.fnd_flex_xml_publisher_apis.kff_segments_metadata that I found there, I was able to hack together a workaround for this issue.
    Please point me to a better way of doing this if possible, as I had to GRANT EXECUTE on this apps package to my custom code schema. Is there a better lexical/flexfields reference than the XML Publisher documentation?
    Here is the call I made in my before-report trigger:
    --set ACCT_BAL_LPROMPT flexfield segment metadata lexical
    begin
    apps.fnd_flex_xml_publisher_apis.kff_segments_metadata(
      'FLEX_ACCT_BAL_LPROMPT',
      'SQLGL',
      'GL#',
      101,
      'GL_BALANCING',
      'Y',
      'LEFT_PROMPT',
      c_FLEX_ACCT_BAL_LPROMPT
    end;

  • My Ipod mini gives error -47 (ipod cannot be updated, the required file is in use).

    When I try to sync my Ipod mini, I get the following error : Error -47 (ipod cannot be updated, the required file is in use).  My software is all up to date and the ipod was restored.  Nothing helped, how do I fix this?  I have a macbook pro.
    Thanks

    I just tries that,
    So you were able to find that setting via Sophos -> Preferences?
    It has to be some other process/application on your system that is trying to access the iPod then.
    B-rock

  • Can we update the data of ztable by using the BAPI FM

    Hi Experts,
    Can we update the data of ztable by using BAPI FM  'BAPI_CUSTOMERCONTRACT_CHANGE'.
    Can anyone help this issue.
    regs
    rams

    Hi Ramesh,
    After the BAPI 'BAPI_CUSTOMERCONTRACT_CHANGE' is called, check the return message and use UPDATE <DBTABLE_NAME> command to update the ZTABLE.
    Use COMMIT WORK after the call. If the BAPI is standard BAPI and not a customized BAPI, then it wont update Z Table direclty. You need to build the logic in program to update Z Table.
    Best regards,
    Prashant
    PS : Please reward all helpful answers

  • HOW TO CREATE A NEW J2EE APP FOR DEPLOYING ORACLE REPORTS USING JDEVELOPER?

    Hi,
    I'm new to JDeveloper and Java, JSP etc. I'm trying to deploy a sample parameter form for JSP report. My question is: When I create a J2EE application using JDeveloper, how to make sure "The WEB-INF directory must contain the JSP tag library for Oracle Reports, called reports_tld.jar"? How to do it via JDeveloper?
    In my JSP page, I use <%@ taglib uri="/WEB-INF/lib/reports_tld.jar" prefix="rw" %>.

    Does anyone know the answer to this question?
    I get the following error in Jdeveloper when running my test jsp report:
    Error(8): Unable to load taghandler class: /WEB-INF/lib/reports_tld.jar
    Thanks.
    Hi,
    I'm new to JDeveloper and Java, JSP etc. I'm trying
    to deploy a sample parameter form for JSP report. My
    question is: When I create a J2EE application using
    JDeveloper, how to make sure "The WEB-INF directory
    must contain the JSP tag library for Oracle Reports,
    called reports_tld.jar"? How to do it via JDeveloper?
    In my JSP page, I use <%@ taglib
    uri="/WEB-INF/lib/reports_tld.jar" prefix="rw" %>.

  • Update the kernel on oracle

    Hi,
       I want to update the kernel,os is windows and db is oracle.i will stop mmc before doing update,is it necessery to stop any oracle services along with sap mmc.can any one guide me for same.
    Thanku

    Hi,
          To apply kernel you do not need to stop any Oracle related service. This are the steps that I thought might usefull..
    On your sytem
    -> at OS level type disp+work --> it will give you information
    like 32 bit or 64 bit and Unicode or Non-Unicode. Make a
    note of it.
    -> go to SMP and download the appropriate kernel by going
    checking 32-64 bit and unicode and non-unicode.
    -> go to DataBase independant and download
    SAPEXE<version>.SAR
    -> got to DataBase dependant and download
    SAPEXEDB<version>.SAR
    -> for safer side make a backup copy of your existing kernel
    with the date and version info.
    -> Shutdown your SAP (NOT YOUR OS). if you have
    application server bring them down first and then Central
    Instance.
    -> now extract this two new .SAR file into your existing
    kernel or to any new folder by typing
    SAPCAR -xvf SAPEXE***.SAR and SAPEXEDB***.SAR
    -> if you have extracted the files at some other location that
    copy them to your existing location.
    -> if you are using linux than it is good to do
    cleanipc <instance no> remove command, on windows
    it is not required.
    -> Start your Central Instance. type dpmon to find out the
    system status. Once the sytem is up start your
    Application server also.
    V...

  • Need help - Error while updating the firmware of Muvo Slim using the recovery t

    Hi ,
    While I am trying to update my Muvo slim firmware using the recovery tool it throwd up an error. And from then onwards if I am trying to power it up it won't.
    If I again try to update the firmware, it throws up the error that "Unable to Write to Device: Device Time out".
    I am afraid that my Muvo slim got bricked. Can you please help me in recovering the same.
    PS: My PC OS is Windows XP.
    Thank & Regards
    ksraghava?

    On my XP system, the last time I wanted to reload the firmware, I had to remove all of my Creative software programs,?and then revert my Windows Media Player back to 0 and then use The Recovery Tool. It is a bit of a pain, but does seem to work when you are getting errors with the firmware download.
    luvmyrescuedogs
    Almost forgot. Make sure your player is fully charged or has a fresh battery before starting any firmware download.
    Message Edited by luvmyrescuedogs on 06-4-2008 :6 AM

  • Is there any way I can just update the apps on my iPhone using iTunes on my PC?, Is there any way I can just update the apps on my iPhone using iTunes on my PC?

    I have more than a 100 apps which I do not use but are there in my iTunes library! My iPhone has only a few (40) updates. As I am not allowed to use office wi-fi to download or update my phone apps, I want to use iTunes on my PC for the same. But I do not want to waste time searching for the apps on my phone and then update it using iTunes. Also, I do not want to update all the apps in my iTunes Library as there are more gthan 100. Can anyone suggest me a method where I can just update the apps that are on my phone using iTunes??
    I have the latest iTunes installed.

    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself independently backed up against loss.  To use a device with a different setup you transfer the old library from a computer or a backup directly to the new setup, not the device to the library. Media syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • How do I get firefox to auto update the restored tabs like it used to do?

    It will restore my pages and tabs from the last session, but it no longer updates the tabs with the latest information.

    You need to use [[Clear Recent History]] to clear the browsing cache to prevent Firefox from restoring pages from the cache.

  • Updating the Payment reference - KIDNO field using INVOICE_UPDATE

    Hello All,
    I need to update the field KIDNO (present in the invoice header structure ) from transaction MRRL and MRDC transactions.
    How do you use the Badi INVOICE_UPDATE to update the field KIDNO?
    Regards,
    Sri.

    Hi,
    Combining FI Documents Using a Payment Reference Number KIDNO.
    In some countries you may be required to combine receivables, linked liabilities or cancellations in the same payment program.
    This combination is carried out by filling field KIDNO in the billing header with the following values:
    F2 billing documents (customer invoices) with the billing number
    S1 cancellations using the reference to the corresponding F2 billing document to be canceled via the VBRK-KIDNO from the F2 billing document.
    If a reference for the credit memo request exists for a billing document, then the VBRK-KIDNO value of the reference billing document is copied.
    If there is no reference, then the KIDNO is given the current billing document number.
    When the customer pays the invoice, it quotes the payment reference number, which enables the vendor to match the payment to the invoice more quickly.
    The payment reference number consists of a sequential number and a check digit. Each country has its own rules as to how the check digit is calculated.
    Regards
    R.K

  • Question on Updating the rows of a table using a SELECT Statement

    Hi,
    I am trying to set all of the R_IDs in one table to the ID from another table using a join.
    Here is the SQL I came up with. I don't this is correct though.
    UPDATE TABLEA A
    SET R_ID=(Select Id from TABLEB B
    WHERE A.DEE=B.DEE AND
    B.RNUM=1);
    Does this make sense?

    You can try the join view.
    UPDATE ( SELECT table_a.id   AS a_id,
                    table_b.id   AS b_id,
                    table_a.col1 AS a_col1,
                    table_b.col1 AS b_col1,
                    table_a.col2 AS a_col2,
                    table_b.col2 AS b_col2,
                    table_a.col3 AS a_col3,
                    table_b.col3 AS b_col3
               FROM table_a,
                    table_b
              WHERE table_a.id = table_b.id)
       SET a_col1 = b_col1,
           a_col2 = b_col2,
           a_col3 = b_col3;
    However it may result in
    ORA-01779: cannot modify a column which maps to a non key-preserved tableThis is because the key-preserving property of a table does not depend on the actual data in the table. It is, rather, a property of its schema. For example, if in table_b there was at most one record for each id value, then table_a.id would be unique in the result of a join of table_a and table_b, but table_a would still not be a key-preserved table. By adding the unique/primary key on the id column of table_b we can assure that if table_b.id were part of the result set of the join view then it would be unique. This makes table_a key preserved.
    Thus, in order to update a join view we must assure that the columns involved in the join view from the source table are unique. We do this by creating a unique or primary key on those columns.
    However, if you do not mind taking responsibility for making sure that there is one-to-one cardinality between the source and destination rows, then you might try the correlated subquery
    UPDATE table_a
       SET (col1, col2, col3 ) =
              ( SELECT col1, col2, col3
                  FROM table_b
                 WHERE table_b.id = table_a.id )
           WHERE EXISTS
               ( SELECT col1, col2, col3
                   FROM table_b
                   WHERE table_b.id = table_a.id )

Maybe you are looking for