Error updating attribute in VO

Hi,
I need to set the value of an attribute in a seeded VO. But it gives me an error if I try to commit the changes.
oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_RECORD_CHANGED_ERROR.
     at oracle.apps.fnd.framework.server.OAEntityImpl.lock(OAEntityImpl.java:549)
     at oracle.apps.ap.oie.server.ExpenseReportLineEOImpl.lock(ExpenseReportLineEOImpl.java:271)
     at oracle.jbo.server.EntityImpl.beforePost(EntityImpl.java:3795)
     at oracle.jbo.server.EntityImpl.postChanges(EntityImpl.java:3939)
     at oracle.apps.fnd.framework.server.OAEntityImpl.postChanges(OAEntityImpl.java:1706)
     at oracle.jbo.server.DBTransactionImpl.doPostTransactionListeners(DBTransactionImpl.java:2761)
     at oracle.jbo.server.DBTransactionImpl.postChanges(DBTransactionImpl.java:2607)
     at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:1796)
     at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:1993)
     at oracle.apps.fnd.framework.server.OADBTransactionImpl.commit(OADBTransactionImpl.java:695)
     at xxfn.oracle.apps.ap.oie.barcode.webui.xxfnConfirmationPageCO.processRequest(xxfnConfirmationPageCO.java:241)
     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:1133)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:937)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
     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:937)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:904)
     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:2318)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1717)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
     at OA.jspService(OA.jsp:40)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
     at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
     at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
     at OA.jspService(OA.jsp:45)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
     at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
     at java.lang.Thread.run(Thread.java:534)
This is what I am doing in my custom controller:
OAApplicationModule oam = (OAApplicationModule)pageContext.getRootApplicationModule();
System.out.println(" Root AM "+oam);
OADBTransaction trxn = (OADBTransaction)oam.getOADBTransaction();
System.out.println(" OADBTransaction "+trxn);
OAViewObject vo = (OAViewObject)oam.findViewObject("ExpenseReportHeadersVO");
Row row = vo.getCurrentRow();
row.setAttribute("Attribute3",faxId);
//trxn.commit();
I get the above error if I un-comment the commit statement.
Any pointers? Please note that I am doing the above in the controller itself (i know its not a good coding practice, and should be done in AM)

Well.. the trxn was dirty even before i updated the value.
OADBTransaction trxn = (OADBTransaction)oam.getOADBTransaction();
System.out.println(" OADBTransaction "+trxn);
if (trxn.isDirty())
System.out.println(" TRXN1 IS DIRTY ");
This evaluates to true.
vo.setWhereClause("REPORT_HEADER_ID = :1");;
vo.setWhereClauseParam(0,reportHeaderId);
vo.executeQuery();
System.out.println(" Query Executed "+vo.getQuery());
Row nRow = vo.getCurrentRow();
if (nRow != null)
nRow.setAttribute("Attribute3",faxId);
trxn.commit();
System.out.println(" Committed ... ");
This does NOT work wither.. nRow is NULL.

