Reg: introduction of DTP and Transformation in BI 7.0

Hi all,
I've two questions here one is:
1. what is the purpose of introduction of DTP with NW 7.0 BI 7.0
i know the bcoz of these reasons:
>Improved transparency of staging processes across data warehouselayers
>Improved performance:Intrinsic parallelism
>Separation of deltamechanism for differentdata targets: deltacapability is controlledby the DTP..
>Enhanced filtering indataflow..
>Repair modus based ontemporary buffers (bufferskeep complete set of data)
but can any one explain me how this happens in detail.
coming to my question 2.
Why transformation replaced tranfer rules and update rules
(excluing graphical UI)
Regards
Ganesh

>Improved transparency of staging processes across data warehouselayers
PSA to multiple datatargets allows you transparency and overcomes the spiderweb of export datamart
>Improved performance:Intrinsic parallelism
need not have to wait for one infoprovider to load(datamart) to load the consecutive dataprovider  - data can be parallely loaded to different providers at the same time once the data is in PSA
>Separation of deltamechanism for differentdata targets: deltacapability is controlledby the DTP..
delta in DTP's is governed by datamart status
>Enhanced filtering indataflow..
you can set ur filters independent of any other dataproviders like in datamarts .
>Repair modus based ontemporary buffers (bufferskeep complete set of data)
error stack allow you to resurrect the data and load it again
Why transformation replaced tranfer rules and update rules
transformations and DTP have 1:1 relationship - so if u pretty sure to use DTP (ur 1st question) - the pre req would be to have transformation - u can create a DTP only after you create a transformation(source and target mapping )

