Inconsistent ADT attribute error

Hi,
In our project we are using Object types which is used by PL/SQL. The in and out parameter of procedures will be of this type. These objects types are of nested types. These procedures are accessed by Java, in which java have Transfer Objects, and these TO's are mapped with the in and out parameters of oracle types.
Currently what we have is a schema called CDSS_LIVE, which own all the objects like tables, views, packages and types. When java access the procedures of CDSS_LIVE they are able to map the the out parameter which is of oracle types with the TO(transfer object). Now for security reasons we have created a schema/user called CDSS_USER, which has CRUD (E) privileges on CDSS_LIVE. Public synonym is created for the objects owned by CDSS_LIVE and CDSS_USER access the objects of CDSS_LIVE through these synonyms.
When java changes the data source as CDSS_USER and access the procedure of CDSS_LIVE, while mapping the out parameter of the procedure with the TO it throws an internal error as "Inconsistent ADT attribute".
We couldn't figure out what could be the reason for the error. Is there any thing to be changed in the oracle types, is these synonyms creatiug the problem or whether the read and write Sql of java need to be changed?Please help on this.
Many Thanks.

Hi,
Herewith i have attached the sample java code for your reference.
connection = getConnection();
//Mapping TO's with Oracle SQL Types
map = connection.getTypeMap();
map.put(SapphireConstants.KEYVALUE_TY, KeyValueSQLTO.class);
map.put(SapphireConstants.ROLE_TY, RoleSQLTO.class);
map.put(SapphireConstants.SCREENS_TY, ScreensSQLTO.class);
map.put(SapphireConstants.MENUS_TY, MenusSQLTO.class);
map.put(SapphireConstants.WORKITEM_TY, WorkItemSQLTO.class);
connection.setTypeMap(map);
//Calling the procedure
callableStatement = connection.prepareCall(
"{call PKG_ADMIN.PROC_GET_ROLE_INFO(?,?,?,?)}");
//Setting the Procedure in out parameters.
callableStatement.setString(1, roleCode);
callableStatement.setString(2, userId);
callableStatement.setString(3, mode);
callableStatement.registerOutParameter(4, Types.STRUCT,
SapphireConstants.ROLE_TY);
callableStatement.execute();
objRoleSQLTO = (RoleSQLTO) callableStatement.getObject(4);
This is how we are invoking the procedure. Hope this would help you to analyse the issue.
KEYVALUE_TY and other TY's are the object types in oracle. Now these types are owned by CDSS_LIVE, and has public synonym with the same name and CDSS_USER access these types through synonyms.
Thanks

