Error when trying to extend PoRequisitionLinesVO

In order to personalise the iProc shopping cart, I need to add an extra attribute to the PoRequisitionLinesVO to use in a SPEL expression.
I added the files from the oracle.apps.icx.por.schema.server and oracle.apps.icx.por.req.server and then extended the PoRequisitionLinesVO to add an extra column that calls a function in the database. The sql runs fine when tested in Toad.
I then set the substitution and loaded the .jpx file using JPXImporter
When I now try and go to the shopping cart in iProc (even before using this new attribute), I get the following error:
This VO already seems to have a large number of transient attributes but I should still be able to add a new one. (Since there is no SQL Boolean type, I have used a number type and return either 0 or 1 for true or false)
## Detail 0 ##
java.lang.NullPointerException
     at oracle.apps.fnd.framework.OAException.getAllMessageStackTraces(OAException.java:841)
     at oracle.apps.icx.por.common.server.ErrorUtil.handleFatalException(ErrorUtil.java:636)
     at oracle.apps.icx.por.req.server.RequisitionAMImpl.loadCurrentReqWithBuyerModifiedLines(RequisitionAMImpl.java:1204)
     at oracle.apps.icx.por.req.server.LoadReqSvrCmd.execute(LoadReqSvrCmd.java:66)
     at oracle.apps.icx.por.common.server.PorBaseAMImpl.executeServerCommand(PorBaseAMImpl.java:122)
     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:324)
     at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
     at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
     at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
     at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
     at oracle.apps.icx.por.common.webui.PorBaseCOImpl.executeServerCommand(PorBaseCOImpl.java:112)
     at oracle.apps.icx.por.req.webui.BaseShoppingCartCO.loadReq(BaseShoppingCartCO.java:511)
     at oracle.apps.icx.por.req.webui.ShoppingCartCO.processRequest(ShoppingCartCO.java:70)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
     at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:88)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
     at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
     at oa_html._OA._jspService(_OA.java:98)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
java.lang.NullPointerException
     at oracle.apps.fnd.framework.OAException.getAllMessageStackTraces(OAException.java:841)
     at oracle.apps.icx.por.common.server.ErrorUtil.handleFatalException(ErrorUtil.java:636)
     at oracle.apps.icx.por.req.server.RequisitionAMImpl.loadCurrentReqWithBuyerModifiedLines(RequisitionAMImpl.java:1204)
     at oracle.apps.icx.por.req.server.LoadReqSvrCmd.execute(LoadReqSvrCmd.java:66)
     at oracle.apps.icx.por.common.server.PorBaseAMImpl.executeServerCommand(PorBaseAMImpl.java:122)
     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:324)
     at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189)
     at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:679)
     at oracle.apps.icx.por.common.webui.ClientUtil.invokeMethod(ClientUtil.java:964)
     at oracle.apps.icx.por.common.webui.PorBaseCOImpl.invokeMethod(PorBaseCOImpl.java:194)
     at oracle.apps.icx.por.common.webui.PorBaseCOImpl.executeServerCommand(PorBaseCOImpl.java:112)
     at oracle.apps.icx.por.req.webui.BaseShoppingCartCO.loadReq(BaseShoppingCartCO.java:511)
     at oracle.apps.icx.por.req.webui.ShoppingCartCO.processRequest(ShoppingCartCO.java:70)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
     at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:88)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
     at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
     at oa_html._OA._jspService(_OA.java:98)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)