Similar Messages

  • Regarding DTP and Transformations

    How can i check who has changed/created the DTP or Transformations. Is there any table which gives this information ?
    Thanks,
    Santosh

    Hi,
         When you open the Transformations -> there is an icon (it will display as Detail when you keep the cursor on the icon) just before the Start Routine button. click it -> you will get the details of Last changed by/Changed On/Changed at and Person Responsible.
    For DTP -> Go to (in the menu bar) -> overview of the DTP -> you will get  details of Last changed by/Changed On/Changed at and Person Responsible.
    Hope this helps you
    Regards
    Sunil

  • DTP and  Transformation error

    Hi All,
    Iam loading master data through process chain.
    The process chain got failed at some particular DTP giving a error message
    "Exception CX_RS_ERROR occurred (program: CL_RSTRAN_RUNTIME_EXE=========CP, include: CL_RSTRAN_RUNTIME_EXE=========CM001, line: 231).
    It seems that the particular transformation or DTP needs to be transported.
    As this is a productios system, it takes some time for the transport.
    I have created a new DTP ,  activated the transformation .Then also iam getting the same problem while loading the data in DTP
    Mean while some one guided to edit master data to load new master  data some thing like this.....but i didnt undersatnd properly what exactly they suggested.
    Can any one advise me how to load new master data.What will be the other methods to load data
    Regards
    Saha

    Hi,
    i Mailed clearly , its a transformation problem and that cant be transportable immediatly.
    And i have given clue also, master data editing is the alternate way but i dont know how to edit master data.
    Please some one explain me how to edit master data for the new records and et me know if any other ways are there.
    Regrads
    Saha

  • ODS and Transformations get inactive after i transport it in PD.

    i have transported my  ETL model in production , Now Everything what we have transported has come into production system but transformation and ODS in our ETL model get inactivated . Also while i want to display the transformation it give massege that " 'the infosource that we have created  before the transformation in not active and can not be used . ' 
    Our ETL model is like
    Cube(now Active)  --- tranformation(Now is in not active state) --  ODS(Now is in not active state) -- transformaion(Now is in not active state) -- infosource(Now in active state) -- transformation(Now in active state) -- PSA .
    the part    ": tranformation --  ODS -- transformaion " gets inactivated after transportation also DTP which pull data from ODS to cube also get inactive .
    Please suggest me to how i can activate these inactive object  or i have to transport these object again to PD
    Thanks .

    Hi Bryan ,
            Yes data was their inside the ODS  while transporting , Now i have successfully transported the request , nd now activating ODS transformation nd DTP . Actually i got a prog to activate transformation and DTP and want to share with all ...  . i juz activate mt DTP and transformation though these prog .
    Program for DTP ACTIVATION
    *& Report  ZDTP_ACTIVATE
    *Coded by NBS BI team
    *Date: 15-JAN-2010
    *Function: For DTPs activation
    REPORT  ZDTP_ACTIVATE.
    TYPES: BEGIN OF t_dtp,
    dtp LIKE rsbkdtpstat-dtp,
    objstat LIKE rsbkdtpstat-objstat,
    src LIKE rsbkdtp-src,
    tgt LIKE rsbkdtp-tgt,
    END OF t_dtp.
    TYPES: i_dtp TYPE STANDARD TABLE OF t_dtp.
    DATA: lv_output(255) TYPE c,
    lv_subrc TYPE sysubrc,
      tab_dtp TYPE i_dtp,
      r_dtp TYPE REF TO cl_rsbk_dtp.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_id TYPE char35.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      FIELD-SYMBOLS: <fs_dtp> TYPE t_dtp.
      REFRESH tab_dtp.
      SELECT * FROM rsbkdtp AS a JOIN rsbkdtpstat
             AS b ON adtp = bdtp INTO
            CORRESPONDING FIELDS OF TABLE tab_dtp
             WHERE a~dtp = p_id AND
                a~objvers = 'A' AND
                  b~objstat = 'INA'.
      IF tab_dtp IS NOT INITIAL.
        LOOP AT tab_dtp ASSIGNING <fs_dtp>.
          CALL METHOD cl_rsbk_dtp=>factory
            EXPORTING
              i_dtp   = <fs_dtp>-dtp
            RECEIVING
              r_r_dtp = r_dtp.
          IF sy-subrc = 0.
            CALL METHOD r_dtp->activate
              EXPORTING
                i_objvers             = rs_c_objvers-modified
                i_force_activation    = rs_c_true
                i_show_check_protocol = rs_c_false
                i_with_cto            = rs_c_true
              IMPORTING
                e_subrc               = lv_subrc.
            IF lv_subrc = 0.
              CONCATENATE 'Activated DTP : ' <fs_dtp>-dtp ' : ' <fs_dtp>-src '->' <fs_dtp>-tgt INTO lv_output.
            ELSE.
              CONCATENATE 'DTP : ' <fs_dtp>-dtp ' : ' <fs_dtp>-src '->' <fs_dtp>-tgt ' Could Not be Activated' INTO lv_output.
            ENDIF.
          ENDIF.
          WRITE:/ lv_output.
        ENDLOOP.
      ELSE.
        WRITE:/ 'DTP is not Inactive'.
      ENDIF.
    Program for TRANSFORMATION ACTIVATION
    **& Report  ZTRFN_ACTIVATE
    *Coded by NBS BI team.
    *Date: 15-Jan-2010
    *Function: Activates in-active transformation only.
    REPORT  ZTRFN_ACTIVATE.
    TYPES: t_tran TYPE rstran,
    i_tran TYPE STANDARD TABLE OF t_tran.
    DATA: r_tran_maintain TYPE REF TO cl_rstran_maintain,
    lv_subrc TYPE sy-subrc,
    lv_output(255) TYPE c,
    tab_tran TYPE i_tran,
    i_s_source TYPE rstran_s_tlogo,
    i_s_target TYPE rstran_s_tlogo.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_id TYPE char35.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      FIELD-SYMBOLS: <fs_trans> TYPE t_tran.
      REFRESH tab_tran.
      SELECT * FROM rstran
      INTO TABLE tab_tran
      WHERE tranid = p_id AND objvers = 'A' AND objstat = 'INA'.
      SORT tab_tran.
      IF tab_tran IS NOT INITIAL.
        LOOP AT tab_tran ASSIGNING <fs_trans>.
          TRY.
              CREATE OBJECT r_tran_maintain
                EXPORTING
                  i_tranid       = <fs_trans>-tranid
                  i_s_source     = i_s_source
                  i_s_target     = i_s_target
                  i_expert       = rs_c_false
                  i_mode         = rsawc_c_tfc-display
                  i_with_message = rs_c_true.
            CATCH cx_rstran_not_found .
            CATCH cx_rstran_input_invalid .
            CATCH cx_rstran_cancelled .
            CATCH cx_rstran_not_authorized .
            CATCH cx_rstran_display_only .
            CATCH cx_rstran_already_exist .
            CATCH cx_rstran_error_with_message .
          ENDTRY.
          CALL METHOD r_tran_maintain->check
            EXPORTING
              i_with_display = rs_c_true
            IMPORTING
              e_subrc        = lv_subrc.
          IF lv_subrc = 0.
            CONCATENATE 'Activated Transformation : ' <fs_trans>-tranid ' : ' <fs_trans>-sourcename '->' <fs_trans>-targetname INTO lv_output.
          ELSE.
            CONCATENATE 'Transformation : ' <fs_trans>-tranid ' : ' <fs_trans>-sourcename '->' <fs_trans>-targetname 'Could Not be Activated' INTO lv_output.
          ENDIF.
          IF lv_subrc = 0.
            TRY.
                CALL METHOD r_tran_maintain->execute
                  EXPORTING
                    i_wrkmode = cl_rstran_stat=>wrkmode_activate
                  IMPORTING
                    e_subrc   = lv_subrc.
              CATCH cx_rstran_cancelled .
              CATCH cx_rstran_error_with_message .
              CATCH cx_rstran_display_only .
            ENDTRY.
          ENDIF.
          WRITE:/ lv_output.
        ENDLOOP.
      ELSE.
        WRITE:/ 'Transformation is not Inactive'.
      ENDIF.

  • Reg: dtps and infocubes,Dsos in bi 7

    HI All,
                Can you please explain in details about types of dtps and use(singifiance of each dtp) them in bi 7 as well as cubes and dsos, please do not send links it is difficult to get what i want.
    Thanks in advance
    Vis
    Please search the forum/SDN before posting a thread.
    Edited by: Pravender on Jun 29, 2010 10:46 AM

    Hi,
    In BI 7.0 when you need update rules and transfer rules, you can create it by
    right click on data target --> additional Fumctions --> create Update Rules
    Using this you can create Update Rules , but only thing is the Infosource you are planning to use should be 3.X infosource.
    But same functianality or you can say better functionality you can achieve by using Transformation rather than Update and Transfer rules.
    I hope this satisfies your query.
    Thanks,
    Geetanjali.

  • Missed get delta once option in dtp and transported to prod

    hi all
    we have transported DTP for our infocube 0wbs_c11 into production.
    This infocube 0wbs_c11 is loaded from 4 datasources of which one datasource supports delta and rest donot.
    so in process chains we are using the option for delete overlapping requests. for all the 3 datasources which doesnot support delta.
    But for one of these 3 datasources we have transported DTP without ticking GET DELTA ONCE OPTION AND loaded to infocube.
    now we should tick the get delta once option and transport it to production, where we already ran this dtp once.
    Since we cannot enable the get delta once option enabled in dtp after the first dtp run
    my question is should i delete the request from infocube and transport the dtp transport request (to prod )with getdelta once option ticked and run the dtp again will it work.
    or do i need to delete the request as well as dtp from prod and then transport the new request with delta once option ticked.
    regards
    krishna

    based on the above link which says after activating transformations using the program rsdg_trfn_activate if we run process chain the dtp's get activated by itself
    i have done a trial based on the above point
    i went to dtp execute tab and press  execute ,and when it asks me for furthur process
    YES   NO   CANCEL
    I have cancelled the execution of dtp.
    and now when i refresh the tree the dtp is seen active .
    i followe the same for all.
    regards
    Edited by: krishnav3.5 on Sep 16, 2011 4:17 PM

  • How to define JAXP Parsers and Transformer in a Web Application Context

    Hi
    I need to define JAXP Parsers and Transformer in a Web Application Context where I can deploy this application in any J2EE Application Server without modifying the server. That means that I can't set System properties or set the jaxp.properties file. I tried to use the META-INF/services/javax.xml.transform.TransformerFactory file but it didn't work.
    Any ideas?

    Hi
    I need to define JAXP Parsers and Transformer in a Web Application Context where I can deploy this application in any J2EE Application Server without modifying the server. That means that I can't set System properties or set the jaxp.properties file. I tried to use the META-INF/services/javax.xml.transform.TransformerFactory file but it didn't work.
    Any ideas?

  • Help XSLT Data Mapper and Transformations

    Hi guys,
    I need help in oracle ESB (XSLT Data Mapper and Transformations). I need to use the XSLT Data Mapper and Transformations using Response XML to Request XML.
    Thanks
    Vyas

    The concept is the same as BPEL. Without going into too much detail have a look at the folowing tutorial.
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28212/buildendtoend.htm#BEICEFJD
    Near the bottom they show how to do transformations.
    cheers
    James

  • Mapping and transformation rules

    Hi experts,
       pls tell  me what is this mapping and transformation rules in context wz filw to RFC scenario.
    what do u mean by transformation and transformation rules.
    Thanks
    veeru

    Hi
    Mapping and Transformation both are same,to understand clearly we go for transformation.
    Generally we go for Mapping/Transformation when ever you want to change the source structure into required format of the target structure we gor for mapping ie. Transforming the one structure to another.
    Ex:
    Source Structure:
    Fname
    Lname
    Empid
    Fname------>CONCATE   theswe togetherly gives Name.
    Lname------->CONCATE
    My required Target Structure is:
    Name(So to get Name we will use the CONCATE preefined functon under Graphical Mapping in Mapping Editor )
    Empid
    Thanks

  • Digital copies of Hugo and Transformer's with iTunes extras will not play

    The copys of Hugo and Transformer's that came with a digital copy, that I had to download from iTunes will not play.  When I try to play them it says "This movie requires QuickTime, which is not supported by this version of iTunes." 
    I have the latest version of iTunes installed and all of my other digital copy movies work fine.  I thought it might just be a corrupt download, so I deleted the Transformer's movie, and to my suprise, I can't redownload it!  If I go into the finder and find the file in itunes and try to play Hugo, there, it opens up Quicktime and plays just fine. 
    Anyone with either of these movies please chime in.  I haven't tried much to fix this, as I don't know what to do.  Thanks!

    I just found this thread because I had "The Big Lebowski" and "Harry Potter, Deathly Hallows Part 1" doing that to me.
    Your solution worked.
    Then after those were back in the library with their nice album art, I see that Hugo had gone to the "gray cube" and wouldn't play!  The "Extras" interface would, but not the movie.  So I did it to that movie.  There were multiple movies in the list, the Extras and the Movie itself.  When I went to add it back in, I just got the movie, not the Extras interface.
    Has anyone else figured out how to get the Extras back?

  • How to validate and transform large (180M) xml files

    Hi:
    I've been looking at various ways to do this with oracle and am getting a bit lost in the sea of documentation and different ways to go about this. I was hoping that something like the XMLParser class and XMLTransform would be smart enough to handle large files by using SAX when it has to but I'm getting "too many nodes" when trying to transform a really large file. I've gotten oraxsl to handle it if I pass in the proper memory parameters on the command line but a) this will still have limits and b) I was trying to do this in a stored procedure which (I think) means I'm looking at XMLParser?
    I've also seen documentation on something called "Scalable DOM" but I think that's only in 11g? So I'm thinking I have to write a (Java?) stored procedure to loop through the top elements of this XML file (select extract(...)) and transform each node?
    I have the XML, XSD, and XSLT all in clob columns. What's the easiest/quickest path within Oracle to validate the XML against the xsd and translate source XML with XSL?
    I'm using Oracle 10gR2 on RH Linux.
    Thanks.

    So I'm thinking I have to write a (Java?) stored procedure to loop through the top elements of this XML file (select extract(...)) and transform each node? Here's something I've written a while back when I hit the same restrictions ("too many nodes") on 10.2.0.4.
    It takes XMLType as input parameters (but it's easy to adapt for CLOB), and streams the transformed XML directly into a file :
    create or replace and compile java source named ora_xslt_util as
    import oracle.xml.parser.v2.*;
    import oracle.xdb.XMLType;
    import java.io.*;
    import org.w3c.dom.*;
    public class oraXSL
    private static XMLDocument getXMLDocument(XMLType xml) throws Exception
        XMLDocument doc = null;
        DOMParser parser  = new DOMParser();
        parser.setValidationMode(oracle.xml.parser.v2.XMLParser.NONVALIDATING);
        parser.setPreserveWhitespace(true);
        parser.parse(new StringReader(xml.getStringVal()));
        doc = parser.getDocument();
        return doc;
    public static void transform(XMLType doc, XMLType xsl, String filename) throws Exception
        OutputStream os = new FileOutputStream(filename);
        XMLDocument xmldoc = getXMLDocument(doc);
        XMLDocument xsldoc = getXMLDocument(xsl);
        XSLProcessor xsp = new XSLProcessor();
        XSLStylesheet xss = xsp.newXSLStylesheet(xsldoc);
        xsp.processXSL(xss, xmldoc, os);
        os.close();
    }and the PL/SQL wrapper (originally part of a package) :
    PROCEDURE processXSL (
       p_xmldoc IN XMLType
    , p_xsldoc IN XMLType
    , p_filename IN VARCHAR2
    IS
    LANGUAGE JAVA NAME 'oraXSL.transform(oracle.xdb.XMLType,oracle.xdb.XMLType,java.lang.String)'
    ;

  • Xml validation and transformation in a row: Possible?

    Hi.
    I'm working on a small tool that uses javax.xml.validation and javax.xml.transform (JDK 6) to perform validation and transformation of xml files in a row.
    The problem is, the namespaces and reference to the xml schema required by the validator somehow prevent the transformation from extracting data from the xml file.
    Here's the header I use in the xml file:
    <tagWhatever
    xmlns="http://www.myPlace.com"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.myPlace.com mySchema.xsd">To sum it up, with the namespace declaration within the xml I can validate but not transform, and without the declaration, I can transform but not validate.
    Can anyone help me out witht this one?
    Thanks
    5thString

    Hi.
    I'm working on a small tool that uses javax.xml.validation and javax.xml.transform (JDK 6) to perform validation and transformation of xml files in a row.
    The problem is, the namespaces and reference to the xml schema required by the validator somehow prevent the transformation from extracting data from the xml file.
    Here's the header I use in the xml file:
    <tagWhatever
    xmlns="http://www.myPlace.com"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.myPlace.com mySchema.xsd">To sum it up, with the namespace declaration within the xml I can validate but not transform, and without the declaration, I can transform but not validate.
    Can anyone help me out witht this one?
    Thanks
    5thString

  • Tables for DTP and Infopackage

    Hi ,
    My requirement is we need to write a custom ABAP Program to view properties and various tabs, details in the tab etc for DTP and Info package. So we need the list of tables or any sources from where the data is fetched for the each of details in DTP and Info packages.
    For example: Will get the Infopackage Data Selection details from table 'RSLDPSEL'. Like this we need table for each settings in Infopackage and DTP.
    Regards,
    Lavanya.

    HI,
    Infopackage related table:-
    RSLDPIO-     Links datasource to infopackages
    RSLDPIOT-infoPackage Text Description
    RSLDPRULE-ABAP source code for InfoPackages
    RSLDPSEL -Hardcoded selections in InfoPackages
    RSMONICDP-Contains the request-id number by data target
    RSPAKPOS-List of InfoPackage Groups / InfoPackages
    DTP Related Tables:-
    RSBKDTP       BW: Data Transfer Process Header Data
    RSBKDTPH      DTP: Historic Versions
    RSBKDTPSTAT      Status Information on Data Transfer Process
    RSBKDTPT      Texts on Data Transfer Processes
    RSBKDTPTH      Texts on Data Transfer Processes
    RSDDSTATDTP      Table for WHM Statistics. Details DTP
    RSOACUBE_DTP      BW: OLTP Direct Access: Directory of Assigned Remote DTPs
    RSBKDATAPAKSEL      DTP: Data Package Selections
    RSBKSELECT      Selections for DTP Request (Summary)
    RSBKREQUEST      DTP Request
    RSBKREQUEST_V      View of DTP Request
    RSBKBP      Breakpoints
    RSBKDATAINFO      Information on DTP Runtime Buffers
    RSBKDATAPAKID      DTP: Status Table for Data Packages
    RSBKSUBSTEP      Properties of Substeps in a DTP

  • Can we cleanse and transform data at flat file or external table level?

    Hi,
    I have some data that I want to cleanse and transform. I don't want to cleanse it after i populate the external table, I want to get done with it at flat file level or while populating the external table. Can we cleanse and transform data at flat file or external table level through Oracle or OWB 11.2? Is it possible to run a conditional load (i.e. having a where clause or if-else-then) for an external table? Can we call oracle functions for an external table at the time of creation?
    Thanks in advance.
    Regards,
    Ann.

    Hi Oleg,
    Thanks a lot for the clarification. :)
    So is there a way that I can clease the data within the text file through Oracle or OWB? I have datatype mismatches in the data and most of my data is getting rejected because of that. The way I can think of, for solving this problem, is to create the external table with all fields with datatype varchar and then cleansing the data. But it doesn't seem very effecient plus it will get very complicated because I have almost 80-90 fields.
    Any help?
    Thanks and regards,
    Ann.

  • Regarding assign and transform

    Hi all,
    iam doing a task, in which the data from one (oracle 10g) is moved to another database(oracle 12i ),
    source table contains around 30 columns and destiantio contans some N number of columns.
    I just used data polling for source . when data is inserted in the source side ,it is automatically picked and inseted in to destination.
    Around 22 columns are directly mapped , and remaining are validated based on some conditons and then inserted to desinaiton.
    iam using transform activity for direct mapping , and remaining columns are mapped with assign activity(after chcecking the conditions).
    Promblem is only transform values are getting inserted in the destination table.
    can't we use both assign and transform in one bpel process .
    can't we use two transform activities in same bpel process.
    regrads,
    ramakrishna

    HI Buddy,
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Thu Oct 16 16:11:42 GMT+05:30 2008
    Author: 703036713
    Purpose: Empty BPEL Process
    -->
    <process name="assing_transform"
    targetNamespace="http://xmlns.oracle.com/assing_transform"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:client="http://xmlns.oracle.com/assing_transform"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ns5="http://xmlns.oracle.com/pcbpel/adapter/db/source/"
    xmlns:ns6="http://xmlns.oracle.com/pcbpel/adapter/db/top/source"
    xmlns:ns7="http://xmlns.oracle.com/pcbpel/adapter/file/source/"
    xmlns:ns8="http://www.emp.org"
    xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/db/dest/"
    xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/db/soure/"
    xmlns:ns4="http://xmlns.oracle.com/pcbpel/adapter/db/top/dest"
    xmlns:ns3="http://xmlns.oracle.com/pcbpel/adapter/db/top/soure"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <partnerLink myRole="dest_role" name="dest" partnerRole="dest_role"
    partnerLinkType="ns2:dest_plt"/>
    <partnerLink myRole="Read_role" name="source"
    partnerLinkType="ns7:Read_plt"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <variable name="input" messageType="ns7:emp_msg"/>
    <variable name="output" messageType="ns2:EmpCollection_msg"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <receive name="Receive_1" partnerLink="source" portType="ns7:Read_ptt"
    operation="Read" variable="input" createInstance="yes"/>
    <assign name="Transform_1">
    <bpelx:annotation>
    <bpelx:pattern>transformation</bpelx:pattern>
    </bpelx:annotation>
    <copy>
    <from expression="ora:processXSLT('Transformation_2.xsl',bpws:getVariableData('input','emp'))"/>
    <to variable="output" part="EmpCollection"/>
    </copy>
    </assign>
    <assign name="Assign_1">
    <copy>
    <from variable="input" part="emp" query="/ns8:emp/ns8:empdet/ns8:name"/>
    <to variable="output" part="EmpCollection"
    query="/ns4:EmpCollection/ns4:Emp/ns4:empname"/>
    </copy>
    </assign>
    <invoke name="Invoke_1" partnerLink="dest" portType="ns2:dest_ptt"
    operation="insert" inputVariable="output"/>
    </sequence>
    </process>
    THIS IS MY BPEL FILE , CREATED FOR TESTING PURPOSE
    IN WHICH I HAVE TAKEN THREE FIELDS IN XML FILE AND TRIYING TO SEND TO DATABASE
    FOR TWO FIELDS IAM USING TRANSFORM
    AND FOR ONE FIELD ,IAM USING ASSIGN
    THE BPEL PROCESS SUCESSFULLY DEPLOYING , BUT IT IS GIVING RUNTIME (CHECKING IN BPEL CONSOLE PROCESS FLOW)
    THE ERROR IS ASSIGN ACTIVITY SHOWING ERROR IN BPEL SPEC 1.1 SECITON 14.3
    COULD U SUGGEST ME , IS THERE ANY OTHER ALTERNATIVES TO SOLVE THE ISSUE
    THANKS AND REGRADS
    RAM