Similar Messages

  • 连接Gige摄像机时出错:Error:0xBFF69012 Attribute value is out of range Attribute Name CameraAttributes::AutoFunction::AutoTargetGrayValue

    操作系统:XP
    MAX版本:14.0
    IMAQdx版本:4.3.5
    摄像头:北京嘉恒中自图像OK_AC1360
    生产商的应用软件中使用正常。在AMCAP软件(视频测试软件)中使用也正常。
    连接Gige摄像机时出错:Error:0xBFF69012 Attribute value is out of range Attribute Name CameraAttributes::AutoFunction::AutoTargetGrayValue
    试着修改 ‘AutoTargetGrayValue’ 属性值,但是MAX会无相应并死掉。
    Solved!
    Go to Solution.

    Sometimes, camera firmware is the problem.  Sometimes, the camera XML file is the problem.  Sometimes, the way that IMAQdx tries to force settings onto the camera is the problem.
    Things to try:
    1. Check with the manufacturer, and ask if new firmware is available for the camera.  If the firmware cannot be updated by the end user, you will need to get a Returm Merchandise Authorization number, and send the camera in for the upgrade.
    2. Edit the XML file that was downloaded from the camera, and remove all references to CameraAttributes::AutoFunction::AutoTargetGrayValue.  Do not alter, or remove the zip file that resides in the same location as the XML.  If you do, IMAQdx will request a fresh copy from the camera, and overwritew your changes.  You can find the XML file in C:\Users\Public\Documents\National Instruments\NI-IMAQdx\Data\XML
    3. Edit the camera .icd file in C:\Users\Public\Documents\National Instruments\NI-IMAQdx\Data, and remove the reference to CameraAttributes::AutoFunction::AutoTargetGrayValue.
    Machine Vision, Robotics, Embedded Systems, Surveillance
    www.movimed.com - Custom Imaging Solutions

  • Error updating LDAP properties: An internal error has occurred in the secLdap plugin

    Post Author: kbd_vijey
    CA Forum: Authentication
    Hi,
    We are using Environment / Tools : BusinessObjects Enterprise XI R2 ,Sun Soloris 10,Active Directory.
    To Configure the LDAP, we have done from CMC - > Authentication -> LDAP.
    The below steps we have followed.
    1) Please enter the LDAP hosts you are using. => Here, we have entered our AD's hostname:port (Ex: 192.168.0.8:389) (Is it correct?)
    2) We have passed all the required informations for all other tabs.
    3) SSL - Basic(no SSL), Authentication - Basic(no SSO)
    Finally its providing the error as " Error updating LDAP properties: An internal error has occurred in the secLdap plugin."
    If any one have solution or faced same problem, Kindly help us to resolve it.
    Thanks & Best Rgds,Vijey

    Post Author: TAZ
    CA Forum: Authentication
    There are 3 things needed to get the LDAP plugin configured.
    1) Host:port
    2) Base DN, usually dc=domain, dc=com
    3) LDAP Administrator DN (this is not a visible attribute in AD unless you use a tool like ADSIedit or ADExplorer). You probably have to enter the Base DN instead of the username.
    There are other AD specific issues when using the LDAP plugin to AD such as picking custom attributes, rules for multi domains, etc
    Regards,
    Tim

  • Updating attribute columns

    Hi,
    we are on oracle applications 11i.
    We have a requirement to create a descriptive flexfield in the items form and suppliers form to accept ids generated in another system. update would be from database end.
    what is the impact of updating attribute columns in two tables: MTL_SYSTEM_ITEMS_B and po_vendors with a simple procedure, i.e without using existing Oracle APIs?
    Regards

    Hi,
    here is why i think i need to insert a row the value set table : fnd_flex_values .
    after i update the record of the table and alter attribute field with value XXX for value set segment GLOBAL_ID, I go to the application and query the record. It gives me error:
    Value XXX for the flexfield segment Global ID does not exist in the value set XX_GLOBAL_ID.
    this error only goes away when i insert the value XXX to the descriptive flexfield segment values list.
    I defined the value set as independent. If you have another mean where i can accomplish this, I will like to know about it.
    From ittoolbox forum i had the name of the package, which is fnd_flex_values_pkg. I need more details on the tables that i need to update or insert rows into and about the package; if possible.
    thanks

  • Updating attributes for InfoObject

    I am getting below error while trying to load the master data "0MAT_PLANT" using DTP.
    " There are duplicates of the data record 1 & with the key ' &' for   
    characteristic 0MAT_PLANT &.  "                                     
    Tetted following.
    1.vealidated the data in PSA, thers is no duplicate entries.
    2.In the DTP monitor, I can see..
       1.Extraction DataSource 0MAT_PLANT_ATTR : Green
       2.Filter Out New Records with the Same Key : Green
       3.RSDS 0MAT_PLANT_ATTR  -> IOBJ 0MAT_PLANT : Green
       4.Updating attributes for InfoObject 0MAT_PLANT : Red (falied)
    I was performin the data load with only one record eventhough I m agetting this error measge Duplicates entries" , your help on this greatly appericiated..
    Thanks,
    Raman

    Hi,
    Check if it is full upload from PSA, and check how many PSA request are coming when you pull the data.
    Might be in other request in PSA have duplicate entries.
    When you pull the data from DTP as Full it will select all the request from PSA..
    Check this..
    Regards
    Gopal

  • Error updating DP while trying to deploy portlet

    Hi ,
    While trying to deploy portlet I am getting the error "*Error updating DP :Failed to store display profile*" and the portlet is not getting deployed.
    Can anyone please let me know why it occurs and how can I resolve this issue ? Let me know if further input is needed.
    Thanks ....

    Hi ,
    I am getting the following error in the portal log file .Please let me know how this issue can be fixed ?
    PortletDeployerException:
    com.sun.portal.portlet.admin.mbeans.tasks.PortletDeployerException: errorStoreDP
         at com.sun.portal.portlet.admin.mbeans.tasks.PDDPUpdater.storeDPDocument(Unknown Source)
         at com.sun.portal.portlet.admin.mbeans.tasks.PDDPUpdater.addProviders(Unknown Source)
         at com.sun.portal.portlet.admin.mbeans.tasks.PDDeploy.process(Unknown Source)
         at com.sun.portal.portlet.admin.mbeans.PortletAdmin.deploy(Unknown Source)
         at com.sun.portal.portlet.admin.mbeans.PortletAdmin.deployAll(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at com.sun.jdmk.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:203)
         at com.sun.jdmk.interceptor.MBeanServerInterceptorWrapper.invoke(MBeanServerInterceptorWrapper.java:512)
         at com.sun.portal.admin.server.PortalServerLoggingInterceptor.invoke(Unknown Source)
         at com.sun.cacao.agent.DispatchInterceptor.invoke(DispatchInterceptor.java:736)
         at com.sun.cacao.agent.auth.impl.AccessControlInterceptor.invoke(AccessControlInterceptor.java:618)
         at com.sun.jdmk.JdmkMBeanServerImpl.invoke(JdmkMBeanServerImpl.java:764)
         at com.sun.cacao.common.instrum.impl.InstrumDefaultForwarder.invoke(InstrumDefaultForwarder.java:106)
         at javax.management.remote.generic.ServerIntermediary.handleRequest(ServerIntermediary.java:280)
         at javax.management.remote.generic.ServerIntermediary$PrivilegedRequestJob.run(ServerIntermediary.java:951)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.generic.ServerIntermediary$RequestHandler.handleMBSReqMessage(ServerIntermediary.java:727)
         at javax.management.remote.generic.ServerIntermediary$RequestHandler.execute(ServerIntermediary.java:629)
         at com.sun.jmx.remote.generic.ServerSynchroMessageConnectionImpl$RemoteJob.run(ServerSynchroMessageConnectionImpl.java:266)
         at com.sun.jmx.remote.opt.util.ThreadService$ThreadServiceJob.run(ThreadService.java:208)
         at com.sun.jmx.remote.opt.util.JobExecutor.run(JobExecutor.java:59)
    Caused by: com.sun.portal.desktop.context.ContextError: DSAMEConnection.setTemplateAttribute(): , dn=o=CW,cn=portal, serviceName= SunPortalportal1DesktopService, sunPortalDesktopDpDocument=<?xml version="1.0" encoding="utf-8" standalone="no"?>
    <display profile >
    at com.sun.portal.desktop.context.DSAMEConnection.setTemplateAttribute(Unknown Source)
    at com.sun.portal.desktop.context.DSAMEConnection.setAttributeByDN(Unknown Source)
    at com.sun.portal.desktop.context.DSAMEAdminDPContext.storeDPDocument(Unknown Source)
    ... 28 more
    Caused by: com.iplanet.am.sdk.AMException: Unable to set attribute(s).::LDAP Error:An internal error occurred in the LDAP server.
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.processInternalException(DirectoryServicesImpl.java:320)
    at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.setAttributes(DirectoryServicesImpl.java:2789)
    at com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.setAttributes(CachedDirectoryServicesImpl.java:951)
    at com.iplanet.am.sdk.AMObjectImpl.store(AMObjectImpl.java:1782)
    at com.iplanet.am.sdk.AMObjectImpl.store(AMObjectImpl.java:1697)
    ... 31 more
    Thanks ...

  • ERROR: Update mode C is not supported by the extraction API - R3 11

    Hi gurus,
    I just tryed to implement the solution I found at this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d3219af2-0c01-0010-71ac-dbb4356cf4bf
    The data source is based on an Infoset on the KONV R/3 Table.
    I setted the AIM delta process and I did all the activities as written in the document.
    The process works if I load data to bw in "full", with "Init without data transfer" and "delta" mode. Of course if I change a Purchase document, it will be posted in the delta queue and then loaded to bw with the next delta load.
    The "initialize delta process" (with data) doesen't work and returns the following error:
    Update mode C is not supported by the extraction API
    the error code is R3 11.
    have you any idea about it???
    Thanks!!!
    Regards!
    Matteo

    Hi,
    for me it sounds quite simple. It is that the update mode 'C' get flagged as 'not allowed' for this extractor. Did you check with rsa3? I guess you will get the same error message. May be you can start debugging in rsa3 to find the place where the update mode gets checked.
    Anyway, it shouldn't be a issue as you have a workaround. May be you should raise a error message at sap because of this.
    regards
    Siggi

  • Error publishing from Muse - "error updating device redirect setting"

    After recent upgrade of Muse I am getting an error message when publishing. The pages are published correctly but there is an error which prevents the final completion of the process. message = "Error updating device redirect settings click resume to try again." it never works. What is up? is this a Business Catalyst error or a a Muse error?

    I turned off the firewall, logged out from Creative Cloud and restarted my computer. After rebooting, I logged in to Creative Cloud, open Muse and connect to Business Catalyst without no problem,

  • When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this

    When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this problem previous and was able to fix by doing a complete wipe of my computer and reinstalling CC. However, I should not have to wipe my computer clean everytime I need to do a CC update. HELP!

    Hi,
    Please download the updates directly from the link below:
    WIN: All Adobe CC 2014 Updates: The Direct Download Links for Windows | ProDesignTools
    MAC: All Adobe CC 2014 Updates: The Direct Download Links for Mac OS | ProDesignTools
    Regards,
    Sheena

  • Error 'Update Was Terminated' - While clearing an open item

    Hi,
    We are facing a problem where we receive an error - "Update Was Terminated" when we try to clear some entries for 3-4 vendors (posted in period 12 of year 2006. it happens only for those 3-4 vendors). We have identified the problem as follows:
    1) We ran program SAPF190 and found that there is a defference in the 'debit balance' and Total of line items' for these vendors. I ran program SAPF71 (in Quality server) which rectified some entries. However, some entries still remain incorrect and these entries that still remain incorrect are ones - "which have a posting date of 10 oct 2006, but the posting period picked up by the document header is period 12, instead of period 7". Now, some other documents posted for the same vendor on the same date have picked up the correct posting period i.e. 7. I am really baffled at how this actually happened and howcome the system allowed it??
    2) After running program SAPF190, there were some entries that got corrected (these entries were just not captured by the system in the balance field, and did not have the same problem as the entries mentioned above where the wrong posting period was picked by the system). When i tried to clear the line items for the vendors whose entries had been rectified, it still gve the update error. When i checked the number range status, i noticed something very odd:
    "The number range status shows a number much higher than what the system is automatically picking for the documents (e.g system picks 230 as the document number when posting, but the number range staus in FBN1 shows current number as 256). Also, once 256 is reached (i posted 26 documents for it) and we post the 257th document, the error remains and the status number now moves up 100 places to 356). At this time if i post another document it picks the number 258 instead of 356...and if i keep posting documents till 356 is reached, im sure when i post the 357th document, the status will jump to 456)
    Can someone please help me here!! I dont understand how and why this is happening!!
    Thanks!!
    Regards,
    Angad

    >
    Ravi Sankar Venna wrote:
    > Hello,
    >
    > Please let me know the ERROR name you are getting and what is the transaction code you are using to clear. (F.13 or F-44)
    >
    > Try to analyze the dump in ST22.
    >
    > Regards,
    >
    > Ravi
    Hi,
    The error is "Update was terminated" . It sends this message to my inbox!! After searching a bit i found about the two reports - SAPF190 and SAPF071. After running them i found some balance mis-match. I ran the two programs and it rectified those mis-matched entries!! However, even after that, it is giving me the same "update was terminated" error. We are using F-44 for clearing.
    This error is coming only for those entries which we had posted using a user-exit. Basiaclly these are entries for late payment which were programmed to be posted directly at the time of invoicing. I just checked the code of the exit, and these entries were (astonishingly) made directly into the BKPF and BSEG tables (infact the posting period was hard-coded to '12', which is why even when my posting date for these documents is 10.10.2006, it still enters posting period '12' in the header instead of '7'.). Therefore, there were balance mis-match when we saw the monthly balance in FK10N and compared it with the line items total for that month. However, on running report SAPF071, it corrected those entries, but the update error problem still persists!!
    The exact error:
    Update was terminated
    System ID....   QAS
    Client.......   100
    User.....   MOHGYA323233
    Transaction..   FB1K
    Update key...   4A206A2D00E5001202000000C0A80A35
    Generated....   04.06.2009, 11:24:59
    Completed....   04.06.2009, 11:24:59
    Error info...   F1 805: Clearing: Line item 001

  • Error updating adobe download assistant from version 1.0.6 to 1.2.9

    i am getting an error updated adobe download assistant from version 1.0.6 to 1.2.9.  "The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Please contact the application author.

    Sammybobammy89 what Adobe software title are you trying to install?  To resolve your current error remove version 1.0.6 prior to installing version 1.2.9.

  • Error Updating table condition table 372 in J1IIN

    Hello all,
    I am facing the problem while working in ECC 6.0 environment in the transaction code J1IIN.
    I have maintained the condition type JEXP ( A/R BED %) as 14% with the Key combination Country/Plant/Control Code (Table 357). While iam saving the Excise invoice the system is throwing the error like error updating the table condition table 372
    I have gone through the post given by Ms. Jyoti few days back and tried to do some changes in the customisation.
    I tried to maintain a different access sequence for the condition type JEXP i.e a new Access sequence(ZJEX) and also a new condition tpe (ZJEP). We don't have other Excise condition type in our Pricing procedure.
    In the access sequence except condition table 372, I have maintained all other condition tables.
    Still the error is persisiting. Can anyone put some light on the issue.
    I have even traced the values being hit in the tables directly. There is no relation of table 372, then why is it being cause of the error.
    Also while debugging it gives a message "An exception (CX_BADI_INITIAL_REFERENCE) occured".
    Does this help in anyways.
    Gurus plz give u r suggestions.
    Thanks in advance,
    Regards,
    Karthik.

    Hello Srinivas/Sandeep
    Please ensure that access sequence in the condition type JEXC has got the table 372. If it is not there please maintain it.
    The standard access sequence used in all duty condition type
    is JEXC  which has got the table 372 this will get updated once
    you save your excise invoice.
      If the issue is resolved, kinldy close the message.
    Regards
    MBS

  • Error updating the table condition table 372 in J1IIN

    Hello all,
    I am facing the problem in the transaction code J1IIN (In CIN).
    I have maintained the condition type JEXP ( A/R BED %) as 16% with the Key combination Country/Plant/Control Code (Table 357). While iam saving the Excise invoice the system is throwing the error like Error updating the table condition table 372
    I have gone through the post given by Ms. Jyoti few days back and tried to do some changes in the customisation.
    I tried to maintain a different access sequence for the condition type JEXP i.e In the access sequence except condition table 372, I have maintained all other condition tables.
    Still the error is persisiting. Can anyone put some light on the issue.
    I have even traced the values being hit in the tables directly. There is no relation of table 372, then why is it being cause of the error.
    Gurus plz give ur suggestions.
    Thanks
    Srinivas

    Hello Srinivas/Sandeep
    Please ensure that access sequence in the condition type JEXC has got the table 372. If it is not there please maintain it.
    The standard access sequence used in all duty condition type
    is JEXC  which has got the table 372 this will get updated once
    you save your excise invoice.
      If the issue is resolved, kinldy close the message.
    Regards
    MBS

  • Error updating the table 372

    Hi Gurus,
    I maintained the JCEP ( A/R Cess %) as 3%. While iam saving the Excise invoice the system is throwing the error like error updating the table condition table 372
    Gurus plz give u r suggestions.
    regards,
    jyothi.
    Edited by: jyothi. on Feb 25, 2008 7:26 AM

    Hi Murali!
    Even I am facing the same problem while working in ECC 6.0 environment. I  am continuing in the same post as I feel it is most relevant post to continue the issue instead of opening a new issue.
    I tried to maintain a different access sequence for the condition type JEXP i.e a new Access sequence(ZJEX) and also a new condition tpe (ZJEP). We don't have other Excise condition type in our Pricing procedure.
    In the access sequence except condition table 372, I have maintained all other condition tables.
    We have maintained the values against table 357- Country/Plant/Control Code.
    Still the error is persisiting. Can you put some light on the issue.
    I have even traced the values being hit in the tables directly. There is no relation of table 372, then why is it being cause of the error.
    Thanks in advance,
    Regards,
    Karthik.

  • Error updating .mac message...FIx doesn't work???

    I get the "there was an error updating .mac" error message when trying to publish my website. I've tried the File > Publish all to .mac route and I still get the same error message. Any ideas what I do now? Any other suggestions or alternatives?

    I get the "there was an error updating .mac" error message when trying to publish my website. I've tried the File > Publish all to .mac route and I still get the same error message. Any ideas what I do now? Any other suggestions or alternatives?

Maybe you are looking for