Please confirm from dev guide and previous threads that u have followed all steps of extension properly.From error stack it looks likesubstitution is not don properly.
This VO already seems to have a large number of transient attributes but I should still be able to add a new one. (Since there is no SQL Boolean type, I have used a number type and return either 0 or 1 for true or false)
The existing number od transient VO attributes would effect a transient attribute, there isno limit on number of transient attributes.This is correct for boolean type of attribute u need to use decode in ur query for 0 and 1--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Error when trying to extend network from airport express to airport express

    I have an airport express in my house.
    I am trying to connect another airport express to extend the network.
    I am following the instructions but keep getting an error when it is resetting itself. I have done a hard reset on the airport express so it is in its default settings.
    I see both airports in the left window of the Airport Utility Application.
    I select the New Base Station and select Switch to switch the networks.
    I then rename and add a password to the new airport express. (continue)
    I then select "I want Airport Express to join my current network" (continue)
    I then select "Extend the range of my Airport Extreme or Airport Express network" so I can extend the internet connection (Continue)
    It then asks me to choose the Airport Express network I want to extend - I get a choice of my "Cameron Network" or "Apple Network xox##xo" which is my new Airport Express. I'm selecting "Cameron Network" - my current wireless internet connection. (Continue)
    I am then asked to select the Apple wireless device I want to join from the list.
    The only option is "Cameron Airport Express" (OK)
    I then get a message "Configuring main network for a new WDS remote"
    I then get an error "There was an error setting up this Apple Wireless Device for WDS. Quit AirPort Utility and try again"
    I've tried 10 times.
    What am I doing wrong??
    Thank you in advance for your help!

    It sounds like you have an older "b/g" Airport Express (AX) and you have configured the device to "join" your wireless network. When the "b/g" AX is configured this way, the ethernet port is not active.
    Follow the instructions to setup a WDS arrangement with both of your AX devices. One must be configured as a WDS "main" and the other as a WDS "remote".
    Apple's step by step instructions to do this are found on pages 42-44 in the Designing AirPort Networks Guide
    If both of your AX devices are newer 802.11"n" devices, you can use a different type of setup. Post back to confirm if that is the case.

  • Getting error when trying to extend standard VO with transient attributes

    Hello,
    I am trying to extend the standard VO ReqSummaryVO in iprocurement module and getting the error "Each Row in the Query Result Columns must be mapped to a unique Query Attribute in the mapped entity columns" at step 4. This VO has a lot of transient attributes. I have gone through solutions from other threads related to this error but none of them worked for me. Can someone help me on this please?
    Thanks,
    Girish.

    Hello,
    I am trying to extend the standard VO ReqSummaryVO in iprocurement module and getting the error "Each Row in the Query Result Columns must be mapped to a unique Query Attribute in the mapped entity columns" at step 4. This VO has a lot of transient attributes. I have gone through solutions from other threads related to this error but none of them worked for me. Can someone help me on this please?
    Thanks,
    Girish.

  • Error when trying to extend range using an Extreme connecting to a Express

    Ok,
    My cable modem is connected just fine to my AE. I can run iTunes (which is nice!) off of it, connect to the internet off of my MBP and all. I just bought a AEBS to be able to EXTEND the range of my connection for all of my small townhome. However, when I go to through the Airport Setup Assistant to try and set it up, it keeps coming back with an error that says "Error Setting up WDS" or something like that. I've tried this multiple times. I've tried resetting both the AE and the AEBS...still doesn't work. Any clue?
    Thanks,
    Ryan

    It sounds like you have an older "b/g" Airport Express (AX) and you have configured the device to "join" your wireless network. When the "b/g" AX is configured this way, the ethernet port is not active.
    Follow the instructions to setup a WDS arrangement with both of your AX devices. One must be configured as a WDS "main" and the other as a WDS "remote".
    Apple's step by step instructions to do this are found on pages 42-44 in the Designing AirPort Networks Guide
    If both of your AX devices are newer 802.11"n" devices, you can use a different type of setup. Post back to confirm if that is the case.

  • Error when trying to extend custom idoc

    Hi ladies and gentlemen,
    I am experiencing problems when I try to extand a custom idoc segment.
    I created a custom idoc (ZBEVINBDEL) with 3 segments, generated it and have tested it successfully.  Now the users have come back and requested additional fields.  When I tried to modify the custom segment (after cancelling the segment and idoc status' from released status, I got the message 'Segment type Zxxxxx.. cannot be changed'  (this is because the idoc segment type has been flagged as generated).
    So I thought I'll create an extension to the corresponding segment.  I've created the extension segment in WE31, but when I try to create the extension (ZBEVINBDELX02), and try to create as new to the linked type ZBEVINBDEL, I get another error message 'Action is not possible for generated idoctypes'.
    Has anybody experienced this problem before, and could you give me an explanation on how to get around these problems, either for changing the segment or extending one.  If the answer lies within BDBG, please explain in detail.
    Cheers,
    Steve

    Reuben,
    In the end, I didn't need to touch the extension.  I was able to achieve my goal by adding the new fields in  my custom structure in SE11, and the new fields came into the idoc automatically.  Then I just had to add code to handle the new fields in my Function module.
    Good Luck,
    Steve

  • Error when trying to extend schema

    Installing SCCM2012 R2 into my test domain.  I've created the System Management object and given permissions.  I ran the extadsch.exe file from the SMSSetup\Bin\x64 directory of the install media.  The result was "Failed to extend the
    Active Directory schema, please find details in "C:\ExtADSch.log".
    Looking at the log I see:
    <01-28-2014 07:51:56> Failed to create class cn=MS-SMS-Management-Point.  Error code = 8202.
    <01-28-2014 07:51:56> Failed to create class cn=MS-SMS-Server-Locator-Point.  Error code = 8202.
    <01-28-2014 07:51:56> Failed to create class cn=MS-SMS-Site.  Error code = 8202.
    <01-28-2014 07:51:56> Failed to create class cn=MS-SMS-Roaming-Boundary-Range.  Error code = 8202.
    <01-28-2014 07:51:56> Failed to extend the Active Directory schema, please find details in "C:\ExtADSch.log".
    So, I looked up Error code 8202.  The notes I see refer to:
    replication issues
    Account used to run the schema extension not a member of Schema Admins
    The account is definitely a member of the Schema Admins group.  I have 2 DCs in the test domain, the first server is 2008 R2, the second is 2012 R2.  I ran repadmin /showrepl and got the following:
    Repadmin: running command /showrepl against full DC localhost
    Default-First-Site-Name\WILDDC1
    DSA Options: IS_GC
    Site Options: (none)
    DSA object GUID: 0a9eca25-db8f-4b24-a1e5-40e4e346263a
    DSA invocationID: 0a9eca25-db8f-4b24-a1e5-40e4e346263a
    ==== INBOUND NEIGHBORS ======================================
    DC=WILD,DC=XXX,DC=XX,DC=XXX
        Default-First-Site-Name\WILDDC2 via RPC
            DSA object GUID: ec3bd941-b372-4094-a15a-7e0c218a9a9c
            Last attempt @ 2014-01-28 07:54:33 was successful.
    CN=Configuration,DC=WILD,DC=XXX,DC=XX,DC=XXX
        Default-First-Site-Name\WILDDC2 via RPC
            DSA object GUID: ec3bd941-b372-4094-a15a-7e0c218a9a9c
            Last attempt @ 2014-01-28 07:52:01 was delayed for a normal reason, result 8418 (0x20e2):
        The replication operation failed because of a schema mismatch between the servers involved.
            Last success @ 2014-01-28 06:52:01.
    CN=Schema,CN=Configuration,DC=WILD,DC=xxx,DC=xx,DC=xxx
        Default-First-Site-Name\WILDDC2 via RPC
            DSA object GUID: ec3bd941-b372-4094-a15a-7e0c218a9a9c
            Last attempt @ 2014-01-28 07:52:04 was successful.
    DC=DomainDnsZones,DC=WILD,DC=xxx,DC=xx,DC=xxx
        Default-First-Site-Name\WILDDC2 via RPC
            DSA object GUID: ec3bd941-b372-4094-a15a-7e0c218a9a9c
            Last attempt @ 2014-01-28 07:52:01 was delayed for a normal reason, result 8418 (0x20e2):
        The replication operation failed because of a schema mismatch between the servers involved.
            Last success @ 2014-01-28 06:52:01.
    DC=ForestDnsZones,DC=WILD,DC=xxx,DC=xx,DC=xxx
        Default-First-Site-Name\WILDDC2 via RPC
            DSA object GUID: ec3bd941-b372-4094-a15a-7e0c218a9a9c
            Last attempt @ 2014-01-28 07:52:01 was delayed for a normal reason, result 8418 (0x20e2):
        The replication operation failed because of a schema mismatch between the servers involved.
            Last success @ 2014-01-28 06:52:01.
    So, I do have a couple of replication issues.  Any idea how to resolve them?

    Long shot: did you try extending the schema using the ldifde util and the ConfigMgr_ad_schema.ldf ?
    In any case it'll give you more details and probably point you into the right direction for troubleshooting.
    Update: procedure is documented here:
    http://technet.microsoft.com/en-us/library/bb632388.aspx (2007 article but the process is identical)

  • On Windows Platform, encounters error when trying to open an Indesign document created from MAC

    Hi all,
    On Windows Platform, encounters error when trying to open an Indesign document in INDD format created from Mac. Error received "Either the file does not exist, you do not have permission, or the file may be in use by other application". I am currently using Adobe Indesign CC 9.2 Trial version.
    Kindly advise how can i open this document on windows platform and allows me to edit the document.
    Thanks!
    With Rgds,
    Fiona Choy

    Normally there is no problem to open any INDD opening on Windows, when created on the Mac.
    But Mac user are often not aware on the naming limitations. A file name must not contain /, \, |, :
    It should not contain any extended character, it is not a primary problem but will be, if something links to that file, so avoid also: ÄÖÜäöüß+&
    You can use all other non A-Z a-z, 0-9 and - and  _
    I personally would also recommend to avoid spaces.
    This is valid for the INDD file itself but also for all linked content.

  • Solution to stop error when trying to create a portfolio

    Hi all,
    I finally found a way to make a portfolio in acrobat pro 9. The problems I was having were explained in the thread titled "Acrobat pro 9 has a stop error when trying to create a portfoloi"
    It seems ther is another way to do this, by selecting 'combine' and then 'merge files into a single pdf' rather than 'assemble pdf portfolio'.
    The merge option also gives the choice of making a pdf package and does not result in a stop error with authplay.dll.
    So much for Adobe support who conuld not tell me this or respond to support requests.
    All I have to do now is to remember to not click on 'assemble pdf portfolio' when I want to assemble a pdf portfolio but "merge files into a single pdf" when I want to assemble a pdf portfolio.
    I would still like to hear from Adobe why acrobat pro 9 has a stop error with authplay.dll.
    I feel a lot happier now.

    I read through the pdf wth your emails to/from customer support. I'll have to defer to someone else because it seems you have tried what I would suggest.
    If someone else does not respond with a better plan and you are willing to spend a bit more time before writing off Acrobat 9, I would try the process below one last time. (If you are using a CS suite, while authplay.dll is found in each of the directories, it does not appear that the issue extends to the other programs.)
    1. Using Add/Remove Programs, uninstall all Adobe Acrobat and Reader software and uninstall the Adobe Flash Player Active X and Adobe Flash Player Plugin. If you have it, uninstall Adobe Air.
    2. In C:\Documents and Settings\(your profile name)\Application Data\Adobe, delete the Acrobat and Adobe PDF folders if they still exist.
    3. Reinstall only Acrobat 9.
    4. From Acrobat, run the updater Help > Check for Updates and install all updates.
    5. Verify Adobe Acrobat is now version 9.2: Help > About Adobe Acrobat Pro  (If for any reason it is not 9.2, use the update on http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
    6. Test
    Message was edited by: Anna Nmty
    While searching for a solution, I just saw your post over at acrobatusers.com (http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=15765). Looks like my advice was largely a duplicate, although your event log indicates Acrobat did not update properly.

  • -251723760 CIP Error when trying to read and array of sgl from and AB ControlLogix PLC

    I have the NI Ethernet/IP module to communicate with an Allen-Bradley ControlLogix PLC. I am doing both reading (only 13 values) and writing (over 200 values). I am using the basic ethernetip tag write.vi to  do the writing. These program are in an executable running on a 'run-time' machine. I have the list of tagnames I am reading and writing to and have confirmed with the person who created the AB load that the array I am writing to on the AB side has more than enough addresses (it is an array of length 300). However I am only able to write 118 values to it. When trying to write 119 or more I get the error:
    -251723760 CIP error - extended status may be available
    I have confirmed with NI OPC Servers with an OPC quick client (running on my development PC) connected to the AB ControlLogix that the values I am writing to up to element 118 are getting through correctly, i.e. if I write 123.456 to sample_array[13] then I in fact see this same value at that location in the OPC quick client.
    To be honest I am a little disappointed that the error message is so cryptic and gives no hints as to what troubleshooting paths are possible. I have tried various combinations of group/tag names with and w/o offsets, e.g. [3], but nothing has led me any further.

    Thanks for the quick response - here are screenshots of before (write OK - writing 118 values - all except last are 0) and after (error - when trying to write an array of length 119) as well as the simple test program I as using.
    Attachments:
    NI Ethernet_IP 3-20-2013 Troubleshooting.zip ‏90 KB

  • Newbie apex error when trying to install the OEHR Sample object.

    ORA-01653: unable to extend table FLOWS_030000.WWV_FLOW_ONLINE_HELP by 8 in tablespace APEX
    I got this error when trying to install.
    I will go back now and check the storage space.
    I could not find any error message on it.
    Thanks.Steve

    Just few minutes after asking this question on forum, I was able to find the workaround for opening the DashboardDesigner.exe.
    What I was trying earlier was that, In my "Business Intelligence Center" site,  i was trying to open the Dashboard Designer from "PerformancePoint Content" list by clicking "New Item" from "Items" tab in Ribbon.
    Instead Now I go to the connections library "Data Connections",  Go to "Documents" tab in Ribbon and then click on "New Document".
    Voila!
    Finally "DashboardDesinger.exe" opens up! :D
    Now from this designer application, I can add other Lists directly and can add "PerformancePoint Content" list for creating actual ScoreCards, Dashboards, KPIs etc.
    Happy Learning!
    Shri07

  • I am getting an activation error when trying to sign in to FAceTime

    I am getting an activation error when trying to sign in to FAceTime

    me too after upgrading into lion..

  • Keep getting 5002 Error when trying to Sign In

    Hello,
    I created a new @me.com address today for a seperate Apple ID account.  I am needing to sign into the iTunes Store, but I keep getting a response that says:
    "We could not complete your iTunes Store request. An unknown error occurred (5002)."
    Any ideas as to what's going on here?
    I also took a screen cap of the issue:
    Thank you for the help!
    Marcus

    Thank you for your response Carolyn; however, that article does not fix my problem.  I am getting this error when trying to sign into the iTunes Store on my Mac.
    I get the same problem when signing into the Store on the iPad or iPhone.  I simply can't log in, but when I go to iCloud.com or the Apple ID login on Apple.com, it works.
    Marcus

  • I get error message "unknown error" When trying to log on to itunes via pc, help please!

    I get error message "unknown error" When trying to log on to itunes via pc, help please!

    Hello, trolle56.
    Thank you for the question.  You may find these articles helpful in troubleshooting the error received with the iTunes Store. 
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Cheers,
    Jason H. 

  • Error when trying to update or download any app

    I'm getting an Error when trying to update or download any app from Mac App Store
    Every time I try to update xCode to version 6.2 but I get this error :
    The server gave an error during download: 503 Service Unavailable.
    So I tried to download a random app from the App Store but I got the same error message.
    So any advices ?

    Hello HusseinAlBehary,
    Sorry to hear your troubles updating and downloading apps from the Mac App Store. Based on when you were doing that, it looks like the Mac App Store was experiencing difficulties. It is not currently so you should be able to upgrade with out issues now. If you experience this in the future, look at the page below to start you on figuring out if it is something on your end or Apple’s end. 
    Apple Services, Stores, and iCloud
    https://www.apple.com/support/systemstatus/
    Regards,
    -Norm G.  

  • Error when trying to access the RBAC User editor and Message tracking

    Hi,
    I am getting an error when trying to access the RBAC User editor and Message tracking on the Web Mgmt interface. I verified that the admin account trying to access is in the Organization Management group and has the correct Role Assignment Policy applied.
    I searched through this thread below and saw that matching the msExchRoleLink and msExchUserLink attributes fixed the issue. 
    https://social.technet.microsoft.com/Forums/exchange/en-US/fc568cc6-8691-4127-b70b-bcc82f9b1f7f/first-2010-cas-server-no-administrator-rights-emc-permissions-gone?forum=exchange2010
    However I have another environment where this is not the case and works just fine; the msExchUserLink attribute has a value of CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Domain,DC=Local which is different as per the issue outlined in
    the above thread so I am not convinced that this will work and also don’t want to blindly edit something in adsiedit without being sure.
    I then checked the event logs on the server and saw the below error logged;
    Current user: 'Domain/Server Services Accounts/administrator'
    Request for URL 'https://server.domain.com/ecp/default.aspx?p=AdminDeliveryReports&exsvurl=1' failed with the following error:
    System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the
    page. Please contact your administrator for the required credentials. For new credentials to take effect, you have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       --- End of inner exception stack trace ---
       at System.Web.UI.Page.HandleError(Exception e)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest()
       at System.Web.UI.Page.ProcessRequest(HttpContext context)
       at ASP.default_aspx.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the page. Please contact your administrator for the required credentials. For new credentials to take effect, you
    have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I then had a look at the IIS permissions for ecp and owa. The account did not have permissions so I added them there but still got the same error. I’ve also tried all of the above with a newly-created account but still got the same issue.
    Any ideas as to what the above event log is specifically referring to?

    Hi,
    From your description, I would like to clarify the following thing:
    If you want to search message tracking logs, the account you use should be a member of the role groups below:
    Organization Management role group, Records Management role group, Recipient Management role group.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

Maybe you are looking for

  • CM12 Reporting Role problems

    I have been trying to resolve an issue where my central admin site which was assigned the reporting services role stopped working. SSRS was operating but there seemed to be a problem with the reporting user account. I did all sorts of stuff including

  • VRAM issues

    When I opened ASP for a non-related issue in noticed that the VRAM was listed as 48MB when the card (ATI Redeon 9000 Mobile) is supposed to be 64MB. Despite many searches on other froums and on the net I could not find any suggetstions. I reset the P

  • How can I transfer Final Cut Pro 6 projects into Adobe Premiere CS5.5?

    I produced a whole whack of videos in FCP7. Then I got a new Apple Quad Core Intel Mac about a year ago... To find that FCP7 was no longer even usable. I still have FCP 6 on my Intel Core 2 Duo Apple Powerbook... I've read that I can export FCP6 XML

  • Sound On Entire Computer Gets "Warbled"/Distorted Whenever I Open Audition

    Hello. I apologize in advance if I'm posting a topic that's been posted before. I'm new to the forums, and couldn't find a similar topic via the search tool. Anyway, whenever I open Adobe Audition, the sound on my entire laptop becomes "warbled" or d

  • JBO-33001 Error

    Hi, I am getting the following error: oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /XXXX/common/bc4j.xcfg in the classpath. I am trying to create a JSP application using business components. I used the wizards for creating t