Maybe you are looking for

  • Why can't I install Itunes on Windows 8

    Need Help, I have a Dell  XPS laptop that was running Windows 7 Ultimate with Itunes installed and running fine. I upgraded to Windows 8, installed all my programs... and finally at the end (last program I need to install), I go to install Itunessetu

  • Strange syslog from Prime Infrastructure 2.1

    Been getting alot of these syslog messages. I think perhaps a system job is failing but I don't know where to start to troubleshoot. 09 03 2014 11:23:13 [pi-ip-address] <LOC7:ERRR> 09/03/14 11:23:13.484 ERROR [jobmanager] [seqtaskexecutor-12371] ERRO

  • Creating WSDD and WSDL file

    I am working on JSR 172, I have created a server code, installed Tomcat and Axis. Now i want to convert my .java file to .wsdd and .wsdl file the below command are not working plese help. java -classpath lib\axis.jar;lib\saaj.jar;lib\jaxrpc.jar;lib\c

  • How to Debug Idoc Adapter from XI to R/3

    Hi, Can any one please help in debugging the Idoc adapter from XI to R/3. Here is the my problem - XI to R/3 idocs have been created correctly but the service relation ship is created incorrectly. i.e. When XI creates inbound idoc into R/3, it is als

  • All of a sudden I'm getting the hdcp error on my iMac

    yeh on my imac not an external display