Similar Messages

  • Internal Error: inconsistent ADT attribute

    Hi there,
    I am using Stored Procedure on the Oracle side and return a geometry contains a point.
    and on the java side, I am using
    oracle.sql.STRUCT max_geom = (oracle.sql.STRUCT) outParams.get("max_geom");
    JGeometry geom = JGeometry.load((oracle.sql.STRUCT) outParams.get("max_geom")); -- this line give me Internal Error: inconsistent ADT attribute.
    The java code used to work with my data, and I am loading new data. I don't know if it's related to data or something else. The stored procedure works fine when I run it in toad.
    However, when I put debug statement there the max_geom is not null and it does have something in it.
    I got the same error msg even if I just want to do max_geom.getAttributes().length;
    I can print the value of max_geom.getLength() is 41.
    Please help
    Thanks
    Shawn

    Yes,
    I changed most of the cursor functions to cast(multiset()). Sometimes i divided a big query into two or three queries (when there was cursor nested in a cursor). It was one day work for me. Don't forget to change the tags with ROW to ITEM in your xsl-stylesheets.
    Uwe

  • Inconsistent ADT attribute

    I have two users(eg. db_user1 and db_user2) for a database. One user(db_user1) has all objects in that database. The other(db_user2) user has synonyms corresponding to those objects.
    I am using oc4j server. when i configured the username to db_user1 in data-sources.xml and run the appln, it is running fine without exception.
    when i tried to use the username db_user2 and after restarting the server, when i ran the appln, it throwed an "inconsistent ADT attribute".
    --> nested java.sql.SQLException: Internal Error: inconsistent ADT attribute

    user520740,
    I'm only guessing, but I think you may not be able to use synonyms. I suggest prefixing references to the ADTs in your code with the schema owner (which is DB_USER1, no?).
    Good Luck,
    Avi.

  • When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported.  Is this a bug in Mavericks?

    When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported. 
    This happens not just with the SSD in my Mac Mini, but with another SSD in my MacBook (both now running Mavericks).  So far as I know, all of the kit I am using is in good order (despite the file corruption reports).  So I am beginning to wonder if it could be due to a bug in Mavericks?  Both SSD drives have been formatted to MacOS Extended (journaled) format.  Should I have used a different format, I wonder?
    Has anyone else encountered this issue?
    Does anyone have a solution?
    Or an explanation that might help my investigation of the issue?
    Thanks guys,

    I understand that the Corsair Force 3 is not one of the SSD drives that are supported on Apple Macs. 
    I did try downloading and using Trim Enabler, but the error message came up both when it was off and when it was on.
    I understand that not everyone thinks Trim Enabler is a good program, though there is a new version out now, so I may give it another try.

  • Field Attribute Error

    Hi All,
    i am working on a upgrade project from 46c to ECC 6.
    we are facing field attribute error "No write access to reference CONTROL takes place".
    the error is been pointed in data declaration ' DATA: CONTROL  TYPE REF TO I_OI_OLE_CONTAINER_CONTROL."
    can anyone suggest solution for this?

    Hi,
    I am using table element, I would like to explain my problem with an example.
    now suppose there are 5 rows and 3 columns in my table element with all the fields mandatory, and at runtime i fill up the table columns while keeping any fields empty. Now my requirement is to highlight those perticular cells which are empty.
    I have written my validation code in one of the component controller method.
    Pls suggest.
    I am pasting teh code snippet.
    * get all declared attributes
      node_t_bknvi->get_static_attributes_table(
        IMPORTING
          table = tabl_t_bknvi ).
      LOOP AT tabl_t_bknvi INTO stru_t_bknvi.
        IF stru_t_bknvi-taxkd IS INITIAL.
    *     report message
          CALL METHOD l_message_manager->report_attribute_error_message
            EXPORTING
              message_text   = 'Input Required Fields'
              element        = elem_t_bknvi
              attribute_name = 'TAXKD'
    *        PARAMS         =
    *        MSG_USER_DATA  =
        ENDIF.
      ENDLOOP.

  • User Attribute Error

    Dear All,
    A user was facing attiribute error while trying to approve shopping cart.
    The user had approved shopping carts earlier, but this problem has cropped in suddenly.
    I checked user consistency and repaired the user, all things seems to be fine.
    So I triggered org replication for that particular user position and then the problem got resolved,
    But however the user was not able to approve the shopping cart which was created prior to the user correction.
    the same attribute error happens again.
    Pls let me know how do i correct this.
    Regards
    harish

    Hi,
    Check If this happening with newly created SCs as well with same user after correction? If not then you might have to restart the WF of that particluar SC and retry with approval.
    Regards
    ~ Vipin

  • AD Recon Unknown Attribute error

    I am seeing an unknown attribute error when doing an AD Target recon.
    oracle.iam.reconciliation.exception.ReconciliationException: Exception occurred while inserting data into table RA_ADUSER7 due to RA_ADUSER7 : [null]
    Caused By: oracle.iam.platform.entitymgr.UnknownAttributeException: RA_ADUSER7 : [null]
    Please suggest.
    M

    Yes we created the recon profile. But it is still showing the errors. Here is the complete stack trace.
    <Apr 17, 2012 12:04:18 PM CDT> <Error> <oracle.iam.reconciliation.impl> <IAM-5010000> <Generic Error/Information: {0}
    oracle.iam.reconciliation.exception.ReconciliationException: Exception occurred while inserting data into table RA_ADUSER7 due to RA_ADUSER7 : [null]
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.reconEvent(ReconOperationsServiceImpl.java:285)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:189)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:212)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:201)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:197)
         at Thor.API.Operations.tcReconciliationOperationsIntfEJB.createReconciliationEventx(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor3621.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy521.createReconciliationEventx(Unknown Source)
         at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.createReconciliationEventx(tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.java:709)
         at sun.reflect.GeneratedMethodAccessor3629.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy167.createReconciliationEventx(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor3620.invoke(Unknown Source)
         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.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy513.createReconciliationEventx(Unknown Source)
         at Thor.API.Operations.tcReconciliationOperationsIntfDelegate.createReconciliationEvent(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processUserChange(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processBatch(Unknown Source)
         at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.searchResultPageEnum(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.performReconciliation(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.execute(Unknown Source)
         at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.execute(SchedulerBaseTask.java:384)
         at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:144)
         at sun.reflect.GeneratedMethodAccessor1927.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:196)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused By: oracle.iam.platform.entitymgr.UnknownAttributeException: RA_ADUSER7 : [null]
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:256)
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:239)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.reconEvent(ReconOperationsServiceImpl.java:278)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:189)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:212)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:201)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.createReconciliationEvent(ReconOperationsServiceImpl.java:197)
         at Thor.API.Operations.tcReconciliationOperationsIntfEJB.createReconciliationEventx(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor3621.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy521.createReconciliationEventx(Unknown Source)
         at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.createReconciliationEventx(tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.java:709)
         at sun.reflect.GeneratedMethodAccessor3629.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy167.createReconciliationEventx(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor3620.invoke(Unknown Source)
         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.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy513.createReconciliationEventx(Unknown Source)
         at Thor.API.Operations.tcReconciliationOperationsIntfDelegate.createReconciliationEvent(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processUserChange(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processBatch(Unknown Source)
         at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.searchResultPageEnum(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.performReconciliation(Unknown Source)
         at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.execute(Unknown Source)
         at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.execute(SchedulerBaseTask.java:384)
         at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:144)
         at sun.reflect.GeneratedMethodAccessor1927.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:196)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    >
    <Apr 17, 2012 12:04:18 PM CDT> <Error> <OIMCP.ADCS> <BEA-000000> <====================================================>
    <Apr 17, 2012 12:04:18 PM CDT> <Error> <OIMCP.ADCS> <BEA-000000> <com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask : processUserChange : Exception occurred while inserting data into table RA_ADUSER7 due to RA_ADUSER7 : [null] >
    <Apr 17, 2012 12:04:18 PM CDT> <Error> <OIMCP.ADCS> <BEA-000000> <====================================================
    >

  • Empty "KEY" attribute Error

    We have upgraded to BI Platform 4.1 Support Pack 3. We are seeing the following error when opening reports containing drill filters.
    Empty "KEY" attribute (Error: INF)
    Can anyone help with the solution?
    We get the following error message when we try to modify the report, which has error, in applet mode.
    com.businessobjects.rebean.internal.xml.XmlValidationException: Empty
    "KEY" attribute.
                      at
    com.businessobjects.rebean.wi.impl.xml.parser.DrillInfosParser.parseDrillObject(DrillInfosParser.java:148)
                      at
    com.businessobjects.rebean.wi.impl.xml.parser.DrillInfosParser.parseDrillHiers(DrillInfosParser.java:111)
                     at
    com.businessobjects.rebean.wi.impl.xml.parser.DrillInfosParser.parse(DrillInfosParser.java:54)
                      at
    com.businessobjects.rebean.wi.impl.services.ReportEngineDrillServiceImpl.getDrillDataFromServerCaller(ReportEngineDrillServiceImpl.java:780)
                      at
    com.businessobjects.rebean.wi.impl.services.ReportEngineDrillServiceImpl.getInternalDrillHierarchies(ReportEngineDrillServiceImpl.java:639)
                      at com.businessobjects.rebean.wi.impl.services.ReportEngineDrillServiceImpl.getDrillHierarchies(ReportEngineDrillServiceImpl.java:613)
                      at
    com.businessobjects.rebean.wi.impl.services.ReportEngineDrillServiceImpl.searchDrillFilterRSFromGetDrillInfo(ReportEngineDrillServiceImpl.java:246)
                      at
    com.businessobjects.rebean.wi.impl.services.ReportEngineDrillServiceImpl.getDrillFilters(ReportEngineDrillServiceImpl.java:199)
                      at
    com.sap.webi.ui.drill.DrillBar.BuildDrillBar(DrillBar.java:432)
                      at
    com.sap.webi.ui.drill.DrillBar.UpdateComponents(DrillBar.java:617)
                      at
    com.sap.webi.ui.drill.DrillBar.updateAll(DrillBar.java:341)
                     at
    com.sap.webi.ui.drill.DrillBar.eventBusProcessNewMessage(DrillBar.java:305)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.dispatchEvent(EventBus.java:324)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.sendMessage(EventBus.java:61)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.sendDefaultMessage(EventBus.java:87)
                      at
    com.sap.webi.ui.tasks.NavigOnDocumentTask.doneProcess(NavigOnDocumentTask.java:142)
                      at com.sap.webi.toolkit.ui.tasks.WebITask$PrivateWorker.done(WebITask.java:378)
                      at
    javax.swing.SwingWorker$5.run(Unknown Source)
                      at
    javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.run(Unknown Source)
                      at
    sun.swing.AccumulativeRunnable.run(Unknown Source)
                      at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.actionPerformed(Unknown
    Source)
                      at
    javax.swing.Timer.fireActionPerformed(Unknown Source)
                      at
    javax.swing.Timer$DoPostEvent.run(Unknown Source)
                      at
    java.awt.event.InvocationEvent.dispatch(Unknown Source)
                      at
    java.awt.EventQueue.dispatchEventImpl(Unknown Source)
                      at
    java.awt.EventQueue.access$000(Unknown Source)
                      at
    java.awt.EventQueue$1.run(Unknown Source)
                      at
    java.awt.EventQueue$1.run(Unknown Source)
                      at
    java.security.AccessController.doPrivileged(Native Method)
                      at
    java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
                      at
    java.awt.EventQueue.dispatchEvent(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
                      at
    java.awt.Dialog$1.run(Unknown Source)
                      at
    java.awt.Dialog$3.run(Unknown Source)
                      at
    java.security.AccessController.doPrivileged(Native Method)
                      at java.awt.Dialog.show(Unknown
    Source)
                      at
    com.jidesoft.dialog.StandardDialog.show(Unknown Source)
                      at
    java.awt.Component.show(Unknown Source)
                      at
    java.awt.Component.setVisible(Unknown Source)
                      at
    java.awt.Window.setVisible(Unknown Source)
                      at
    java.awt.Dialog.setVisible(Unknown Source)
                      at
    com.sap.webi.toolkit.ui.dialog.MessageDialog.setVisible(MessageDialog.java:186)
                      at
    com.sap.webi.ui.SwingClientHelper.showError(SwingClientHelper.java:347)
                      at
    com.sap.webi.ui.SwingClientHelper.showError(SwingClientHelper.java:198)
                      at
    com.sap.webi.ui.SwingClientHelper.showError(SwingClientHelper.java:205)
                      at
    com.sap.webi.ui.SwingClientHelper.showError(SwingClientHelper.java:188)
                      at
    com.sap.webi.ui.drill.DrillBar.BuildDrillBar(DrillBar.java:435)
                      at
    com.sap.webi.ui.drill.DrillBar.UpdateComponents(DrillBar.java:617)
                      at
    com.sap.webi.ui.drill.DrillBar.updateAll(DrillBar.java:341)
                      at
    com.sap.webi.ui.drill.DrillBar.eventBusProcessNewMessage(DrillBar.java:321)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.dispatchEvent(EventBus.java:324)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.sendMessage(EventBus.java:61)
                      at
    com.sap.webi.toolkit.ui.eventbus.EventBus.sendDefaultMessage(EventBus.java:87)
                      at
    com.sap.webi.toolkit.ui.eventbus.ContextEventBus.sendDefaultMessageOnEventBus(ContextEventBus.java:23)
                      at
    com.sap.webi.ui.tasks.workflows.RefreshWorkspaceWorkflow.onFinish(RefreshWorkspaceWorkflow.java:131)
                      at
    com.sap.webi.toolkit.ui.tasks.TaskWorkflow.startNextTask(TaskWorkflow.java:71)
                      at
    com.sap.webi.toolkit.ui.tasks.TaskWorkflow.propertyChange(TaskWorkflow.java:90)
                      at
    java.beans.PropertyChangeSupport.firePropertyChange(Unknown Source)
                      at
    com.sap.webi.toolkit.ui.tasks.WebITask.firePropertyChange(WebITask.java:66)
                      at
    com.sap.webi.toolkit.ui.tasks.WebITaskManager$TaskPCL.propertyChange(WebITaskManager.java:275)
                      at
    java.beans.PropertyChangeSupport.firePropertyChange(Unknown Source)
                      at
    javax.swing.SwingWorker$SwingWorkerPropertyChangeSupport.firePropertyChange(Unknown
    Source)
                      at
    javax.swing.SwingWorker$SwingWorkerPropertyChangeSupport$1.run(Unknown Source)
                      at
    javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.run(Unknown Source)
                     at
    sun.swing.AccumulativeRunnable.run(Unknown Source)
                      at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.actionPerformed(Unknown
    Source)
                      at
    javax.swing.Timer.fireActionPerformed(Unknown Source)
                      at
    javax.swing.Timer$DoPostEvent.run(Unknown Source)
                      at
    java.awt.event.InvocationEvent.dispatch(Unknown Source)
                      at java.awt.EventQueue.dispatchEventImpl(Unknown
    Source)
                      at
    java.awt.EventQueue.access$000(Unknown Source)
                      at
    java.awt.EventQueue$1.run(Unknown Source)
                      at
    java.awt.EventQueue$1.run(Unknown Source)
                      at
    java.security.AccessController.doPrivileged(Native Method)
                      at
    java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
                      at
    java.awt.EventQueue.dispatchEvent(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEvents(Unknown Source)
                      at
    java.awt.EventDispatchThread.pumpEvents(Unknown Source)
                      at
    java.awt.EventDispatchThread.run(Unknown Source)

    I had the same problem. I saved my batch and it gave me that same error: "You must enter a name for this batch submission. This is the name that identifies this submission in the Batch Monitor and the History window."
    What I did was to create a second batch (another tab in the batch window) I left this one "untitled" (did not save it) then submitted it -and it worked. I named the job and it is happily chewing away.
    Not pretty, but it worked.

  • Attribute error while creating shopping cart in portal

    Hi,
    We are using SRM 7.0 . While creating shopping cart in portal , I am getting error " the attribute of the user are inconsistent or not defined. See transaction ppoma_bbp "
    I have maintained attributes of ACS,BSA,BUK,BWA,CUR,KNT,WGR & WRK . Done attribute check in BBP_ATTR_CHECK, it issued warning message for CAT attribute. All other attributes are Ok.
    Could anybody help to resolve this.
    Regards
    Ayyappan

    HI
    Step 1: Check the consistency of the User for Shopping Cart using Transaction BBP_CHECK_CONSISTENCY. THis will give you a snapshot of what is missing in user's attributes for creating a SC.
    Step 2. Go to PPOMA_BBP and note down the Position id and CP id of the user. Then check the consistency of these objects using BBP_BP_OM_INTEGRATE.
    It seems the combination of attributes is not in right place for this user
    Regards
    Virender Singh

  • How to resolve attribute errors

    Hi,
    When I am trying to click on an lov item I am getting the following error
    Attribute TransactionTypeId in CreateArInvoiceAM.CljReceivableSlipsEOVO1 is required
    I would get the TransactionTypeId only when I select an item from the lov but before selecting the lov itself I am getting this error.Can anyone tell me how to resolve this error.
    Thanks for your help in advance.

    Do you have any open method invocation in the processFromRequest? Just start the debugger and see how is the code progressing. Seems some method is getting invoked unintentionally.

  • Lock NOT set for: Loading master data attributes error

    Hi experts,
    We were encountering this error before when trying to load master data.  When we checked the system we could not find any locks at the time, and activation or kicking off the attribute change run failed again.  We finally solved the problem running FM RSDDS_AGGR_MOD_CLOSE which sets the close flag to 'X' in table RSDDAGGRMODSTATE.  I have read that it is possible this lock error happens when two change runs happen at the same time.
    My question are:
    1. is it possible to find out what process exactly "caused" the lock? the table RSDDAGGRMODSTATE does not have a reference to any object or job. I am curious as we are trying to find ways to avoid this in the future...
    2. in our case, when we could not find any locks, is running this fm the only work around? is this a best practice?
    mark
    Message was edited by:
            Mark Siongco
    Message was edited by:
            Mark Siongco

    Hello Catherine
    I have had this problem in the past (3.0B) --> the reason is that our system was too slow and could not crunch the data fast enough, therefore packets where loacking each other.
    The fix: load the data into the PSA only, and then send it in background from the PSA to the info object. By doing this, only a background process will run, therefore locks cannot happen.
    Fix#2: by a faster server (by faster, I mean more CPU power)
    Now, maybe you have another issue with NW2004s, this was only my 2 cents quick thought
    Good luck!
    Ioan

  • Getting Inconsistent catalog view error  while invoking OCI.

    Hi,
    I am using OCI calls in my java application for communicating with the Oracle database. I am facing a problem while invoking the function "CHANGE_PACKAGE".
    The problem that i'm facing is:
    e :
    java.sql.SQLException: Internal Error: Inconsistent catalog view
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.sql.StructDescriptor.initMetaData1_9_0(StructDescriptor.java:1838)
         at oracle.sql.StructDescriptor.initMetaData1(StructDescriptor.java:1782)
         at oracle.sql.StructDescriptor.isInstantiable(StructDescriptor.java:1027)
         at oracle.sql.STRUCT.<init>(STRUCT.java:126)
         at com.comviva.irancell.test.LoyaltyService.main(LoyaltyService.java:273)
    Description of the function is as follows:
    Oracle Function Script
    CREATE OR REPLACE FUNCTION CHANGE_PACKAGE
    I_CHANGE_PACKAGE IN TI_CHANGE_PACKAGE,
    O_CHANGE_PACKAGE OUT T_ABILLITY_OUTPUT
    RETURN NUMBER;
    CREATE OR REPLACE TYPE TI_CHANGE_PACKAGE
    UNDER T_ENTITY_ID
    PACKAGE_CODE VARCHAR (7),
    REASON_CODE VARCHAR2(10)
    CREATE OR REPLACE TYPE T_ENTITY_ID
    UNDER T_ABILLITY_INPUT
    ENTITY_ID NUMBER(16)
    ) NOT FINAL;
    CREATE OR REPLACE TYPE T_ABILLITY_INPUT AS OBJECT
    EXTERNAL_USER VARCHAR2(255),
    EXTERNAL_APPLICATION VARCHAR2(255),
    EXTERNAL_REFERENCE VARCHAR2(30)
    ) NOT FINAL;
    Below is the piece of code which i tried:
    StructDescriptor structdesc = StructDescriptor.createDescriptor("TI_CHANGE_PACKAGE", con);
    Object[] obj = new Object[structdesc.getLength()];
    obj[0] = new String("ussdapp");
    obj[1] = new String("ussdapp");
    obj[2] = new String("12345");
    obj[3] = new BigDecimal("123456789");
    obj[4] = new String("test");
    obj[5] = new String("test");
    oracle.sql.STRUCT inputobj = new oracle.sql.STRUCT(structdesc, con, obj);
    cstmt.setObject(2, obj, OracleTypes.STRUCT);
    cstmt.registerOutParameter(3, OracleTypes.STRUCT, sql_type_name);
    i'm facing the problem in the line:
    oracle.sql.STRUCT inputobj = new oracle.sql.STRUCT(structdesc, con, obj);
    Please help me out regarding this, Since i have to deliver this application on friday
    Thanks in Advance,
    Sucheth

    why are you passing the object array in the problem line.

  • FRM-41011: Undentified Attribute error in forms 6i

    Using this code:
    Set_Item_Instance_Property('payments.payment_due',To_Number(:SYSTEM.CURSOR_RECORD),VISUAL_ATTRIBUTE,'red');
    I am trying to set a field to RED text. If it meets a specific condition.
    But for some reason, I keep getting that above error.
    Thanks in advance

    Do you actually have a visual attribute named 'red' in your form? I suppose not. If so, you should first define the visual_attribute named 'red' in order to use it. RTM for visual attributes!
    Best of luck!

  • Inconsistent data types error

    I have a query in the VO. No matter what i write, i get the below error.
    java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
    No matter what i do, i get this error.
    The query in the VO is as below
    select * from hr_all_positions_f
    where trunc(sysdate) between trunc(effective_start_Date) and trunc(effective_end_date)
    Please advice.
    Thanks

    your query works perfectly in sql developer...
    as suggested by kumar expand your columns instead of using *
    Also check the data types dynamic where clause if any.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                           

  • BP User Defined Attributes -- Error

    Hi experts!!
    The customer i am working on needed some extra fields on the Accounts screen page, so i defined all User Defiened Attributes from 1 to 10 and added them from the Node MARKETING of the component BP_HEAD.
    When i try to save the Account (after filling one of the attributes) I get the following error msg: Classification data is already maintained for business partner.
    The Account can be saved and replicated to the ERP if the attributes remain empty.
    What am i missing here???
    Is there a connection between the attributes and account classification ??
    Thank you in advance

    The error was fixed with Note 1271004.
    BUT .. now when i Save the Account with User Defined Attributes filled the replication to ERP does not happen..
    If the attributes are empty it gets replicated.
    Any ideas???
    Please help!!

Maybe you are looking for

  • Need help connecting a wireless laptop

    hi can someone help me i am trying to connect a Dell Latitude D820 to a Linksys WRT54G5 everytime i try to connect wireless to it i get internet for 2minutes then i keep getting disconnected. Can someone help me or think of anything that could be wro

  • Dynamic Columns in BI Report

    Hi, In my report i have dynamic columns and i am achieving this using <?split-column-header:header?> , <?split-column-data:variable?> I need to define width for the dynamically created columns. How do i achieve this. i have seen <?split-column-width:

  • Any way of upgrading Powerbook G4 to USB 2.0?

    I have a Powerbook G4 Titanium and i just have the 1.1 USB ports is there any way to upgrade the USB ports to 2.0 ?

  • PSU level of RMAN Catalog DB version and Target DBs

    Catalog DB Version: 11.2.0.2.3 Target DBs : 11.2.0.2.3 Currently our Catalog DB and Target DBs ( 15 of them) are of the same PSU level. We are going to apply PSU 5 (11.2.0.2.3) on some of the target DBs . Should we apply PSU 5 (11.2.0.2.3) on the Cat

  • Backup/Restore tools for clients using WAP

    What database and file backup tools are people using to give clients access to make their own databases and websites? The same question goes for giving them the ability restore databases to the servers? Simon Holman Expeed Technology Australian Web H