5401 Amplitude description error?

I am controlling the 5401 PXI Fgen through Delphi and noticed that the documentation for the 5401 function call ConfigureStandardWaveform located in the help file calls for a peak to peak voltage. I am sure that it is actually peak voltage. The NI soft panel also shows the setting to be peak to peak, but measurements (rms) show that it is only peak voltage. Is this a known error in the documentation and the soft panel?

ScotH,
The load impedance and output impedance are separate settings, but both can be manipulated in software.  If you are using LabVIEW, you would use a NI-FGEN Property Node.  To select the load impedance property, click on the lower white box of the property node and go to Output Attributes » Load Impedance.  You can specify your load impedance there and the board will compensate appropriately (like you mentioned in the SFP).  If you are using C or CVI, use the "niFgen_SetAttributeViReal64" function to set the "NIFGEN_ATTR_LOAD_IMPEDANCE" attribute to your load impedance.
The output impedance property/attribute just switches between the available output impedances, it does not compensate for load impedance.
Ross C

Similar Messages

  • Failed to read description. error code 2

    failed to read description. error code 2

    You might check the event log for further details. if the service key folder under
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services is gone then I suspect the error message is about a different service.
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Zend_AMF and NetConnection: Non descriptive error

    Hi,
    I am trying to make a simple call from my flash to Zend_AMF in a flash file. I am calling the same server function in Flex and it works but not from the flash. I have been trying to find the solution for 3 days now so any help is wellcome
    Here is the code
    var responder:Responder = new Responder(doOnResult, doOnFault);
    var nconn:NetConnection = new NetConnection();
    nconn.addEventListener(AsyncErrorEvent.ASYNC_ERROR, traceEvent);
    nconn.addEventListener(Event.ACTIVATE, traceEvent);
    nconn.addEventListener(Event.DEACTIVATE, traceEvent);
    nconn.addEventListener(IOErrorEvent.IO_ERROR, traceEvent);
    nconn.addEventListener(NetStatusEvent.NET_STATUS, traceNetStatus);
    nconn.addEventListener(SecurityErrorEvent.SECURITY_ERROR, traceEvent);
    nconn.connect("http://localhost/testService/messagebroker/amfService");
    nconn.call("class.test", responder);
    function traceNetStatus(e:Object){
        trace (e.toString());
        for each(var o:Object in e);
            trace(o);
    function traceEvent(e:Object){
        trace (e.toString());
    function doOnResult(obj:Object){
        trace("ok: " + obj.toString());
        nconn.close();
    function doOnFault(obj:Object){
        trace("error: " + obj.toString());
        for each(var o:Object in obj)
            trace("-"+ o.toString());
        nconn.close();
    Here are the traces
    [Event type="activate" bubbles=false cancelable=false eventPhase=2]
    [Event type="deactivate" bubbles=false cancelable=false eventPhase=2]
    [Event type="activate" bubbles=false cancelable=false eventPhase=2]
    [Event type="deactivate" bubbles=false cancelable=false eventPhase=2]
    [Event type="activate" bubbles=false cancelable=false eventPhase=2]
    error: [object Object]
    -0
    -0
    [NetStatusEvent type="netStatus" bubbles=false cancelable=false eventPhase=2 info=[object Object]]
    null
    [NetStatusEvent type="netStatus" bubbles=false cancelable=false eventPhase=2 info=[object Object]]
    null
    [NetStatusEvent type="netStatus" bubbles=false cancelable=false eventPhase=2 info=[object Object]]
    null
    Why does it activates 3 times?
    Why is thre no description of the ErrorEvents or the onFault?
    Thanks,
    Ana

    I have resolved previous error, path to zend Framework was incorrect
    Now i am facing a new error:
    "Channel disconnected before an acknowledgement was received"
    Any Help Please.
    Best Regards,
    Alok Jain

  • Report: channel description error in multiple tables

    I get several error messages when creating more than one channel table and wanting to display the channel descriptions. Is there something wrong with the assignment of the description value to the header line? I attached a minimum example:
    Option Explicit 'Forces the explicit declaration of all the variables in a script.
    Call Data.Root.Clear()
    Call DataFileLoad("C:\Program Files (x86)\National Instruments\DIAdem 2014\Examples\Data\Example_data.tdm")
    Call Report.NewLayout()
    Dim oMySheet, oMyTable, oMyColumn, oMyGrp, iCount, gCount
    For gCount = 1 To GroupCount
    Set oMyGrp = Data.Root.ChannelGroups(gCount)
    Set oMySheet = Report.Sheets.Add("Table" & gCount)
    Set oMyTable = oMySheet.Objects.Add(eReportObject2DTable,"Table" & gCount)
    oMyTable.Settings.Header.Title2 = "@@Data.Root.ChannelGroups(CurrGroupIdx).Channels(CurrChnNo).Properties("& Chr(34) &"description"& Chr(34) &").Value@@"
    oMyTable.Settings.Header.UseAutoFontSize = TRUE
    oMyTable.Position.ByBorder.Bottom = 5
    oMyTable.Position.ByBorder.Top = 5
    oMyTable.Position.ByBorder.Left = 5
    oMyTable.Position.ByBorder.Right = 5
    For iCount = 1 To oMyGrp.Channels.Count
    Set oMyColumn = oMyTable.Columns.Add(e2DTableColumnChannel)
    oMyColumn.Channel.Reference = oMyGrp.Channels(iCount).GetReference(eRefTypeIndexName)
    Next
    Next
    Call Report.Refresh()
    As you will see, everything works fine for the first table, but errors are produced for all the following ones. 
    /Phex
    Solved!
    Go to Solution.

    Hi Walter,
    thanks for the input. In the meanwhile I found a more versatile solution, which even updates the channel description in the report when it is being changed afterwards by using the ChnComment command:
    Call Data.Root.Clear()
    Call DataFileLoad("C:\Program Files (x86)\National Instruments\DIAdem 2014\Examples\Data\Example_data.tdm")
    call WNDShow("Report", "maximize")
    Call Report.NewLayout()
    Dim oMySheet, oMyTable, oMyColumn, oMyGrp, iCount, gCount
    For gCount = 1 To GroupCount
    Set oMyGrp = Data.Root.ChannelGroups(gCount)
    Set oMySheet = Report.Sheets.Add("Table" & gCount)
    Set oMyTable = oMySheet.Objects.Add(eReportObject2DTable,"Table" & gCount)
    oMyTable.Settings.Header.Title2 = "@@ChnComment(CCN)@@"
    oMyTable.Settings.Header.UseAutoFontSize = TRUE
    oMyTable.Position.ByBorder.Bottom = 5
    oMyTable.Position.ByBorder.Top = 5
    oMyTable.Position.ByBorder.Left = 5
    oMyTable.Position.ByBorder.Right = 5
    For iCount = 1 To oMyGrp.Channels.Count
    Set oMyColumn = oMyTable.Columns.Add(e2DTableColumnChannel)
    oMyColumn.Channel.Reference = oMyGrp.Channels(iCount).GetReference(eRefTypeIndexName)
    Next
    Next
    Call Report.Refresh()
    Could you please explain why it was not working with my previous code?
    oMyTable.Settings.Header.Title2 = "@@Data.Root.ChannelGroups(CurrGroupIdx).Channels(CurrChnNo).Properties("& Chr(34) &"description"& Chr(34) &").Value@@"
     Another example scenario would be if I may want to display the first channel value of each channel:
    oMyTable.Settings.Header.Title2 = "@@Data.Root.ChannelGroups(CurrGroupIdx).Channels(CurrChnNo).Values(1)@@"
    OR when wanting to show a self-assigned property:
    For iCount = 1 To oMyGrp.Channels.Count
    Set oMyColumn = oMyTable.Columns.Add(e2DTableColumnChannel)
    oMyColumn.Channel.Reference = oMyGrp.Channels(iCount).GetReference(eRefTypeIndexName)
    Call oMyGrp.Channels(iCount).Properties.Add("xyz","abc")
    Next
    oMyTable.Settings.Header.Title2 = "@@Data.Root.ChannelGroups(CurrGroupIdx).Channels(CurrChnNo).Properties("& Chr(34) &"xyz"& Chr(34) &").Value@@"
    These examples produce the same strange behaviour. 
    The general question would be: How can I display updatable channel properties in REPORT using an object-oriented approach?
    /Phex

  • File Description Error while running GLPLUP

    Hi,
    We are trying to upload planning data using transaction GLPLUP . But its giving a  File Decsription not maintained error even though we are able to see the same in F4 help. Any clue as to how to resolve the same.
    Thanks
    Nidhi Jain

    Hi,
    In order to use GLPLUP first of all a planning layout needs to be created which has the charateristics and key figures exactly matching with the excel file. For example Company code, GL Account and Profit Center as characteristics and amount in local currency as key figure.
    This planning layout needs to be entered into a planner profile. Standard profile can be copied and then the totals table (for example FLGLFLEXT) where the planning figures are going to be uploaded is mentioned in the planner profile.
    Before using the t-code GLPLUP the planner profile is entered. This way the system will know that the excel file format is the same as that in the planner profile entered. If the format does not match it will issue an error message.
    Regards
    Sharabh

  • Entity rule violations: more descriptive error messages

    We have several BC4J entity objects, view objects and a JSP application. The entity objects contain rules like mandatory attributes, validation rules at the attribute level, etc. If the user enters invalid data in an HTML form and submits, the errors are generally cryptic and difficult for the user to understand. For example, if the user misses a required field, the exception indicates that "JBO-12345 ... ReqTypeId is required" (for example). It would be ideal if the message could be changed to include the label hint in the message. For example, "Requirement Type is required", where "Requirement Type" is the label hint that is displayed on browse, edit and query pages.
    Validation rules (e.g. range rule) applied at the attribute level have a similar issue. Custom rules in validateEntity() do not have this issue because they are custom and we can throw whatever exception we want, with a detailed, user-friendly message.
    If this is not possible in JDeveloper 9.0.2 (without extensive custom coding), will it be possible in a future release?
    Thanks,
    Bill

    We have several BC4J entity objects, view objects and a JSP application. The entity objects contain rules like mandatory attributes, validation rules at the attribute level, etc. If the user enters invalid data in an HTML form and submits, the errors are generally cryptic and difficult for the user to understand. For example, if the user misses a required field, the exception indicates that "JBO-12345 ... ReqTypeId is required" (for example). It would be ideal if the message could be changed to include the label hint in the message. For example, "Requirement Type is required", where "Requirement Type" is the label hint that is displayed on browse, edit and query pages.
    Validation rules (e.g. range rule) applied at the attribute level have a similar issue. Custom rules in validateEntity() do not have this issue because they are custom and we can throw whatever exception we want, with a detailed, user-friendly message.
    If this is not possible in JDeveloper 9.0.2 (without extensive custom coding), will it be possible in a future release?In 9.0.2 you can route all JboExceptions at the JSP level via a handle-all-jbo-exceptions method where you may perform such 'message conversions'. IN general that's the practice most apps have to implement to wrap framework exceptions into user-level exceptions. IN JCLient that's the paradigm followed so that applications can funnel all exceptions via a single handler and perform any exception message massaging.
    However you suggestion about involving control-hints into messages by default is a good one and I'd log an Enhancement #2623360 to track this idea.
    Thanks,
    Bill

  • CS3 - Keywords and Description Error

    I have tried to update our Keywords, and get the following error:
    If I click OK twice, it goes away, and I am able to type new keywords in.  However after entering new keywords and clicking OK on that screen, I get another error: "You cannot perform this action in this region of the page" and any new words I entered are cleared.
    Can anyone help me? What I am doing wrong?

    I just had this happen for the first time too, wondering the same thing you are Aust.

  • Backup failed with a non-descript error and 4.5 upgrade fails with fatal error

    couldn't backup, somewhere in the middle of profiles the backup bombed each time, couldn't upgrade from 4.3. to 4.5 and browser application stopped working complaining about no service or something.  it briefly worked after that, and than stopped again, so that all browser based apps just give a white screen that says blackberry.
    took it to the verizon store, they couldn't figure it out either and they couldn't get through to their tech support.
    did a complete wipe of it, redownloaded 4.6 desktop software, and it still won't upgrade from 4.3 (which is what reappeared after the complete wipe).  interestingly a bunch of my apps all reappeared so it must have backed up/synched my applications.
    lost all my contacts, but at least it is working again.  not sure that I want it anymore if it won't upgrade from the O/S anyway.
    i know i can't get any help because it doesn't give any useful error messages, but I just want to complain about this brand new 8330.  the second in a month.  the first had a microphone problem that required a new device on day 2.

    yes , i am using symantec netbackup,
    but every thing is fine from their side as well(settings).
    i have reinstalled the client as well.
    it runs for 1 hr and then it throws error.
    yesterday i scheduled two backup at two different time(at the interval of 1 hr) but they both failed (struck) at the exact same time(even seconds were same).
    So what do you say??

  • Removing descriptive error messages?!?

    How do I remove the "Build Date/Time" and "Change Number" fields from error messages?
    Can the build date of say Oct 3 2003 provide someone information as to what version
    I am running?

    I see this error messages in the client browser. I see them when the ISAPI plugin
    can't see the backend server temporarily or if there is an Internal Server Failure,
    ISAPI plugin. I believe this is in the WebLogic IIS Bridge.
    "Don Gohn" <[email protected]> wrote:
    Could you provide more information about where you see these error messages?
    Are they in log files, the console, or somewhere else?
    Thanks,
    Don
    "AMS" <[email protected]> wrote in message
    news:4057ebe3$[email protected]..
    How do I remove the "Build Date/Time" and "Change Number" fields fromerror messages?
    Can the build date of say Oct 3 2003 provide someone information asto
    what version
    I am running?

  • How to create the Error description?

    Hi Experts,
    Scenario : Webservice -> XI -> JDBC (Synh)
    Pass the EmpId as a webservice request and get the corresponding Emp address as a response.
    Q: How to set the error description/error message, If we don't have address info. for the requested EmpId?
    Regards
    Sara

    Hi Sara,
    You would have mapped the response mapping from the result of the JDBC select to the outbound message type.
    In the response mapping, if you can check if the value of the resultset is "null", which means there is no address for the ID. In that case you can change the result to be some custom error message.
    You would be needing to use the standard boolean function "if" and a standard "Constant" function, where you would enter your custom error message and map the output of the if condition to the source/outbound element node.
    regards
    krishna

  • Error while creating a support message in satellite system

    Hi,
    I am facing an error while sending a support message to solman form the satellite system
    (( Error Description :  Error in Local Message System: Error when opening
    an RFC connection Message was Not Created ))
    1) I gone through various threads and set the required authorizations like
    SAP_SUPPDESK_CREATE and
    SAP_SV_FDB_NOTIF_BC_ADMIN ,
    SAP_SUPPDESK_ADMIN
    for the user in the solman .
    2) I checked the RFC connection and it is working fine.
    Anyone pls help me to resolve this issue

    hi rohit,
    thanks for u r immmediate response
    do i have to assign the roles to the user in the satellite system or the solman.
    some roles in those 4 roles are not in the satellite system.
    thanks
    Rahul

  • Error while granting BPMOrganizationAdmin role to SOAOperator.

    Error Starting While starting SOA server. Please advise.
    <Mar 5, 2015 12:56:08 PM EST> <Error> <oracle.bpm.services.organization> <BEA-000000> <Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
    ORABPEL-10513
    Cannot get application roles from application identified by "{0}".
    An error occurred while getting application roles from application identified by "soa-infra".
    The underlying APIs threw an exception. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:920)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10510
    Application role not found.
    Application role "BPMOrganizationAdmin" could not be found for application identified by "soa-infra".
    Check if the application role exists in the repository associated with the application. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$9.run(JpsProvider.java:2338)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRoleEntry(JpsProvider.java:2333)
            at oracle.tip.pc.services.identity.jps.JpsProvider.access$000(JpsProvider.java:169)
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:917)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >
    <Mar 5, 2015 12:56:08 PM EST> <Error> <oracle.bpm.common> <BEA-000000> <Exception
    BPM-70692
    Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:324)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:29)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10513
    Cannot get application roles from application identified by "{0}".
    An error occurred while getting application roles from application identified by "soa-infra".
    The underlying APIs threw an exception. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:920)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10510
    Application role not found.
    Application role "BPMOrganizationAdmin" could not be found for application identified by "soa-infra".
    Check if the application role exists in the repository associated with the application. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$9.run(JpsProvider.java:2338)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRoleEntry(JpsProvider.java:2333)
            at oracle.tip.pc.services.identity.jps.JpsProvider.access$000(JpsProvider.java:169)
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:917)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >

    Hi user,
    Can you give us some information on the version you are using and your security setup? Are you using an external security provider? Because to me it sounds that you are using an external LDAP server.
    Antonis

  • Business rule in MDS 2012 error: A database error has occurred. Contact your system administrator.

    I get the following information in my MDS log as well as the above error message when I execute a business rule that has a condition of AND and an Action of Attribute must be unique in combination with 2 other attributes. 
    I'm running SQL Server 2012 11.0.3000
    MDS database version 11.1.0.0
    Any ideas?
    MDS Error: 0 : SqlException message: A database error has occurred. Contact your system administrator.
       at Microsoft.MasterDataServices.Core.DataAccess.DbHelper.HandleExceptions(Exception ex)
       at Microsoft.MasterDataServices.Core.DataAccess.DbHelper.ExecuteDataSet(String spName, CloseConnectionBehavior closeBehavior, Object[] parameterValues)
       at Microsoft.MasterDataServices.Core.DataAccess.MasterDataAccess.<>c__DisplayClass5.<ValidateEntityMembers>b__4()
       at Microsoft.MasterDataServices.Core.DataAccess.DbHelper.ExecuteMethodWithDeadlockProtection(MethodDelegate method)
       at Microsoft.MasterDataServices.Core.BusinessLogic.Validations.ValidateMembers(Int32 versionId, Identifier entityIdentifier, IList`1 memberIds, RequestContext context, OperationResult results)
       at Microsoft.MasterDataServices.Core.BusinessLogic.Validations.Process(ValidationProcessCriteria criteria, Boolean commitVersion, Boolean validateEntityAsync, Boolean returnValidationResults, RequestContext context, OperationResult results)
    SQL Error Debug Info: Number: 208, Message: Invalid object name 'cteDuplicates0a070e37b106b9e3efe35a455076efa7'., Server: SQLRS-01, Proc: udp_SYSTEM_3_38_CHILDATTRIBUTES_ProcessRules, Line: 230
    SQL Error Debug Info: Number: 266, Message: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1., Server: SQLRS-01, Proc: udp_SYSTEM_3_38_CHILDATTRIBUTES_ProcessRules, Line: 230
    SQL Error Debug Info: Number: 266, Message: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1., Server: SQLRS-01, Proc: , Line: 0
    SQL Error Debug Info: Number: 266, Message: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1., Server: SQLRS-01, Proc: udpBusinessRule_AttributeMemberController, Line: 0
    SQL Error Debug Info: Number: 266, Message: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1., Server: SQLRS-01, Proc: udpValidateMembers, Line: 0
        DateTime=2013-08-15T13:25:15.6684023Z
    MDS Error: 0 : <ArrayOfError xmlns="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Error>
        <Code>208</Code>
        <Context i:nil="true" />
        <Description>A database error has occurred. Contact your system administrator.</Description>
      </Error>
    </ArrayOfError>
        DateTime=2013-08-15T13:25:15.7152026Z

    OK I bit the bullet and contacted support on this one.
    There is a known issue with MDS 2012 and business rules with a combination of "must be unique" attributes. If you do not list the attributes in the same order that they were created you will get the generic error I cited. At first they told me it must be
    in the same order the attributes are in and that worked on one entity but not the other. The difference was that in the second entity I previously rearranged the attributes in question. Once I changed the order in the business rule to reflect the *original*
    order it worked like a champ.
    Hopefully this helps save someone some time and money.

  • Error running reports Parameter validation failed

    Hi All
    I have a user who gets an error when running reports from a remote console. If I log on with my account on his console I am able to run the report..
    I have checked a few things and now open to some suggestions.. please
    SMSAdminUI.log
       at System.Management.ManagementObject.Initialize(Boolean getObject)
       at System.Management.ManagementBaseObject.get_wbemObject()
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at System.Management.ManagementBaseObject.GetPropertyValue(String propertyName)
       at System.Management.ManagementBaseObject.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.GetInstance(String objectPath)\r\nManagementException details:
    instance of SMS_ExtendedStatus
     Description = "Error retrieving object ResourceID=83886343";
     ErrorCode = 2151811598;
     File = "e:\\nts_sccm_release\\sms\\siteserver\\sdk_provider\\smsprov\\SspInterface.h";
     Line = 1198;
     Operation = "GetObject";
     ParameterInfo = "SMS_MachineSettings.ResourceID=\"83886343\"";
     ProviderName = "ExtnProv";
     StatusCode = 2147749890;
    \r\n
    [17, PID:8664][10/23/2014 08:27:20] :System.Management.ManagementException\r\nInvalid class \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
     Operation = "ExecQuery";
     ParameterInfo = "SELECT * FROM SMS_Identification";
     ProviderName = "WinMgmt";
    \r\n
    [23, PID:8664][10/23/2014 08:27:59]  Parameter validation failed. It is not possible to provide valid values for all parameters. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not possible
    to provide valid values for all parameters.

    ReportServerService.log
    (/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01/Site - Discovery and Inventory Information, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:47:: i INFO: Call to GetReportParametersAction(/ConfigMgr_J01/Site - Discovery and Inventory Information/Computers with duplicate MAC addresses).
    processing!ReportServer_0-20!358!10/24/2014-10:18:47:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetPropertiesAction(/ConfigMgr_J01, PathBased).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetItemTypeAction(/).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to GetDataSourceContentsAction(/ConfigMgr_J01/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to CreateDataSourceAction({5C6358F2-4BB6-4a1b-A16E-8D96795D8602}, /ConfigMgr_J01, True).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to ListTasksAction(Catalog).
    library!ReportServer_0-20!358!10/24/2014-10:18:50:: i INFO: Call to SetPropertiesAction(/ConfigMgr_J01).
    processing!ReportServer_0-20!358!10/24/2014-10:19:07:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not
    possible to provide valid values for all parameters.;

  • Error compiling form in 6i

    Moving this thread from "PL/SQL" to "Forms"
    purple
    Posts: 3
    Registered: 02/23/11
    PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 8:55 AM
    oracle , builder , 6i , pl , sql , forms           Reply
    I'm a total newbie here. We have someone using Oracle Form Builder [32-Bit]. Oracle 6i database. Her information is as follows:
    Forms [32 Bit] Version 6.0.8.21.3 (Production)
    Oracle Toolkit Version 6.0.8.21.0 (Production)
    PL/SQL Version 8.0.6.0.0 (Production)
    Oracle Procedure Builder V6.0.8.17.0 Build #863 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 6.0.7.1.0 - Production
    Oracle Virtual Graphics System Version 6.0.5.38.0 (Production)
    Oracle Tools GUI Utilities Version 6.0.8.20.1 (Production)
    Oracle Multimedia Version 6.0.8.20.0 (Production)
    Oracle Tools Integration Version 6.0.8.18.0 (Production)
    Oracle Tools Common Area Version 6.0.8.18.0
    Oracle CORE Version 4.0.6.0.0 - Production
    She's having trouble compiling a form. In comparing her PC with another (working) PC, the only difference is in the third line.
    Her's is: PL/SQL Version 8.0.6.0.0 (Production)
    The working PC is: PL/SQL Version 8.0.6.3.0 (Production)
    How do I "upgrade" this?
    BluShadow
    Posts: 16,328
    Registered: 09/21/05
    Re: PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 9:08 AM in response to: purple Helpful
    Reply
    Well, that database is very much out of date, and I don't even think you'd be able to easily get the patches from Oracle any more as they haven't supported that version for many years now. If you have a support contract with Oracle you could try asking for the relevant patch.
    Other than that, you're looking at upgrading the database to something more recent and supported.
    purple
    Posts: 3
    Registered: 02/23/11
    Re: PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 9:29 AM    in response to: BluShadow           Reply
    Thank you for the quick response. Yes, it's true it is an old database, but that's what we're using here. I used Patch12 which I thought was the most recent patch.
    SomeoneElse
    Posts: 11,472
    Registered: 10/15/98
    Re: PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 9:57 AM in response to: purple Helpful
    Reply
    She's having trouble compiling a form.
    Aside from the ancient software you have, you never told us what the trouble is.
    An error message? A syntax error? Something else?
    purple
    Posts: 3
    Registered: 02/23/11
    Re: PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 10:45 AM    in response to: SomeoneElse           Reply
    She's tried several different scenarios and still is not able to compile a "XXFPQLTR" form.
    It still appears to be something with the xxfps_price_pkg package in the get_rates procedure. If she comments out the line below it won't blow her out of forms.
    If it's in there, it tells her it's encountered an error, and closes forms with a non-descript error message.
    She attempted to hit 'debug' instead of 'close' when she got the forms error, and it did not provide herwith any further information .... it just blew up.
    Forms is only blowing up when she tries to compile a form that accesses pl/sql tables . If we take out the procedure that has the pl/sql she can compile the form.
    Billy Verreynne
    Posts: 12,472
    Registered: 05/27/99
    Re: PL/SQL Version 8.0.6.0.0 (Production)
    Posted: Feb 23, 2011 9:47 PM in response to: purple Reply
    Forms is not PL/SQL and PL/SQL is not forms. Yes, somewhat common language. No, very different as one runs on the client (Forms) and the other runs on the server (PL/SQL).
    And this is a PL/SQL forums - not Forms. So answers will tend to be about PL/SQL and not Forms. Make sure you do not mistake these as answers for Forms.
    In your sho3s.. I would dump Forms in favour of using Oracle 11gr2 with Apex.

    I've applied Patch12 to no avail
    So, what is your PL/SQL Version now that you've applied Patch 12?
    Patch12 is not the latest patch but but Patch17 is
    True, but you always want your development environments to match your production environment. If Prod is currently at Patch 12, then Patch 12 should be installed on ALL developer workstations.
    It is entirely possible that the problem is truly isolated to this one workstation. Have you tried performing a complete Unistall/Install of the Developer Suite (DS) 6i? With version 6i, I also found running Microsoft's RegClean tool often cleared up issues with the DS 6i. Microsoft no longer supports RegClean, but you can find it on the internet.
    you can put the code in a database procedure instead of a Forms procedureIf things still don't work after all this, I agree with InoL, perhaps the best option would be to move your logic to a database procedure and call the DB procedure from your Form.
    Out of curiosity, what is your Workstation operating system?
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Feb 24, 2011 11:01 AM

Maybe you are looking for

  • IPod Touch 1st Gen Won't Connect To PC or MAC Stuck On iTunes Logo

    I have an iPod Touch 1st Generation, I have searched a lot of forums and google and I can not find an actual solution for this... The ipod is stuck on the itunes logo(connect to itunes to restore), but when you connect it it isn't recognized by itune

  • Service Desk: error in Sent to SAP configuration

    Hi All, I am trying to confugure Send to SAP option in service desk solution manger 7.0 SPS 17. I am following SAP Note 1247502 for the same. But at the 3rd step i stucked as i am not getting method AISDK_SP_SEND_SAP in our solution manager system. 3

  • How to find the path of the file at enduser system

    Hi  Frndz.. Am per my requirement i need to read XL file from enduser PC, for this i need to kno the path on the enduser PC i.e . ,lets assume that test.xsl file is there an enduser PC on his desktop , so i need the path where its like  "C:\Docsandse

  • Error on display of remodelling rule in Quality System

    Hi, I have created a remodelling rule to delete a characteristic infoobject from a cube and the same in working fine in the development system. I transported the remodelling rule to the Quality system. the same was transported with out any error. But

  • Mass processing of Workitems in UWL

    Hi, Gurus, i configured UWL for mass processing of decision steps, as shown in this blog - Mass/Batch Processing of Work items in UWL Now I need to pass some parameters for all selected workitems to workflow container, i need to transfer date to cont