Modelling BPEL link

Hello,
I have some questions concerning the BPEL link construct within a flow:
I looked at the example project "Link" in the samples directory of Oracle BPEL Process Manager. The link that is used in this example is visible in the source code of the BPEL process but not in the diagram view.
Is there a graphical representation of links in JDeveloper BPEL Designer (I am using JDeveloper Version 10.1.2.0.0)?
Is it possible to model a link between two activities graphically or do I have to edit the BPEL source code?
Thanks, Ingo

I'd like to add a question:
It seems, that links in BPEL work in the engine, but are not visualized in the designer. Will this feature come with the next BPEL release?
It is a must have feature for us, because not seeing the link dependencies visually is a great loss of information...

Similar Messages

  • 3-Tier model of linking DB

    Dear all,
    I have some questions about linking DB. As you know, I directly copy the data into the local DB. It is not a good choice! So I would like to implement 3-tier model to access DB so that it much more efficient choice as we can access DB anywhere.
    Thus, I have look into it. The method sounds like this:
    1. Get the data from Applet and copy them to Serializable Object or XML file and pass it to a JSP Server (Client).
    2. The JSP Server listen the request and obtain the Serializable Object or XML file so the data can be retrieved. Then call the Bean and pass these parameters to it (Middle-Tier).
    3. The Bean receive the request and access the DB (Server).
    Do I interpret the wrong idea? Actually I don't too understand too much about this model. Moreover, I don't know how to send the Serializable Object or XML file to JSP Server so the JSP script can do the task.
    Hope that you may give me some idea and suggestion for that! Thanks a lot!
    Best regards,
    Peter Ip

    Sounds like your on the right track. Keep in mind that the reason serializable objects are used is to keep client pages decoupled from the middle tier, along with providing a clean and consitant way of passing data to the middle tier.
    "I don't know how to send the Serializable Object or XML file to JSP Server so the JSP script can do the task."
    Here's how I do this. Client pages send form data to a servlet (via HTML action=""). The servlets job is to parse/approve the data, and create a ValueObject (VO) represeneting the data in a db table like format. The VO is object is Serializable, and moreover, it has no functionality, just variables with getter/setter methods. Its only purpose is to transport data between teirs. This concept is important, as it keeps your client(s) pages loosly coupled, and alows reuse.
    So, client sends in data, servlet parses data and creates a VO, then the servlet invokes the middle teir by sending in the VO. At that point, the middle tier does its thing from the VO. The middle tier does not have to worry about parsing or validating the data, and it's client independent, as the middle tier should be (e.g. no http request usage, session usage, etc.)
    For more information, look into the Data Access patterns and/or visit the J2EE paterns form. You'll find information about Data Access Object (DAOs) and ValueObjects (VOs
    Hope this helps without adding confusion. Let me know if I, or anyone, can elaborate on the concepts.
    bRi

  • Custom Data Model Document/Link MDM

    Hi Expert,
    We implement MDM in this year.
    we want create custom data model. Is any SAP document/link for custom data model and load data to custom data model?
    Need your response.
    Thanks and Regards

    Hello,
    To create Data Model, you can refer to MDM Console Guide, to download http://service.sap.com/installmdm71.
    To load data from an SAP System we have IDoc, and ABAP Proxies, for this we require an Middleware tech, SAP PI is recommended as it come with pre-delivered object that can be used.
    If you need more clarity, do post your query
    Regards,
    Abhishek

  • Power Pivot Data Model with Linked Table

    Can anyone provide me with some suggestions as to how to accomplish the following in Power Pivot?
    I have the following Pivot Table fields. I'm trying to create a data model to allow me to filter all of the projects by the selected Fiscal Year. The Fiscal Year table is a dimension I created to group the data by.
    I'm considering separating Projects into multiple tables such that 1 table is for Year1 information, another table is for Year2 information (includes Year2FiscalYear, Year2BudgetCAP, etc.).
    I think what I need to do is create a measure to allow me to filter the records by fiscal year. Anyone have any ideas?
    Thanks,
    Roland

    Hi Greg,
    The data is coming from Project Online (OData feed) and SharePoint lists (all within Project Online). I'm creating an Excel Report.
    The reason I can't use Power Query is because refreshing a report that is built using Power Query is not supported via browser. Power BI is needed to do this. On the other hand if I build an excel report using Power Pivot only, the browser refresh functionality
    works.
    The Year1FiscalYear, Year2FiscalYear, etc. are all enterprise custom fields in Project Online. Therefore I have some control in being able to change the format of the data. I'm looking into what are some options on my side to configure Project Online or
    SharePoint lists to make building the model simpler...
    Thanks,
    Roland

  • Column link

    I am trying to get a hyperlink in my tableview, tried all possible ways to get a link. As suggested in forums i tried in setting the column data as link in Bean noting happens, when i try it in jsp page it gives error. am I missing any jar files. 
    Bean :
    public void TestTableViewModel(IPortalComponentRequest componentRequest){
              Vector column = new Vector();
              column.addElement("Link");
              Vector data = this.getData(componentRequest);
              model = new DefaultTableViewModel(data, column);
                 model.getColumn("Link").setType(TableColumnType.LINK);
         private Vector getData(IPortalComponentRequest componentRequest)
              Vector retVector = new Vector();
              Vector data = new Vector();
              data.addElement("click here");
              retVector.add(data);
              return retVector;
    JSP :
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.tst.img.ISBean" />
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId" >
         <hbj:tableView
         id="myTableView1"
         model="myBean.model"
         design="ALTERNATING"
         headerVisible="true"
         footerVisible="false"
         fillUpEmptyRows="true"
         navigationMode="BYLINE"
         selectionMode="NONE"
         headerText="test"
         onNavigate="myOnNavigate"
         visibleFirstRow="1"
         visibleRowCount="2"
         width="700px">
         <%
              myTableView1.setColumnType(TableColumnType.LINK,1);
    %>
    </hbj:tableView>
       </hbj:form>
      </hbj:page>
    </hbj:content>
    with Jsp i get compilation error
    Error in executing a process for compilation, C:/usr/sap/EP6D/j2ee/j2ee_00/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/IMAGESHOW/work/pagelet/_sapportalsjsp_TabImgShow.java:141: cannot resolve symbol symbol : variable TableColumnType location: class pagelet._sapportalsjsp_TabImgShow myTableView1.setColumnType(TableColumnType.LINK,1); ^ 1 error .
    Exception id: 12:01_20/08/05_0065
    See the details for the exception ID in the log file

    You could do what i suggested in my earlier post.
    https://forums.sdn.sap.com/thread.jspa?threadID=58649&messageID=621982#621982
    All you have to do is when you build your data vector, put the complete html text.
    private Vector getData(IPortalComponentRequest componentRequest)
                Vector retVector = new Vector();
                Vector data = new Vector();
                data.addElement("<a href=http://www.cnn.com>CNN</a>");
                retVector.add(data);
                return retVector;
    The way you are doing will also work but the table columns which has link actually links to another column which contains the link. Your code should look like following.
    public void TestTableViewModel(IPortalComponentRequest componentRequest){
    Vector column = new Vector();
    column.addElement("Link");
    column.addElement("ActualLink");
    Vector data = this.getData(componentRequest);
    model = new DefaultTableViewModel(data, column);
    model.getColumn("Link").setType(TableColumnType.LINK);
    model.getColumn("Link").setLinkColumnKey("ActualLink");
    private Vector getData(IPortalComponentRequest componentRequest)
    Vector retVector = new Vector();
    Vector data = new Vector();
    data.addElement("click here");
    data.addElement("http://www.cnn.com");
    retVector.add(data);
    return retVector;
    I don't think you need to do 
    <%
    myTableView1.setColumnType(TableColumnType.LINK,1);
    %>
    in your JSP but if you
    Make sure your add following import statement in your JSP.
    <%@ page import="com.sapportals.htmlb.enum.TableColumnType" %>
    Message was edited by: Prakash  Singh

  • Data objects in the alert modeler.

    Hi,
    in the default alert modeler profile, there are some data objects.
    Can we add more data objects to this profile..
    As in ... i want to display the campaign information of the business partner in the alert..
    also .. i want to display the last interaction record data like ... date.. description of the interaction record ..
    How can i achieve this.
    Regards
    Vandana Gupta

    hi vandana
    i suppose that u cant add new data object to ur alert modeler,because alert modeler is linked to the meta model and these meta models includes the set of data object which u can use while using a default profile but what u can do is assign new function event as data objects are linked with the events ,that way u can easily incubate ur new data object which u want to use with the alert modeler profile and assign that profile to the IC profile,
    for creating new function events u have to do some coding which is very easy ,if u don know u may ask the same in ur time who knows that.
    guess it will help
    best regards
    ashish

  • Eight-Class Model QoS for voice and video

    One of the QoS recomendation in the SRND "Enterprise QoS" is to create a Eight-Class QoS Model utilizing a seperate priority queue for voice and video.
    It says that even though you have only one physical priority queue, that LLQ has an implicit policer that allows for time-division multiplexing of the single priority queue. This implicit policer abstract the fact that there is essentially a single LLQ within the algorithm and, thus, allows for the "provisioning" of multiple LLQs.
    My question is if anyone has tried this and if there are any limitations on the platforms that can support this "dual-LLQ design."

    Design guide which is basically the QoSDesign recommendation bible.
    http://www.cisco.com/univercd/cc/td/doc/solution/esm/qossrnd.pdf
    It has a large section for WAN recommendations...while you may not
    need to follow one of these Based on my understanding what what you
    have for a link (DS3) and what you are trying to accomplish, I
    believe the following section would be a good place to start.
    - WAN Aggregator QoS Design
    - WAN Edge Classification and Provisioning Models
    - High Link Speed QoS Class Model
    - Eight-Class Model

  • MySQL functionality within Oracle SQL Developer Data Modeler

    Hi all,
    I've read a few forum posts here that lead me to believe that MySQL is not currently supported by the data modeler tool (Link #1 I got to by clicking on the Statement Of Direction link on the main page SQL Developer Data Modeler&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;SQL Developer Data Modeler&quot;&g… Link #2 I got to by doing a search on the word MySQL within the forum search):
    Link 1:
    SQL Developer Data Modeler Statement of Direction
    Link 2:
    Can datamodeler be used with MySQL?
    SQL Developer (not the Data Modeler tool, but the database admin-type tool not for modeling) does support MySQL using the latest MySQL Connector J 5.1 driver but, strangely,  it doesn't seem the Data Modeler supports it, though.  Can anyone please confirm that MySQL is currently unsupported for the Data Modeler tool?  Thanks in advance.

    Hi,
    it doesn't seem the Data Modeler supports it, though.
    Data Modeler doesn't have specific support for MySQL - i.e you cannot generate DDL for MySQL. Though you can import form MySQL server using JDBC connection in standalone DM or using created MySQL connection if you are using DM inside SQL Developer.
    You can import definitions for tables(columns, PK and UK constraints, indexes, foreign keys) and views.
    Philip

  • Displaying HTML link in an MVC application

    I  have created a form which use a text editor to post content to the database. However on my news page the link are not showing as hyperlink but as HTML  like this <a href="www.microsoft.com">Microsoft.com</a>
    I am using the @Html.displayFor helper
    <p> @Html.DisplayFor(modelItem => item.postContent)</p>
    What am I missing?

    There are many ways to do it. But, a simple way will be
    <p> <a href="Model.postContent">Link Name</a> </p>
    If you found this post useful, Please "Mark as Answer" & "Vote as Helpful". Best Regards.

  • Modeling: how to place Material Grp in Material Master TABLE instead of DIM

    Hi,
    I just completed a review of the "...Modeling with BI" document and I will appreciate some clarification on the following:
    Some key points leading to question:
    --"..In order to cover all requirements, master tables in a BI Data model are NOT linked directly to cube .."
    e.g. While Material Number is in the Material Dimension; Material Type and Material Group are outside the Star Schema (page 14) i.e. in the Material Master, Material Text, Material Hierarchy TABLES.
    --".. translation tables called SID tables are used in the BI data model to link the master tables of the BI data model to cubes" (page 16)
    --So, the discussion goes on to point to the different LOCATIONS that a dependent attribute (which are not in 1:N relationships) of a characteristic such as Material Group may be located:
    in the
    i) Material Dimension table or
    ii) Material Master table or
    iii) Material Hierarchy table or
    iv) combination of i/ii/iii
    My question:
    When building a cube, I know how to add Material Group to the same dimension as in case of i.
    How do I add Material Group in the cube, in such as way that it is ii?
    If I created a separated InfoObject, Material Group, it will not meet ii, since it will not be part of the Cube in question.
    Can you help me with how to make the LOCATION for Material Group as ii and iii in this example?
    i.e. to make Material Group as part of the model but not added to the Material Dimention table but to "Material Master table"
    i.e. I am trying to get this line well:
    --".. translation tables called SID tables are used in the BI data model to link the master tables of the BI data model to cubes"
    Thanks

    Hi Amanda.........
    I am not getting ur question properly...........but I will try to explain u .......
    translation tables called SID tables are used in the BI data model to link the master tables of the BI data model to cubes.......
    Do u know.........what is Extended star schema.............it is a purely that concept..........
    Look.......Infocube will never store Master data...........Master data will be stored in Infoobject...............
    Now look...........if u make a Infoobject Master data enable.........then it will be connected to  Four Master data table.......
    Attribute Table
    Text Table
    SID table
    Hierarchy table.........
    Different Master tables are........
    /BIC/M -- View of Master data Tables
    /BIC/P -- Master data Table, Time Independent attributes
    /BIC/Q -- Master data Table, Time Dependent attributes
    /BIC/X -- SID Table, Time Independent
    /BIC/Y -- SID Tabel, Time Dependent
    /BIC/T -- Text Table
    /BIC/H -- Heirarchy Table
    /BIC/K -- Heirarchy SID Table
    When u r creating the Infoobject........in the Masterdata/text tab...........if u check the box With Master data.........the characteristic may have attributes........... In this case the system generates a P table for this characteristic.............. This table contains the key of the characteristic and any attributes that might exist.........
    Again if u check the With Text...........then it will hav text table..............
    For Hierarchy in the Hierarchy tab page..u hav to select with hierarchy.................
    Now while activating the Master data SID gets generated..........this is stored in SID table.........SID table contains the Key field of the Attribute table and SID............suppose material...........then SID table will contain Material number and SID value........
    Now the DIM table of an infocube contains..........SID and DIM.............so DIM tables r connected to the Master data table with this SID.......Again in turn SID tables are conneected to the Master data table.........
    So cube will access this Master data table with the help of SID..........ie.......ID tables are used in the BI data model to link the master tables of the BI data model to cubes
    Check this.........
    http://sapbwneelam.blogspot.com/2007/10/extended-star-schema.html
    Regards,
    Debjani......

  • Error 306, using WiFi, often on the Canon PIXMA models

    I've seen the following error on numerous other boards and here on older Apple posts, too:
    Error Number 306 A communication error has occurred
    I thought that I had done all the correct steps to solve the problem, but it still wouldn't work. Then, I found two different posts which said similar things (one which was really close by Pahu, thank you!) that led me to the correct result. So, I wanted to lay it out in explicit detail here, in the hopes that others could solve their problem quickly & easily. The prerequisite for the steps below is that _your Canon is powered up, configured, & WiFi connected to your LAN_. Here's what I did *that worked*:
    • Delete any previously installed (i.e., non-working) printers for the Canon
    • Download the basic Mac installation software for your Canon model at this link, *making sure that you're installing the Canon Networking software* (it may be a separate link, or it could be bundled into their basic install - YMMV):
    http://www.usa.canon.com/consumer/controller?act=SupportIndexAct
    • Download the latest printer driver for your model, same link as above. Yes, you will need to download at least these two items, since the drivers in the original installation will not be the latest & greatest.
    • Install the basic installation/networking software first, then update the drivers
    • Go to System Preferences:Print & Fax
    • Click '+' to add a new printer, select Default in the top, left corner of the Add Printer window, then wait for 15-30 seconds
    • You'll see another Canon printer appear on the list, with a string of numbers after its name. *This is the one you want*, NOT the one which is already there when you first click Default. After you select that printer (do a Test Page to verify it works), you can go back and edit it, trimming the name down by cutting off the string of numbers; doing so will not affect the printer's operation.
    That's it! The real trick was in selecting the networking version of the printer which is "discovered" by the network when you pull up the Default tab. Whenever I tried to use the standard version of the printer, even though I could do things like clean the heads and actually receive a printout from doing so, I could never send anything to the printer successfully. Hope this works as well for you as it did for me!

    AFAIK, this IS a solution, which is why I entered it. Let me know if it works!

  • SIT unable to 'look under' simulink library link

    I have used older versions of SIT. I recently installed LabVIEW 8.2 and SIT 3.0.2. I work with very complex simulink models. As a result all the models I work with have library linked blocks (subsystems) in them. When I tried to use current version (as specified above), I realised that I am unable to browse any deeper than the top level block (which happens to be a library linked subsystem). All I can see in the inputs and the outputs of the block with I got 'mapping' tab of the SIT GUI. My entire model in under this block which consists of various masked subsystems, library linked blocks. I had this problem with a version just before this version (I guess it must be 3.0). I was thinking this would have been addressed in the newer release. Apparently not so. Is this a bug with LabVIEW SIT or a limitation or am I doing anything wrong?
    Thanks.
    Amit

    Sorry Bob, I believe on the second read, my comment also seem to come the wrong way. When I said I have used Matlab/Simulink for over 6 years, I was citing my experience with those tools. I am a fairly new user of LabView/SIT. So, I understand what are the linked subsystem etc. As far as versions are concerned, Matlab version Release 13 SP1 (6.5.1) seemed to have worked fine. This corresponds to Simulink version 5.1. The SIT version 2.0 (or 2.0.2).
    I would like to understand what is the cause of the problem. Also, I was able to find a work around, but that is not a workable solution in our case. The reason is most of our model have a lot of library links. The work around is to disable the library link within the simulink model and then establish the connections between the VI instruments and model blocks at all whichever level. Then restore the simulink model library links. It seems to work fine but is not a viable option.

  • Difference​s between X1 Carbon Models?

    Is there something (some resource) that describes the differences between the different Thinkpad X1 Carbon Models (the differences between the 3443 and the 3444 and the 3446, etc...)?  Or rather, are there any key differences between this different models?

    Link to image
    I saw that pdf, but it doesn't describe the model differences for all the different X1 Carbons -- namely, on the lenovo website, the first Gen. X1 carbon being sold is the 3443 (as seen in the cart), however, there is no mention of this model in that pdf (search for 3443 and no results are found in that pdf).
    Moderator note: images totalling more than 50k converted to links per forum rules:  Lenovo Community Participation Rules

  • Oracle.imaging.axf.resources.AxfException: javax.ejb.EJBException

    We frequently get below error while clicking on "View Task" link and does not open the task . can someone help us what can cause this.
    [2012-10-30T10:01:30.942-04:00] [IPM_server1] [ERROR] [] [oracle.imaging.axf] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: thakkaf] [ecid: 34d9091f8b28ca41:44d87f45:13ab1298e37:-8000-0000000000001a88,0] [APP: imaging] TCM-91000: An unexpected system error occurred. Contact your system administrator for support.[[
    oracle.imaging.axf.resources.AxfException: javax.ejb.EJBException: EJB Exception: ; nested exception is:
         java.lang.ClassCastException: oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_HomeImpl_1036_WLStub; nested exception is: java.lang.ClassCastException: oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_HomeImpl_1036_WLStub
         at oracle.imaging.axf.service.AxfSolutionMediatorBean.getErrorResponse(AxfSolutionMediatorBean.java:277)
         at oracle.imaging.axf.service.AxfSolutionMediatorBean.execute(AxfSolutionMediatorBean.java:153)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy273.execute(Unknown Source)
         at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorLocalImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
         at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorLocalImpl.execute(Unknown Source)
         at oracle.imaging.axf.view.menu.AxfActionMenuService.executeRequest(AxfActionMenuService.java:246)
         at oracle.imaging.axf.view.menu.AxfActionMenuService.executeAction(AxfActionMenuService.java:226)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:187)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
         at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
         at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
         at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:402)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.imaging.ui.model.filter.ImagingLoginFilter.doFilter(ImagingLoginFilter.java:142)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: javax.ejb.EJBException: EJB Exception: ; nested exception is:
         java.lang.ClassCastException: oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_HomeImpl_1036_WLStub; nested exception is: java.lang.ClassCastException: oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_HomeImpl_1036_WLStub
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:121)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:103)
         at $Proxy147.execute(Unknown Source)
         at oracle.imaging.axf.service.AxfSolutionMediatorBean.execute(AxfSolutionMediatorBean.java:148)
         ... 96 more
    Caused by: java.lang.ClassCastException: oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_HomeImpl_1036_WLStub
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceRemoteClient.getTaskDetailsById(TaskQueryServiceRemoteClient.java:726)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.bpel.services.workflow.client.WFClientRetryInvocationHandler.invokeTarget(WFClientRetryInvocationHandler.java:133)
         at oracle.bpel.services.workflow.client.WFClientRetryInvocationHandler.invoke(WFClientRetryInvocationHandler.java:72)
         at $Proxy278.getTaskDetailsById(Unknown Source)
         at oracle.imaging.axf.servicemodules.bpel.workflow.AxfWorkflowServiceModule.getTaskDetails(AxfWorkflowServiceModule.java:846)
         at oracle.imaging.axf.model.bpel.BPELFacade.getTaskDetail(BPELFacade.java:462)
         at oracle.imaging.axf.commands.bpel.OpenTaskCommand.execute(OpenTaskCommand.java:103)
         at oracle.imaging.axf.service.AxfCommandMediatorBean.executeCommand(AxfCommandMediatorBean.java:102)
         at oracle.imaging.axf.service.AxfCommandMediatorBean.execute(AxfCommandMediatorBean.java:61)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy276.execute(Unknown Source)
         at oracle.imaging.axf.service.AxfCommandMediator_kr0fzi_AxfCommandMediatorRemoteImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
         at oracle.imaging.axf.service.AxfCommandMediator_kr0fzi_AxfCommandMediatorRemoteImpl.execute(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
         at $Proxy147.execute(Unknown Source)
         at oracle.imaging.axf.service.AxfSolutionMediatorBean.execute(AxfSolutionMediatorBean.java:148)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy273.execute(Unknown Source)
         at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorLocalImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
         at oracle.imaging.axf.service.AxfSolutionMediator_xc27sg_AxfSolutionMediatorLocalImpl.execute(Unknown Source)
         at oracle.imaging.axf.view.menu.AxfActionMenuService.executeRequest(AxfActionMenuService.java:246)
         at oracle.imaging.axf.view.menu.AxfActionMenuService.executeAction(AxfActionMenuService.java:226)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:187)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
         at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:280)
         at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:147)
         at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:404)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.imaging.ui.model.filter.ImagingLoginFilter.doFilter(ImagingLoginFilter.java:143)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         ... 9 more

    Hey Praveen,
    I could resolve this error just be changing the sequence of starting the servers. Thanks to John Schleicher who suggested me below sequence.
    1.     Start Admin Server
    2.     After Admin started, start UCM and IPM simultaneously
    3.     After IPM & UCM started, start SOA.
    Check if this resolves your problem.
    The SR guy asked me to do following
    1. Stop WebCenter Content: Imaging Server.
    2. Clear the Temp files located at: /[IPMDomain]/servers/AdminServer/tmp
    3. Restart WebCenter Content: Imaging.
    4. Re-test.
    But above solution worked for me. Let me know if it works for you toooooooooooo.
    Regards,
    Vikrant Korde.

  • Unable to capture data from Serial port using LVRT2010 in single core pentium 4 machine

    I am using application written in Labview using windows Labview
    Runtime environment 2010. Application creates a tunnel to intercept data from
    Serial port.
    My problem is, Currently, I am using single core Pentium
    processor. When I am trying to intercept the data between COM1 and COM7 (COM 7
    is a virtual port) it is not able to capture data.
    When I am running Labview RT environment using dual core
    processor machine it is running normally. I wonder whether it could be the compatibility issues with
    single core Pentium processor.

    Hi Magnetica
    Are both of the machines running the same runtime engine,
    drivers ect?
    Have you had RT applications running on this
    machine before?
    Is the development computer a 64bit machine?
    The processor is a supported model (See link below).
    http://zone.ni.com/devzone/cda/tut/p/id/8239
    Regards
    Robert
    National Instruments UK & Ireland

Maybe you are looking for

  • Error while posting Excise Invoice

    Hi Experts, I have captured incoming excise invoice for an Import PO of Asset material. GR has been made. Also partial payment to vendor has been done through MIRO. During check it do not show any ERROR message While posting Excise invoice , error me

  • Transporter - Basic installation and connection questions

    We have never used or installed the Transporter before.  We are currently using Tidal 5.3x and are upgrading a sandbox environment to 6.2.  I have looked at all the transporter documentation I can find and am still missing some very basic questions -

  • Issue w/ File content conversion (Receiver side)

    Folks, there seems to be an issue with the conversion. I've read several of threads on this forum, but none helped! Although the file is generated with 8 bytes there seems to be nothing in the file. However when 'File' message protocol is used, the x

  • ORA-12222 Problem

    I encountered ORA-12222 error, saying TNS: no such protocol adapter, when I ran an NT application which uses 8.1.5 sqlplus client. However, I can still access the database with sqlplus on that workstation. I got error message only with the applicatio

  • Apps won't open in Snow Leopard on my imac

    Hi - a few days ago we had a massive power cut which happened during a storm, and while I was using my mac. Since then Finder has kept crashing and now I cannot open any applications either from the dock or the apps folder, except Firefox for some re