two inputs and two outputs

create a VI that will acquire temp and pressure for 10 seconds every 500ms. The thermal strain developed and output quantity is given then:
stress = 100 * temp + 6 * pressure;
output = 500 + temp * 0.1 + pressure * 10;
draw the stress and output temperature Vs. also highlight and Vs output pressure.

For the question above... I tried this method attached... Please tell me it's writing or not?

Macarius,

Because this seems to be not just a school problem, but also a review, I'm not very accurate so that I don't do your work for you.

Your program can meet the required specifications.  She doesn't have a lot of understanding the power of LabVIEW.  The documentation is non-existent. Style leave much to be desired.

Depending on what you are supposed to have learned, I would give it a passing beam but low grade.  It could be planning a lot with relatively little effort.

Lynn

Tags: NI Software

Similar Questions

  • How to synchronize the analog input and the output of two different USB data acquisition boards

    Hi all

    I have two tips very different USB NI USB 6008 case, which I use to acquire the data (analog input) and a USB of NI 9263 is a output analog only site I use to route a signal (in this case a square pulse). The reason why I use the outputs analog 6008 is because I need to deliver negative tension and need the full +/-10 v range.

    Looking at similar positions, I'm pretty sure that I can't use an external trigger or a common clock, I also tried to use the timed synchronization of the structures but no cigar.

    I'm including a quick vi I whipped showing how the jitters because of the lack of synchronization signal. The OD of the 9263 connects to AI in the 6008 in this example.

    I talked to a specialist in the phone and tols me that's not possible.

  • Problem setting up an encoder input and PWM output tasks on CompactDAQ

    I use a chassis with a modules 9474 cDAQ-9174 and 9411. I do not think it is important, but they are the cRIO-XXXX modules NOR old provided with a test configuration that has been distributed to early adopters. I use DAQmx tasks in an application (C libraries) to read (angular position) quadrature encoder and drive a motor directly with PWM current (pulse output). For various other needs, my tasks Setup is as follows:

    [DAQmx] MajorVersion = 9

    MinorVersion = 2

    [DAQmxChannel venture 9411 wheel entry/AngularPosition]

    CI. AngEncoder.PulsesPerRev = 500

    CI. AngEncoder.InitialAngle = 0

    CI. Encoder.ZIndexVal = 0

    CI. Encoder.ZIndexPhase = a Low high B

    CI. Encoder.ZIndexEnable = 0

    ChanType = input meter

    CI. MeasType = Position: angular encoder

    CI. AngEncoder.Units = ticks

    PhysicalChanName = cDAQ1Mod2/ctr2

    CI. Encoder.DecodingType = X 4

    [DAQmxChannel venture 9474 PWM output/PulseOutput]

    CO. LTD.. Pulse.IdleState = low

    ChanType = output meter

    CO. LTD.. OutputType = Pulse:

    CO. LTD.. Pulse.HighTime = 5.0000000000000004E - 006

    CO. LTD.. Pulse.LowTime = 5.0000000000000002E - 005

    CO. LTD.. Pulse.Time.InitialDelay = 0

    CO. LTD.. Pulse.Time.Units = seconds

    PhysicalChanName = cDAQ1Mod1/ctr3

    [DAQmxTask venture 9411 wheel entry]

    Channels = venture 9411 wheel input/AngularPosition

    SampQuant.SampMode = continuous samples

    SampClk.ActiveEdge = Rising

    SampQuant.SampPerChan = 100000

    SampClk.Rate = 100000

    SampTimingType = sample clock

    SampClk.src=/cDAQ1/100kHzTimebase

    [DAQmxTask venture 9474 PWM output]

    Channels = venture 9474, output PWM/PulseOutput

    SampQuant.SampMode = continuous samples

    SampQuant.SampPerChan = 100000

    SampTimingType = implied

    RegenMode = allow regeneration

    [DAQmxCDAQChassis cDAQ1

    ] ProductType = cDAQ-9174

    DevSerialNum = 0x18B3EC0

    [DAQmxCDAQModule cDAQ1Mod1]

    ProductType = NOR 9474

    DevSerialNum = 0xDEDF40

    CompactDAQ.ChassisDevName = cDAQ1

    CompactDAQ.SlotNum = 1

    [DAQmxCDAQModule cDAQ1Mod2]

    ProductType = NOR 9411

    DevSerialNum = 0xDEDB24

    CompactDAQ.ChassisDevName = cDAQ1

    CompactDAQ.SlotNum = 2

    Each task works fine on its own (i.e. without the other). The problem is that if I start the task of the encoder first and then the task PWM, the latter causes an error:

    Error-89137 occurred to the DAQ Assistant
    Possible reasons:
    Specified route can not be satisfied, because it requires resources that are currently in use by another route.

    Source device: cDAQ1
    Point source:
    80MHzTimebase
    Destination device: cDAQ1
    Destination
    Terminal:
    Ctr3Source

    Need for resources in use by Source
    Feature:
    cDAQ1
    Terminal of source: 100kHzTimebase
    Destination
    Feature:
    cDAQ1
    Destination terminal: Ctr2SampleClock

    The task name: _unnamedTask<61>

    I don't know why this is, but if I start the PWM task first, and then the task of the encoder, it also works. I should also mention that initially I was using counter 0 encoder, which caused a shift in the 100kHzTimebase to Ctr0SampleClock, which, according to the ways of device 9411, is not supported. Yet it worked (in itself). I wonder if this is happening under the hood isn't quite what is shown.

    What is exactly the conflict and what can do to avoid it? The reasons for having to use specific modes and the settings (for example, the 'continuous samples' with 100kHzTimebase clock) are rooted in various performance and requirements of optimization that were created in a previous version of our software, so I prefer not to take a completely different path, if some small changes would lead us to correct the problem.

    I appreciate your help.

    Kamen

    Hi Kamen,

    The time base of 100 kHz is not a direct route to the counter sample clocks, the device actually uses one of the other counters to complete the road (the routing table is a little misleading here because it shows 2 meter that one always doing road - in fact it will be any available counter):

    So in your case, when you start the task of the encoder, it uses one of the other available counters to complete the configured road (100 kHz to ctr2 sample clock timebase).  Of course, she chose meter 3.

    Possible workarounds (looks like you have already found one yourself):

    1 start the PWM before the task of the encoder task - if the task PWM starts first the counter is already booked and the task of the encoder would choose another available counter to complete its road.

    2. explicitly reserve the PWM task before you begin the task of the encoder (if you need to start the task of the encoder first).

    3. use cDAQ1/_freqout to generate the clock sample 100 kHz signal and use this instead of routing to the time base of 100 kHz to the counter sample clock.

    Change autour counters should also work, but I'm not 100% sure how the unit selects which counter to use for routing (I don't expect change in the future, but if it's not explicitly spec'ed somewhere so I wouldn't take my chances)-if it were me, I would choose one of the other options above.

    Best regards

  • Specification of inputs and manipulate outputs Web Service calls

    Hello

    I have created a process in the workbench that will lead a logged in user id, call a web service to obtain the account information and then pre-filling and make a form based on the resulting data. The webservice is an external SOAP webservice, and I'm not sure how to specify a variable as an entry in the SOAP request in process design or how to map data returned in the message in an XML document to use soap for filers of form.

    I saw this link, but am always looking to learn more: http://kb2.adobe.com/cps/499/cpsid_49980.html

    Matthew

    Matthew,

    I created an example that calls a public Web Service, maps the SOAP response to a variable of type 'xml' data and makes a PDF file by using xml.

    I found public Web Services to http://wiki.cdyne.com/wiki/index.php?title=CDYNE_Weather , which exposes the WSDL to the http://ws.cdyne.com/WeatherWS/Weather.asmx?wsdl and choose the GetCityWeatherByZIP operation. The operation takes an input string of POSTAL code and produced the SOAP response, below.

    container http://www.w3.org/2003/05/soap-envelope"="http://www.w3.org/2001/XMLSchema"" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" > ""

    http://ws.cdyne.com/WeatherWS/">

    true

    City found

    CA

    Sacramento

    Roseville

    15

    N/A

    91

    10

    MISG

    N/A

    The XML document that I'm after is the encapsulated in the GetCityWeatherByZIPResult child so I built a schema to express the document.

    http://www.w3.org/2001/XMLSchema">

    Then, I built a PDF file, added a data connection to the GetCityWeatherByZIP.xsd schema and added a number of areas related to the scheme. Finally, I got with an ES2 process to call the Web Service, the GetCityWeatherByZIPResult retrieves the SOAP response and make a PDF using the extracted XML construction.

    Web Service settings are described below.

    I created a variable of type entry process 'chain', called zip and added the reference in the Web Service by using XPath query.

    SetValue service retrieves a process variable from type 'xml' called cityWeatherByZIP which I loaded with the GetCityWeatherByZIP.xsd schema. The renderPDFForm FormService then uses the XML cityWeatherByZip to link to the form. I just called the Workbench process which creates a variable of type 'document' output process, described below.

    The Archives of LiveCycle ES2 are attached.

    Steve

  • String separated by commas as input and display output

    Hello

    I have a requirement that I have to take a string separated by commas as entry (may be in a table?) and display the output.

    For example, executions should be like this:

    Please enter the string separated by commas:

    A, B, C, D (entries of the user)

    Output must be

    You entered:
    A
    B
    C
    D


    How can do us in PL/SQL?

    Thank you
    Pramod
    /* Formatted on 2012/06/12 09:22 (Formatter Plus v4.8.8) */
    SELECT     REGEXP_SUBSTR ('A,B,C,D', '[^,]+', 1, LEVEL) AS re
          FROM DUAL
    CONNECT BY LEVEL <= NVL (LENGTH (REGEXP_REPLACE ('A,B,C,D', '[^,]', NULL)), 0) + 1;
    
  • Random, lack input and error output in af:query.

    Hello

    I use JDeveloper 11.1.2.4

    I have an af:query in my jsff page. There is a question at random that I am facing. When I select the option forward and attempt to add a new attribute OR after adding a new attribute, hit the search button

    I get the error "Missing parameter and OUT to index::1. But it's random. There is no specific measure to reproduce and its presence is also much lower.

    The error does not block the system, the user can continue its work after the entry of the error. Once the user has been produced, the error is not reproduced by the same steps that were followed at the start to get the error.

    The view object is not all bind variables required in fact that the main request has not all bind variables at all. Bind variables are used in the specific view criteria and their value are being extracted from EL expression.

    Someone can help me out, what direction should I look for this issue.

    Stack trace:

    < Utils > < buildFacesMessage > ADF: addition of the following JSF error: parameter IN or OUT to missing index: 1

    java.sql.SQLException: parameter IN or OUT to missing index: 1

    at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1937)

    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3764)

    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823)

    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671)

    at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)

    at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1254)

    at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:913)

    at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:7282)

    at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2197)

    at oracle.jbo.server.ViewRowSetIteratorImpl.getAllRowsInRangeInternal(ViewRowSetIteratorImpl.java:2182)

    at oracle.jbo.server.ViewRowSetIteratorImpl.getAllRowsInRange(ViewRowSetIteratorImpl.java:2210)

    at oracle.jbo.server.ViewRowSetImpl.getAllRowsInRange(ViewRowSetImpl.java:3074)

    at oracle.jbo.server.ViewObjectImpl.getAllRowsInRange(ViewObjectImpl.java:11293)

    at oracle.adf.model.binding.DCIteratorBinding.getAllRowsInRange(DCIteratorBinding.java:2404)

    at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.updateRangeScrolled(JUCtrlHierNodeBinding.java:2442)

    at oracle.jbo.uicli.binding.JUIteratorBinding.rangeScrolled(JUIteratorBinding.java:182)

    at oracle.jbo.common.RowSetHelper.fireRangeScrolled(RowSetHelper.java:193)

    at oracle.jbo.server.ViewRowSetIteratorImpl.notifyRangeScrolled(ViewRowSetIteratorImpl.java:3080)

    at oracle.jbo.server.ViewRowSetIteratorImpl.scrollRange(ViewRowSetIteratorImpl.java:1448)

    at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStartWithRefresh(ViewRowSetIteratorImpl.java:2755)

    at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(ViewRowSetIteratorImpl.java:2740)

    at oracle.jbo.server.ViewRowSetImpl.setRangeStart(ViewRowSetImpl.java:3015)

    at oracle.jbo.server.ViewObjectImpl.setRangeStart(ViewObjectImpl.java:10770)

    at oracle.adf.model.binding.DCIteratorBinding.setRangeStart(DCIteratorBinding.java:3552)

    at oracle.adfinternal.view.faces.model.binding.RowDataManager._bringInToRange(RowDataManager.java:101)

    at oracle.adfinternal.view.faces.model.binding.RowDataManager.setRowIndex(RowDataManager.java:55)

    to oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$ FacesModel.setRowIndex (FacesCtrlHierBinding.java:800)

    at org.apache.myfaces.trinidad.component.UIXIterator._fixupFirst(UIXIterator.java:674)

    at org.apache.myfaces.trinidad.component.UIXIterator.__encodeBegin(UIXIterator.java:649)

    at org.apache.myfaces.trinidad.component.UIXTable.__encodeBegin(UIXTable.java:175)

    at org.apache.myfaces.trinidad.component.UIXCollection.encodeBegin(UIXCollection.java:607)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1672)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:878)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:1299)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeMiddlePanes(PanelStretchLayoutRenderer.java:350)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:315)

    at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:1700)

    to oracle.adfinternal.view.faces.renderkit.rich.PanelCollectionRenderer.access$ 1300 (PanelCollectionRenderer.java:102)

    to oracle.adfinternal.view.faces.renderkit.rich.PanelCollectionRenderer$ PanelCollectionHelper._renderStretchedContent (PanelCollectionRenderer.java:793)

    to oracle.adfinternal.view.faces.renderkit.rich.PanelCollectionRenderer$ PanelCollectionHelper._encodeAll (PanelCollectionRenderer.java:928)

    to oracle.adfinternal.view.faces.renderkit.rich.PanelCollectionRenderer$ PanelCollectionHelper.access$ 700 (PanelCollectionRenderer.java:616)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelCollectionRenderer.encodeAll(PanelCollectionRenderer.java:480)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:878)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:1299)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeMiddlePanes(PanelStretchLayoutRenderer.java:350)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:315)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    to oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$ 400 (RegionRenderer.java:50)

    to oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ ChildEncoderCallback.processComponent (RegionRenderer.java:707)

    to oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ ChildEncoderCallback.processComponent (RegionRenderer.java:692)

    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)

    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)

    at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)

    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:297)

    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:186)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:323)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.component.UIXGroup.encodeChildren(UIXGroup.java:170)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1674)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:878)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:1299)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeMiddlePanes(PanelStretchLayoutRenderer.java:350)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:315)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:878)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:1299)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeMiddlePanes(PanelStretchLayoutRenderer.java:350)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:315)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:1599)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:263)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:1599)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:279)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeFacet(DecorativeBoxRenderer.java:440)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer._encodeCenterPane(DecorativeBoxRenderer.java:711)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeAll(DecorativeBoxRenderer.java:380)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:1599)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:279)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeFacet(DecorativeBoxRenderer.java:440)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer._encodeCenterPane(DecorativeBoxRenderer.java:711)

    at oracle.adfinternal.view.faces.renderkit.rich.DecorativeBoxRenderer.encodeAll(DecorativeBoxRenderer.java:380)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:1599)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:263)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:1599)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:279)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)

    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)

    at oracle.adfinternal.view.faces.renderkit.rich.PageTemplateRenderer.encodeAll(PageTemplateRenderer.java:68)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)

    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)

    at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:274)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)

    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)

    at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1275)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)

    at oracle.adfinternal.view.faces.context.PartialViewContextImpl._processRender(PartialViewContextImpl.java:321)

    at oracle.adfinternal.view.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:152)

    at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:974)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1674)

    at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:91)

    at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:399)

    to org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ ChangeApplyingVDLWrapper.renderView (ViewDeclarationLanguageFactoryImpl.java:350)

    at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)

    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)

    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:165)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1035)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:342)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:236)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)

    to 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:300)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:468)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:468)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at com.oracle.ofd.ba.newlayout.view.filter.security.IE11_Filter.doFilter(IE11_Filter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at com.oracle.ofd.ba.newlayout.view.filter.security.OfdSessionExpiryFilter.doFilter(OfdSessionExpiryFilter.java:45)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at com.oracle.ofd.ba.newlayout.view.filter.security.OfdSecurityFilter.doFilter(OfdSecurityFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    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)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)

    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:2277)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Thank you

    It's the application. We were not able to get the first cause, but occurred because of changes in the parameter optimization of the View object.

    To improve performance, the parameter Access Mode is set to the pagination of the range. When he changed the Scrollable value then the issue has not been seen.

  • This function have an input and an output parameter. But he won't return

    It's function. Pls check in Scott & Tiger database.

    CREATE OR REPLACE Function SamFunc
    (EmpNo IN Varchar2)
    Return of tank is
    Val Varchar (500);
    Begin

    Start
    Select Ename Into Val From Emp
    Where EmpNo = EmpNo; -: 7369.
    And DeptNo = '20';   : Deptno
    Return Val;
    Exception
    When No_Data_Found then
    Val: = NULL;
    While others then
    Val: = NULL;
    end;

    Return Val;
    End;

    Someone help me
    Where EmpNo = EmpNo;
    

    Oracle will assume you want that each line, because empno will always be equal to empno.
    Do not use a parameter with the same name as a column or use a namespace

    Where emp.EmpNo = SamFunc.EmpNo;
    

    And you hide the TOO_MANY_ROWS error with your

    When Others Then
    Val := NULL;
    

    You will never see an error.

    If you want to hide a NO_DATA_FOUND then you can write

    When No_Data_Found Then
    RETURN NULL;
    

    But never use a WHEN OTHERS THEN NULL;

    Concerning
    Marcus

    Edited by: Marwim the 04.10.2010 13:38

  • Update of El Capitan and then lost input and audio output. This happens whenever I run an update. Help!

    Whenever I run a recommended update. My audio goes. Everyone claims to be surprised, but this has happened several times. Does anyone have a solution? Or a direction to get a?

    Thank you.

    Octavio

    You had the same problem in 2014. How to solve then?

  • Producer consumer with inputs and outputs analog and digital

    Hello world

    I'm working on a program of control system for some practical test work. Currently, I am working on the data acquisition of the Labview program component. My architecture is consumer-product loops with a what. My system will have analog inputs, outputs, analog inputs and digital outputs. It is not a criticism of time sytem, but I wish that all the acquisition of data to synchronize. I enclose my program because it is at the moment. I have difficulties to get all the data in the since that I have two types of data. In addition, I don't know if I have synced the four sequences of read/write correctly. I would be very happy if someone could take a look at my program and give me some advice. Thanks in advance.


  • Toggle the analog inputs and tasks of output on the same card in LabView

    Hello

    I'm relatively new to LabView and am trying to find the best way to switch between reading and writing tasks on my PCI-6024E. It seems this would be a common thing to do, but I found no good documentation or any relatable example program. Basically, I would like to be able to monitor certain analog inputs and then write that some outputs if an entry is in accordance with certain specific conditions (say > 4 Volts voltage). It is my understanding that you can only signal (input and output) types associated within a single task in DAQmx. I also understand that you cannot have multiple tasks running at the same time on the same material/map, otherwise you get a: 50103 error 'The specified resource is reserved. Calendar is not really all that matters to me, but quite synchronous and effective would be nice.

    I have attached a sample program that shows more or less what I'm trying to do. I want to follow several analog input lines (AI0 AI1, AI2 and AI3 and) effectively at the same time. If certain conditions are met, AI3 > 4 Volts, then write 5 Volts for analog AO0 and AO1 outings. I also want to maintain output at 5 Volts up to AI3 falls below 4 Volts. Is there a better way to pass the task to read and write than what I've done here? In a sense, all I really do is toggle of a state machine if the required conditions are met and if start/stop tasks of reading/writing necessary.

    One last question, is there a way to display the four channels in the waveform graph using the 1 d NChan 1Samp mode so I can have a time chart and indicators?

    P.S. I'm under LabView 2011 on Windows 7. Your ideas and suggestions are appreciated.

    Thank you

    KJ

    I also understand that you cannot have multiple tasks running at the same time on the same material/map, otherwise you get a: 50103 error 'The specified resource is reserved.

    This is incorrect.  You can't have two tasks of the same type running on a single card.  You can have an analog input and analog output task running simultaneously on the same hardware.

    You are right that each task can have only one type of task (entry or exit).  Discover DAQmx examples in the example Finder to get examples of synchronized input and output.

    PRO TIP: In the Finder of the example, go to the drop-down list in the lower left corner.  Pull down and select Add Hardware.  In the pop-up window, add your PCI-6024E to the right pane.  Click OK in this window.  Then in the main window of Finder example select your hardware from the drop-down list and check the filter results by the hardware.  The example Finder then only you will show examples that are out-of-the-box compatible with your hardware.  I am sure you can find something to fit your needs here.

  • How can I use two DVI and HDMI outputs for monitors?

    I have a 55 inch LG TV connected to my PC via an HDMI cable. I recently bought a HP 2311 x flatscreen monitor and want to connect using DVI.  But when both are plugged into the PC automatically turns off the DVI output, and switches automatically to use the HDMI that my TV is turned on.  Is it possible that I can have the two outputs working both on my pc?

    Hello

    I suggest you to send your query to this link for assistance.

    http://experts.Windows.com/f/

  • synchronize the inputs and outputs on the USB-4431

    Hello

    I have an application that needs to send a signal on the USB-4431 and then capture it with an entry on the same device.

    Aware that I use two tasks to do this, one for input and one for output. I discovered that a trigger (on the RTSI bus) can cycles of sending/capture sychronisé departure operations so that it can be a constant offset between the captured signal and the output signal.

    Unfortunately, the code I found is for Matlab. I can't find an equivalent for it in the C API of NIdaq. The method is described here; http://www.mathworks.in/help/daq/synchronize-analog-input-and-output-using-rtsi.html.

    What I can't understand is how to implement this on the analog input:

    ai.ExternalTriggerDriveLine = 'RTSI0';
    

    Can someone shed light on how to do it?

    The rest of the things described here, seems to be feasible with a normal trigger:

    ao.TriggerType = 'HwDigital';
    ao.HwDigitalTriggerSource = 'RTSI0';
    ao.TriggerCondition = 'PositiveEdge';
    

    Thank you

    Nirvtek

    You can synchronize the HAVE and AO by sharing the start of relaxation between your two tasks.

    Choose one of your tasks as the "master" and the other to be the "slave" (any).

    Set up a trigger to start of digital dashboard on the task of the slave, and set the source of the trigger to be the trigger of the master's departure.

    Assume the following:

    The name of your device is 'Dev1 '.

    I is the main task

    AO is the task of the slave

    Here's what you would do to sync the two:

    (1) create the tasks I and AO in order that you want to

    (2) set up "timing" on the tasks of HAVE it and AO (you choose the sampling rates must be the same or power-of-2 many of the other (for example 100 K, 50 K, 25 K, 12.5 K, etc...))

    (3) configure your slave (the task of AO) task to have a numerical advantage start trigger and make the source is the trigger for the start of the task of the master (the task to HAVE it). In our case, "Dev1, AI, StartTrigger.

    (4) write data (a sine wave, presumably) to your task AO

    (5) start the task from the slave (the task of AO).  The task of the AO is now in the 'Started' State, but given that you've set up a digital trigger early, it won't actually generate data until he sees a numerical advantage of 'Dev1, AI, StartTrigger.

    (6) to start the main task (task to HAVE it).  The task of the AI does not have a trigger digital early, so the software will immediately generate a start trigger, which also causes a numerical advantage on "StartTrigger/AI/Dev1", which causes the task AO start at the same time.

    7) read your job to HAVE.

    You will notice a few 0 at the beginning of your data to HAVE. It's a result of something called "Filter Delay" and it is an inherent characteristic of all DSA devices - see the manual to use DSA and this article for more information on what is and how to cope.

    I hope this helps.

    EDIT: I just noticed that you pointed out an existing C example. It's exactly what you want. I don't know why you have a resource error booked - I tried it myself and (after changing the AO will of +/-10V to +/-3 .5V), it works beautifully.  Try to reset your device to the MAX (or DAQmxResetDevice() of your program)

  • IPads have two outputs

    I use an app that plays back "multi-way" called reading. It has a feature called auto pan which has a toggle button, but when I turn IT says, "Only works with 2 iPad release." My iPad 2 Air apparently has this feature, but the iPad 2, that they have in our rehearsal studio does not work. I'm trying to find out what iPads have this feature, but looking at the specs on the Apple website is not to give me this info! Can someone help me? And I'm not sure I understand because the headphone jack released in stereo must be some different internal separation type pass...?

    Thanks much for any help!

    What to do with it, their Web site?

    AutoPan

    Enable AutoPan in parameters to pan the ClickTrack and Guide to the left and all other channels to the right. CustomMixes are made this way before, but you should choose Auto-pan to separate the Guide and ClickTrack for multitrack in the show alive. AutoPan is necessary when using two outputs.

    and

    Multiple output

    Using a compatible USB Interface, you can send several of your iPhone or iPad to your soundboard Audio outputs. For a list of devices compatibleclick here. (Device upgrade Premium) (which takes you to http://www.multitracks.com/products/playback/supported/)

  • How can I produce two outputs of the same project

    Dear Sir.

    My goal is to produce the two outputs of the same main project, Webhelp and HTML help, each of them will be used differently in my compnay.

    Producing two outputs is fine, but the problem was that external links are done differently for HTML help and Webhelp and as I Knew about you that can be solved by using conditional tags.

    Actually I am new to conditional tags and I don't know how to use them. Could you please help me to do this or recommend a link on how to use condtional tags to produce different outputs.

    Thank you very much

    Hi there ahlam323

    See if the link below helps everything. Some goober wrote something on it.

    Click here to read the goober guide

    See you soon... Rick

  • I have mac pro 3.1 and it is insufficient for what is his is. I need an internal card with more flexibility to the inputs and outputs as used in windows systems.

    A sound card internal Mac pro 3.1 what they do?

    And if yes where can buy one?

    I need more input and output it attach to my PA and recording, hardware as I do with a windows PC.

    The mac comes with a microphone and a single output with terrible impact when it is connected to my sound stuff.

    A few people responded to your post above. Might be better to explain what your needs are, rather than starting a new discussion here.

    http://www.Sweetwater.com/C703--PCI_Audio_Interfaces

Maybe you are looking for

  • Find friends iTunes update June 14

    I am in iTunes on my mac and update applications. I see an update to find friends and podcasts. information says IOS 10, I have not loaded the beta, but I am a developer of am. iTunes gives error Find My Friends is available on iOS. How stupid then t

  • I need to go back to Firefox V 26

    For some reason any Firefox itself upgraded to V 26 without my permission and went ahead and disabled my Norton Toolbar. I'm never updating Firefox until I know that Norton Toolbar is supported. Please can someone tell me what version I need that ful

  • Answer the phone

    When my phone rings, sometimes it gives me the ability to ignore the call and other times not. Anyone know why this is? Thank you very much! -Lisa

  • Serial key works does not install

    Hi guys,. Recently got the old laptop of my aunt and it ran pretty slow.  I decided to reformat and install windows again.  Unfortunately, it is said that the product Id is not valid.  I tried to put the serial number in several times and checked, bu

  • How to use obiee with Highcharts

    HelloI'm looking for a method to use obiee with Highcharts.Highcharts is a library of javascript to create a nice line graph and pie...Thank you