Display of the name and save the value in the database for a LOV

Hi Experts,

JDEV 12 C,

I have a requirement where I need to show the name of the project in the user interface and save the project in DB Id.

I've had two articles as below: -.

http://husaindalal.blogspot.in/2010/03/lov-displaying-name-and-storing-value.html

https://blogs.Oracle.com/ADF/entry/combo_lov_how_to_display

I did the procedure below.

I have a ProjectId attribute in my VO.

Created a transient ProjectName attribute, passivation = true editable = always.

Created a ViewAccessor on the MainVO.

Created a LOV on ProjectName ProjectName mapped in the configuration to the accessor of the view section with ProjectId.

Changed the ViewRowImpl.java.

I get the error when you run the below request form.

public String getProjectName() {}

Object projectId = getAttributeInternal (PROJECTID);

String projectName = null;

If (projectId! = null) {}

Object [] obj = {projectId};

Key = new Key (obj);

Line lines [] = getProjectsVO1 () .findByKey (key, 1);

If (rows! = null & & rows.length > 0) {}

projectName = (String) rows [0] .getAttribute (1);

}

}

back to projectName.

}

When AM running I get the below error.

oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NullPointerException, msg = null

at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:421)

at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:483)

at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:144)

to oracle.jbo.jbotester.panel.BindingPanel. < init > (BindingPanel.java:108)

to oracle.jbo.jbotester.panel.BindingPanel. < init > (BindingPanel.java:81)

at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:90)

at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:166)

to oracle.jbo.jbotester.form.JTForm. < init > (JTForm.java:77)

to oracle.jbo.jbotester.form.BindingForm. < init > (BindingForm.java:77)

to oracle.jbo.jbotester.form.FormType$ 1.createForm(FormType.java:78)

at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:236)

at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:307)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:285)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:244)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:240)

at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:149)

at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:132)

at oracle.jbo.jbotester.tree.Tree.processTreeMouseClicked(Tree.java:742)

in oracle.jbo.jbotester.tree.Tree.access$ 100 (Tree.java:98)

to oracle.jbo.jbotester.tree.Tree$ TreeMouseListener.mouseClicked (Tree.java:152)

at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:270)

at java.awt.Component.processMouseEvent(Component.java:6508)

at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)

at java.awt.Component.processEvent(Component.java:6270)

at java.awt.Container.processEvent(Container.java:2229)

at java.awt.Component.dispatchEventImpl(Component.java:4861)

at java.awt.Container.dispatchEventImpl(Container.java:2287)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)

at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4501)

at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)

at java.awt.Container.dispatchEventImpl(Container.java:2273)

at java.awt.Window.dispatchEventImpl(Window.java:2719)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)

at $200 (EventQueue.java:103) java.awt.EventQueue.access

in java.awt.EventQueue$ 3.run(EventQueue.java:694)

in java.awt.EventQueue$ 3.run(EventQueue.java:692)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:87)

in java.awt.EventQueue$ 4.run(EventQueue.java:708)

in java.awt.EventQueue$ 4.run(EventQueue.java:706)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)

at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)

at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)

at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

Caused by: java.lang.NullPointerException

at oracle.jbo.uicli.jui.JULovButtonBinding.getDisplayAttrValue(JULovButtonBinding.java:1509)

at oracle.jbo.uicli.jui.JULovButtonBinding.buildDisplayValue(JULovButtonBinding.java:1493)

to oracle.jbo.uicli.controls.JULovEditButton$ TextFieldBinding.setValueAt (JULovEditButton.java:186)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.refreshControl(JUCtrlAttrsBinding.java:245)

at oracle.jbo.uicli.jui.JULovButtonBinding.refreshControl(JULovButtonBinding.java:1228)

at oracle.jbo.jbotester.app.FieldFactory.createField(FieldFactory.java:222)

at oracle.jbo.jbotester.app.FieldFactory.createField(FieldFactory.java:147)

at oracle.jbo.jbotester.panel.BindingPanel.createField(BindingPanel.java:178)

at oracle.jbo.jbotester.panel.CardPanel.showAttributeDefs(CardPanel.java:227)

at oracle.jbo.jbotester.panel.CardPanel.showAttributeDefs(CardPanel.java:185)

to oracle.jbo.jbotester.panel.CardPanel. < init > (CardPanel.java:114)

to oracle.jbo.jbotester.panel.CardPanel. < init > (CardPanel.java:103)

at oracle.jbo.jbotester.panel.RowSetPanel.showCard(RowSetPanel.java:237)

at oracle.jbo.jbotester.panel.RowSetPanel.setIterator(RowSetPanel.java:107)

at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:141)

... more than 49

# # 0 in detail

java.lang.NullPointerException

at oracle.jbo.uicli.jui.JULovButtonBinding.getDisplayAttrValue(JULovButtonBinding.java:1509)

at oracle.jbo.uicli.jui.JULovButtonBinding.buildDisplayValue(JULovButtonBinding.java:1493)

to oracle.jbo.uicli.controls.JULovEditButton$ TextFieldBinding.setValueAt (JULovEditButton.java:186)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.refreshControl(JUCtrlAttrsBinding.java:245)

at oracle.jbo.uicli.jui.JULovButtonBinding.refreshControl(JULovButtonBinding.java:1228)

at oracle.jbo.jbotester.app.FieldFactory.createField(FieldFactory.java:222)

at oracle.jbo.jbotester.app.FieldFactory.createField(FieldFactory.java:147)

at oracle.jbo.jbotester.panel.BindingPanel.createField(BindingPanel.java:178)

at oracle.jbo.jbotester.panel.CardPanel.showAttributeDefs(CardPanel.java:227)

at oracle.jbo.jbotester.panel.CardPanel.showAttributeDefs(CardPanel.java:185)

to oracle.jbo.jbotester.panel.CardPanel. < init > (CardPanel.java:114)

to oracle.jbo.jbotester.panel.CardPanel. < init > (CardPanel.java:103)

at oracle.jbo.jbotester.panel.RowSetPanel.showCard(RowSetPanel.java:237)

at oracle.jbo.jbotester.panel.RowSetPanel.setIterator(RowSetPanel.java:107)

at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:141)

to oracle.jbo.jbotester.panel.BindingPanel. < init > (BindingPanel.java:108)

to oracle.jbo.jbotester.panel.BindingPanel. < init > (BindingPanel.java:81)

at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:90)

at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:166)

to oracle.jbo.jbotester.form.JTForm. < init > (JTForm.java:77)

to oracle.jbo.jbotester.form.BindingForm. < init > (BindingForm.java:77)

to oracle.jbo.jbotester.form.FormType$ 1.createForm(FormType.java:78)

at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:236)

at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:307)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:285)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:244)

at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:240)

at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:149)

at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:132)

at oracle.jbo.jbotester.tree.Tree.processTreeMouseClicked(Tree.java:742)

in oracle.jbo.jbotester.tree.Tree.access$ 100 (Tree.java:98)

to oracle.jbo.jbotester.tree.Tree$ TreeMouseListener.mouseClicked (Tree.java:152)

at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:270)

at java.awt.Component.processMouseEvent(Component.java:6508)

at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)

at java.awt.Component.processEvent(Component.java:6270)

at java.awt.Container.processEvent(Container.java:2229)

at java.awt.Component.dispatchEventImpl(Component.java:4861)

at java.awt.Container.dispatchEventImpl(Container.java:2287)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)

at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4501)

at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)

at java.awt.Container.dispatchEventImpl(Container.java:2273)

at java.awt.Window.dispatchEventImpl(Window.java:2719)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)

at $200 (EventQueue.java:103) java.awt.EventQueue.access

in java.awt.EventQueue$ 3.run(EventQueue.java:694)

in java.awt.EventQueue$ 3.run(EventQueue.java:692)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:87)

in java.awt.EventQueue$ 4.run(EventQueue.java:708)

in java.awt.EventQueue$ 4.run(EventQueue.java:706)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)

at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)

at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)

at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

If I use the word groovy for ProjectName instead of the code in the VOrowImpl.java method

key oracle.jbo.Key = new oracle.jbo.Key (ProjectId);

Return ProjectsVVO1.findByKey (key, 1) [0] .getAttribute ("ProjectName");

I get below error: -.

Unexpected exception taken: org.codehaus.groovy.control.MultipleCompilationErrorsException, msg = startup failed:

General error during the semantic analysis: Houston-25152: calling the constructor for the class oracle.jbo.Key is not allowed.

oracle.jbo.ExprSecurityException: Houston-25152: calling the constructor for the class oracle.jbo.Key is not allowed.

at oracle.jbo.script.InternalSecurityPolicyEnforcer.checkConstructor(InternalSecurityPolicyEnforcer.java:304)

at oracle.jbo.script.ExprASTScanningVisitor.visitConstructorCallExpression(ExprASTScanningVisitor.java:127)

at org.codehaus.groovy.ast.expr.ConstructorCallExpression.visit(ConstructorCallExpression.java:44)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitBinaryExpression(CodeVisitorSupport.java:144)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitDeclarationExpression(CodeVisitorSupport.java:245)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitDeclarationExpression(ClassCodeVisitorSupport.java:107)

at org.codehaus.groovy.ast.expr.DeclarationExpression.visit(DeclarationExpression.java:86)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitExpressionStatement(CodeVisitorSupport.java:69)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitExpressionStatement(ClassCodeVisitorSupport.java:193)

at org.codehaus.groovy.ast.stmt.ExpressionStatement.visit(ExpressionStatement.java:40)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitBlockStatement(CodeVisitorSupport.java:35)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitBlockStatement(ClassCodeVisitorSupport.java:163)

at org.codehaus.groovy.ast.stmt.BlockStatement.visit(BlockStatement.java:69)

at oracle.jbo.script.ExprASTScan.visit(ExprASTScan.java:97)

at sun.reflect.GeneratedMethodAccessor26.invoke (unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:606)

to org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite$ PojoCachedMethodSite.invoke (PojoMetaMethodSite.java:189)

at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite.call(PojoMetaMethodSite.java:53)

at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:45)

at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite.call(PojoMetaMethodSite.java:55)

at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:120)

at org.codehaus.groovy.control.customizers.ASTTransformationCustomizer.call(ASTTransformationCustomizer.groovy:232)

at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1036)

at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:572)

at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:550)

at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:527)

at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:279)

at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:258)

at groovy.lang.GroovyShell.parseClass(GroovyShell.java:613)

at groovy.lang.GroovyShell.parse(GroovyShell.java:625)

at groovy.lang.GroovyShell.parse(GroovyShell.java:652)

at oracle.jbo.ExprEval.parseScript(ExprEval.java:1571)

at oracle.jbo.ExprEval.findScript(ExprEval.java:1152)

at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1956)

at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1928)

at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:1647)

at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2486)

at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1947)

at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:2036)

at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:886)

at cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl.getProjectName(FcrDetailsVORowImpl.java:3177)

to cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl$ AttributesEnum$ 116.get(FcrDetailsVORowImpl.java:1186)

at cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl.getAttrInvokeAccessor(FcrDetailsVORowImpl.java:3219)

at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:916)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1248)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:798)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:826)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.refreshControl(JUCtrlAttrsBinding.java:245)

at oracle.jbo.uicli.jui.JULovButtonBinding.refreshControl(JULovButtonBinding.java:1228)

at oracle.jbo.jbotester.binding.BindingAdapter.refresh(BindingAdapter.java:73)

at oracle.jbo.jbotester.panel.CardPanel.refreshAll(CardPanel.java:138)

at oracle.jbo.jbotester.panel.RowSetPanel.refreshAll(RowSetPanel.java:203)

at oracle.jbo.jbotester.panel.RowSetPanel.navigated(RowSetPanel.java:155)

at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:267)

at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3732)

at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3703)

at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3486)

at oracle.jbo.server.ViewRowSetIteratorImpl.next(ViewRowSetIteratorImpl.java:1825)

at oracle.jbo.server.ViewRowSetImpl.next(ViewRowSetImpl.java:3882)

at oracle.jbo.server.ViewObjectImpl.next(ViewObjectImpl.java:11030)

at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1092)

at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2218)

at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:784)

at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)

at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:412)

at oracle.jbo.jbotester.app.NavigationBar.doAction(NavigationBar.java:140)

to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)

at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)

in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2341)

at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)

at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)

at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)

at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:289)

at java.awt.Component.processMouseEvent(Component.java:6505)

at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)

at java.awt.Component.processEvent(Component.java:6270)

at java.awt.Container.processEvent(Container.java:2229)

at java.awt.Component.dispatchEventImpl(Component.java:4861)

at java.awt.Container.dispatchEventImpl(Container.java:2287)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)

at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)

at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)

at java.awt.Container.dispatchEventImpl(Container.java:2273)

at java.awt.Window.dispatchEventImpl(Window.java:2719)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)

at $200 (EventQueue.java:103) java.awt.EventQueue.access

in java.awt.EventQueue$ 3.run(EventQueue.java:694)

in java.awt.EventQueue$ 3.run(EventQueue.java:692)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:87)

in java.awt.EventQueue$ 4.run(EventQueue.java:708)

in java.awt.EventQueue$ 4.run(EventQueue.java:706)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)

at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)

at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)

at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

1 error

: failed to start:

General error during the semantic analysis: Houston-25152: calling the constructor for the class oracle.jbo.Key is not allowed.

oracle.jbo.ExprSecurityException: Houston-25152: calling the constructor for the class oracle.jbo.Key is not allowed.

at oracle.jbo.script.InternalSecurityPolicyEnforcer.checkConstructor(InternalSecurityPolicyEnforcer.java:304)

at oracle.jbo.script.ExprASTScanningVisitor.visitConstructorCallExpression(ExprASTScanningVisitor.java:127)

at org.codehaus.groovy.ast.expr.ConstructorCallExpression.visit(ConstructorCallExpression.java:44)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitBinaryExpression(CodeVisitorSupport.java:144)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitDeclarationExpression(CodeVisitorSupport.java:245)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitDeclarationExpression(ClassCodeVisitorSupport.java:107)

at org.codehaus.groovy.ast.expr.DeclarationExpression.visit(DeclarationExpression.java:86)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitExpressionStatement(CodeVisitorSupport.java:69)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitExpressionStatement(ClassCodeVisitorSupport.java:193)

at org.codehaus.groovy.ast.stmt.ExpressionStatement.visit(ExpressionStatement.java:40)

at org.codehaus.groovy.ast.CodeVisitorSupport.visitBlockStatement(CodeVisitorSupport.java:35)

at org.codehaus.groovy.ast.ClassCodeVisitorSupport.visitBlockStatement(ClassCodeVisitorSupport.java:163)

at org.codehaus.groovy.ast.stmt.BlockStatement.visit(BlockStatement.java:69)

at oracle.jbo.script.ExprASTScan.visit(ExprASTScan.java:97)

at sun.reflect.GeneratedMethodAccessor26.invoke (unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:606)

to org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite$ PojoCachedMethodSite.invoke (PojoMetaMethodSite.java:189)

at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite.call(PojoMetaMethodSite.java:53)

at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:45)

at org.codehaus.groovy.runtime.callsite.PojoMetaMethodSite.call(PojoMetaMethodSite.java:55)

at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:120)

at org.codehaus.groovy.control.customizers.ASTTransformationCustomizer.call(ASTTransformationCustomizer.groovy:232)

at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1036)

at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:572)

at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:550)

at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:527)

at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:279)

at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:258)

at groovy.lang.GroovyShell.parseClass(GroovyShell.java:613)

at groovy.lang.GroovyShell.parse(GroovyShell.java:625)

at groovy.lang.GroovyShell.parse(GroovyShell.java:652)

at oracle.jbo.ExprEval.parseScript(ExprEval.java:1571)

at oracle.jbo.ExprEval.findScript(ExprEval.java:1152)

at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1956)

at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1928)

at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:1647)

at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2486)

at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1947)

at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:2036)

at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:886)

at cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl.getProjectName(FcrDetailsVORowImpl.java:3177)

to cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl$ AttributesEnum$ 116.get(FcrDetailsVORowImpl.java:1186)

at cfa.fcr.uimodel.workqueue.adfbc.view.FcrDetailsVORowImpl.getAttrInvokeAccessor(FcrDetailsVORowImpl.java:3219)

at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:916)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1248)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:798)

at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:826)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)

at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.refreshControl(JUCtrlAttrsBinding.java:245)

at oracle.jbo.uicli.jui.JULovButtonBinding.refreshControl(JULovButtonBinding.java:1228)

at oracle.jbo.jbotester.binding.BindingAdapter.refresh(BindingAdapter.java:73)

at oracle.jbo.jbotester.panel.CardPanel.refreshAll(CardPanel.java:138)

at oracle.jbo.jbotester.panel.RowSetPanel.refreshAll(RowSetPanel.java:203)

at oracle.jbo.jbotester.panel.RowSetPanel.navigated(RowSetPanel.java:155)

at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:267)

at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigationToRow(ViewRowSetIteratorImpl.java:3732)

at oracle.jbo.server.ViewRowSetIteratorImpl.notifyNavigation(ViewRowSetIteratorImpl.java:3703)

at oracle.jbo.server.ViewRowSetIteratorImpl.internalSetCurrentRow(ViewRowSetIteratorImpl.java:3486)

at oracle.jbo.server.ViewRowSetIteratorImpl.next(ViewRowSetIteratorImpl.java:1825)

at oracle.jbo.server.ViewRowSetImpl.next(ViewRowSetImpl.java:3882)

at oracle.jbo.server.ViewObjectImpl.next(ViewObjectImpl.java:11030)

at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1092)

at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2218)

at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:784)

at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)

at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:412)

at oracle.jbo.jbotester.app.NavigationBar.doAction(NavigationBar.java:140)

to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)

at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)

in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2341)

at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)

at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)

at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)

at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:289)

at java.awt.Component.processMouseEvent(Component.java:6505)

at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)

at java.awt.Component.processEvent(Component.java:6270)

at java.awt.Container.processEvent(Container.java:2229)

at java.awt.Component.dispatchEventImpl(Component.java:4861)

at java.awt.Container.dispatchEventImpl(Container.java:2287)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)

at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)

at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)

at java.awt.Container.dispatchEventImpl(Container.java:2273)

at java.awt.Window.dispatchEventImpl(Window.java:2719)

at java.awt.Component.dispatchEvent(Component.java:4687)

at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)

at $200 (EventQueue.java:103) java.awt.EventQueue.access

in java.awt.EventQueue$ 3.run(EventQueue.java:694)

in java.awt.EventQueue$ 3.run(EventQueue.java:692)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:87)

in java.awt.EventQueue$ 4.run(EventQueue.java:708)

in java.awt.EventQueue$ 4.run(EventQueue.java:706)

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

in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)

at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)

at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)

at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)

at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

1 error

Thank you

Roy

Try this also on the actual page (to remove some bug in AM tester)

About the Houston-25152 error: call the constructor for the class oracle.jbo.Key is not allowed.  See this thread: Jdev 12.1.3: Houston-25152: call the constructor of class oracle.jbo.server.SequenceImpl is not allowed (WITH HR TEST CASE!)

Dario

Tags: Java

Similar Questions

  • How to check if the database for DRDA gateway is installed and configured.

    Hi all

    How can we check if the database for DRDA gateway is installed and configured.

    Our operating system is AIX 5 L 64 bit OS.
    RDBMS: 11.2.0.3

    Kind regards

    Duplicated
    How to check if the database for DRDA gateway is installed and configured.

    + - locked thread-+.

    Nicolas.

  • I did not use my PC for a while and have forgotten my user name and password. It is now necessary for me to install software on this PC, but need to log-in to do this

    Original title: Log-in question

    I did not use my PC for a while and have forgotten my user name and password.  It is now necessary for me to install software on this PC, but need to log-in to do this.  How can I better log-int?

    The software is now located on my desktop but cannot be put to use; apparently because it is not installed in a suitable place in my computer.  Using the Guest login does not work since the installation of this software is not allowed in the comments section.  Your ideas will be appreciated.

    Hello

    What account are you connected to? Administrator or guest account?

    See the following article: Microsoft's strategy concerning lost or forgotten passwords

  • How to check the growth of the database for a database on ASM?

    Hello

    I have been using the following script to check the growth of the database (for DBs on file system):
    SELECT b.tsname tablespace_name ,
      MAX(b.used_size_mb) cur_used_size_mb ,
      ROUND(AVG(inc_used_size_mb),2)avg_increas_mb
    FROM
      (SELECT a.days,
        a.tsname ,
        used_size_mb ,
        used_size_mb - LAG (used_size_mb,1) OVER ( PARTITION BY a.tsname ORDER BY a.tsname,a.days) inc_used_size_mb
      FROM
        (SELECT TO_CHAR(sp.begin_interval_time,'MM-DD-YYYY') days ,
          ts.tsname ,
          MAX(ROUND((tsu.tablespace_usedsize* dt.block_size )/(1024*1024),2)) used_size_mb
        FROM dba_hist_tbspc_space_usage tsu ,
          dba_hist_tablespace_stat ts ,
          dba_hist_snapshot sp,
          dba_tablespaces dt
        WHERE tsu.tablespace_id    = ts.ts#
        AND tsu.snap_id            = sp.snap_id
        AND ts.tsname              = dt.tablespace_name
        AND sp.begin_interval_time > sysdate-7
        GROUP BY TO_CHAR(sp.begin_interval_time,'MM-DD-YYYY'),
          ts.tsname
        ORDER BY ts.tsname,
          days
        ) a
      ) b
    GROUP BY b.tsname
    ORDER BY b.tsname;
    And I think that he always gave me good results until I ran this script on a database (10.2.0.5) on ASM.

    Is it because the databases on the ASM are maintaied differently, OR do most proabbly there was no activity on this database in the last 7 days? I even ran this query for last 90/180 / day and it is me again after results:
    TABLESPACE_NAME                CUR_USED_SIZE_MB AVG_INCREAS_MB
    ------------------------------ ---------------- --------------
    SYSAUX                                   574.38            .36
    SYSTEM                                   514.69              0
    DATA                                    1593.25              0
    IDX                                         .06              0
    UNDOTBS1                                  69.06          -3.84
    USERS                                     96.13              0
    Thanks in advance!

    I have no reason to believe tablespaces under ASM are maintained differently, so the most likely explanation is the change in the activity of the DB.

    What is your AWR retention? The default value is 7 days, so if yours is set to the default value, and then by running the query for 90/180 days you would not give more information.

    If you want to get the output of your scripts, you may need to adjust the AWR retention and your tablespace SYSAUX respectively.

    If the DB is managed by Oracle Enterprise Manager (OEM), you can make tablespace forecast based on the measurements taken by the OEM. I did a presentation on this (NYOUG, VirtaThon) just now:
    http://iiotzov.files.WordPress.com/2011/08/iotzov_oem_repository.PDF
    http://iiotzov.files.WordPress.com/2012/05/OEM-repository-a-second-look.doc

    Lordane Iotzov

  • How to connect to the database for all reports EN

    Hello

    I've developed 100 reports in the client of the production, test purpose that I moved
    test client. How can I connect to the database for all reports at once?

    Concerning
    Thaer

    Hi Thaer,

    You can connect to the connection of database for all reports through the workspace of HFM.

    Connect to the HFM area--> click--> Explorer, and click Tools--> click Manager of database and respective connections of Production Instance to the Instance of Test required information and that you will be able to connect to the Test database for all reports both change.

    Kind regards
    Srikanth

  • A web application from merger can also run on Smartphones? So what of the database for mobile?

    Mr President.

    A web application from merger can also run on Smartphones? So what of the database for mobile?

    Concerning

    Any web application can run on smart phone because you access this browser so no need of database or application server on your mobile phone

    It's the same access to a Web site on mobile

    If you are talking about the mobile app

    check - http://www.oracle.com/technetwork/developer-tools/adf-mobile/overview/adfmobile-1917693.html

    Ashish

  • Get the names and form field values

    Hi everyone please help me

    I tried the following code, but it returns me the result as ("found no fields")

    I'm not able to reach my pdf here, I tried with a method more evenly, always it returns nothing.

    When I went through the Forum, I heard about LiveCycle Form. If my pdf is Livecycle form based so please give me the code to reterive the form fields names and values,

    method 1:

    ' / / Let's start

    Set WshShell = CreateObject ("Wscript.Shell")
    WshShell.run "c:\F4.pdf Acrobat.exe.
    While not WshShell.AppActivate ("Adobe Acrobat"): 1000 Wscript.Sleep: Wend


    ' / / Set/Get Acrobat objects
    The App value = CreateObject ("AcroExch.App")
    Set AVDoc = App.GetActiveDoc
    Set PDDoc = AVDoc.GetPDDoc
    Define the JSO = PDDoc.GetJSObject

    ' / / Search fields and extract the Name value +.
    txt = «»
    If jso.numFields then
    for i = 0 to jso.numFields-1
    FN = jso.getNthFieldName (i)
    ' msgbox (x)
    the value of f = jso.getField (fn)
    F.value = FV
    txt = txt & fn & "=" & fv & ";"
    next
    MsgBox (txt)
    on the other
    MsgBox ("no fields found")
    end if

    Set AVDOC = Nothing
    Set PDDoc = Nothing
    Define the JSO = Nothing

    Method2:

    MyFile = "C:\output.pdf".
    Set AcroExchApp = CreateObject ("AcroExch.App")
    Set AcExAVDoc = CreateObject ("AcroExch.AVDoc")
    bOK = AcExAVDoc.Open (myFile, "")
    AcExAVDoc.BringToFront

    sMsg = «»

    If (bOK) then
    Set AFormAut = CreateObject ("AFormAut.App")

    If AFormAut.Fields.Count = 0 Then
    sMsg = "No there there no field (s) to read this PDF file"
    On the other
    sMsg = "There are" & AFormAut.Fields.Count & "fields in this PDF document.
    End If


    For every FormField in AFormAut.Fields
    FieldName = FormField.Name
    FieldValue = FormField.Value
    ' MsgBox AFormAut.Fields (Fieldname). Value
    sMsg = sMsg & vbLf & "," & Fieldname & "," & AFormAut.Fields (Fieldname). Value & "," & FormField.IsTerminal
    MsgBox SMsg

    Looks like there is no form field.

    Could you please tell me, how we can attach files in this forum. While I will attach my Pdf file

    You can put the file on acrobat.com ( https://acrobat.com/ ).

  • How do I sort the rows of the table that belongs to the same name and save the .txt file?

    Hello

    I am facing a problem, I read the .txt file that has several lines and columns.

    Third column represents the name of the group, as Group 1, group 2 and group 3. attached .txt file in the annex.

    I wanted to generate the wise group .txt file, as all the raws that 3rd element name group 1 must be in a .txt file and all lines that has 3 name group 2 element must be a .txt file.

    I hope that I explained my problem.

    pelase guide me how can I have the solution for this problem.

    Thank you much in advance.

    Kind regards

    Ankit.

    I have provided a simple example that works.  Feel free to use any method best suited to your needs as there are already several good ideas on this thread

  • Support HBA (vSphere 5) and display of the adapters for storage in vSphere client

    Hi again,

    Some hosts that I am looking to upgrade from ESX 4.0 update 4 to ESXi 5 bear the name of FC HBA following listed under storage adapters, and I would like to see if they are compatible with ESXi 5.

    Focus on the ISP2432 4 Gb Fibre Channel to PCI Express HBA

    The actual servers themselves are servers Dell M600 blades. I would say that it's just what is listed in the section of storage cards (my guess is the name of the driver). The configurations of real system for M600 blades as they were purchased from Dell are listed as having HBA QLOGIC QME2472 FC4 HBA's PORT DOUBLE PC CARD adapters in them. These are listed as supported on ESXi 5. So I guess my question is more around - what is reported in the list of storage adapters more indication of the driver name for the HBA rather than the real exact device/model of the HBA? How can I make 100% sure that this is the exact material HBA model in my hosts? i.e. the QME2472? I can use Dell OpenManage but that lists what ESX reports cards like - which is the ISP2432 base of HBA. Is there something more low level, that I can use to see the material in ESX?

    See you soon,.

    Sean

    Yes, the HBA is supported on ESXi5.  You can always check the HCL for clarification

    Brand name Model Type of device Supported releases
    QLogic Focus on the ISP2432 4 Gb Fibre Channel to PCI Express HBA FC
    ESXi 5.0
    ESX / ESXi 4.1 U2
    ESX / ESXi 4.1 U1
    ESX / ESXi 4.1
    ESX 3.5 U5
    ESX 3.5 U4
    ESX 3.5 U3
    ESX 3.5 U2
    ESX 3.5 U1
    ESX 3.5
    ESXi 3.5 integrated U5
    ESXi 3.5 integrated U4
    ESXi 3.5 integrated U3
    ESXi 3.5 integrated U2
    ESXi 3.5 integrated U1
    ESXi 3.5 integrated
    ESXi 3.5 Installable U5
    ESXi 3.5 Installable U4
    ESXi 3.5 Installable U3
    ESXi 3.5 Installable U2
    ESXi 3.5 Installable U1
    ESXi 3.5 Installable
    ESX 3.0.3 U1
    ESX 3.0.3
    ESX 3.0.2 U1
    ESX 3.0.2
    ESX 3.0.1
    ESX 3.0
  • Create null values in the database for interactive report link column values

    Hello

    I'm pretty new to APEX and tries to create an interactive report with the form. This report examines essentially for more information for a particular employee. If the employee has any information in the table, the report presents information with a button change beside him. If there is no record in the table for this employee, a create button appears. Now when you click create, a new creation page. This page contains the employee number as a single display field with the value from the previous page. This value is displayed in the page, but it is not in the database. Create the page has view-only number and a couple of other columns. The other columns get inserted into the table with an empty number!

    Can someone please? Looks like the page keeps the value zero for the number of the employee who came during the search of the interactive report. Hope I made myself clear, being the newbie hope I haven't used any incorrect terminology.

    Thank you!
    Robet

    Without the DB column, apex will not determine which DB column the data in this field are mapped to (it would be quite impossible to guess the destination since the name of the element column).

    If you want to assign to the previous element of the page, use the default section

    return: P1_EMP_NUM

    By default the value Type: body of the PLSQL function

    and configure the attributes of source as I said before

  • Displayed as in PhotoShop and elsewhere, RGB values instead of percentages

    I'd rather see the RGB values displayed as in PhotoShop and elsewhere, instead of percentages. Is it possible to change this view?

    It seems not to be. I found threads, topics, dating back to 2009 on the same topic. Switch to proofing and values change to the actual numbers.

  • How to enlarge the display of the window for Microsoft LifeCam 3.5?

    When I open the program, the expanded window is only about 5 x 8 "and the display of the actual image is only 1.5 x 1.75".

    I was unable to discover any help to solve this problem.  I'm sure that it's simple, but I can't understand it.

    Hello Janet,.

     

    Don't troubleshoot bad or no video or problems to start the LifeCam software:

    http://support.Microsoft.com/kb/933310

    If you have any questions about Microsoft Harwares, please click this link:

    http://www.Microsoft.com/hardware/en-us/support/contact-us

    I hope this information helps!

  • Turn off the display on the screen for the next meetings

    I have several MX300s TC7.3.6 running.

    They are all registered to CUCM and TMS as the alternative directory server.

    Can you tell me how to disable the meetings to come, displayed on the screen?

    The MX800s have a field in CUCM for OSD - Todays booking power, but not the MX300s

    THX,

    Rob

    The command is there for the MX800 won't say he supports it, the TodaysBooking configuration is supported only on older codecs that perform TC software.  It isn't a way to disable the OSD indicator for future meetings, your only option is to use a custom wallpaper that will eliminate some parts of the OSD as the clock and the list of upcoming meetings.

  • BlackBerry Smartphones don't want my AOL Email to be displayed in the mailbox for MESSAGES

    I just the Verizon 8300.    I put it up to get my Inbox mail AOL mailbox.    Mail shows up in the "green" on the main screen mail envelope...     There is also a "mailbox" on the main screen.   This mailbox collects each voicecall, SMS AND email that I receive.    Then. I get email in BOTH places.    I don't want the email appears in the mailbox with text and voicecalls... I just want my email is displayed in the 'green' mail envelope

    So... does - anyone know how to program the 8300 'not' put my AOL mail in the Inbox mailbox messages?   I've messed around with almost all of the menus... trying to find a way... but no luck.

    Thank you

    On your BB device, you have a 'main' folder, which brings together all emails, messages, SMS, messages etc. POLES.

    It is as expected. You can delete SMS text messages in a separate folder (message > Menu > Options > General Options > scroll to SMS and Email inboxes and choose > separate.)

    You also have an AOL email inbox.  You can hide it, you really don't need.

  • Creation of the database for the HRMS 8.9 and 8.49 PT on SQL Server 2005

    Hello
    I have a problem when running database for HRMS 8.9 Wizard and 8.49 PT on SQL Server 2005. The wizard create the database, create and complete all tables but when trying to create the last display of the script produces this error

    Create view EO_MSGOWNRID_VW
    SQL mode: error 2: 16102
    End: Monday May 10 14:00:06 2009
    Unsuccessful end

    I reinstall HRMS database and run the wizard several times with the same result. I also install Service pack 3 to sql 2005 bu nothing...
    No idea what could be the problem?
    Thanks for the help
    Fernando

    user10990985 wrote:
    Hello
    I have a problem when running database for HRMS 8.9 Wizard and 8.49 PT on SQL Server 2005. The wizard create the database, create and complete all tables but when trying to create the last display of the script produces this error

    Create view EO_MSGOWNRID_VW
    SQL mode: error 2: 16102
    End: Monday May 10 14:00:06 2009
    Unsuccessful end

    The mistake is not on EO_MSGOWNRID_VW, but this point of view is the last of the build. You need to check the load log file and search for the string "SQL error" or something similar that indicate which view is currently in an error state. After your exit, two views creation failed.

    Nicolas.

Maybe you are looking for

  • How to resize the task bar to take advantage of the full screen

    original title: upgrade of the screen I can only use about 2/3 my screen because the bottom with the icons below have climbed about 3 inches.  What should I do to use the John full screen

  • Whenever I try to install these two windows automatic updates, I get the 8024200d error code

    I try to install the KB943411 and KB933928 updated, but I get the 8024200d error code. I'm running on Vista Ultimate (without SP1), and I do it through Windows Update.

  • Vista Premium fails to start on Dell 1525

    My dell 1525 was able to start a few days ago and I went through the recovery procedure and tried starting fix and he found nothing wrong.   but cannot start. Then I did the restore and it gave me aretablir point on which I used and it worked. Howeve

  • The end of the PlayBook?

    There are rumours in the British press that the production of PlayBook is about to stop PB got a very good review in PC Pro this month, finishing off with the comment that they are really good (9 / 10) and something you need to RUN to the store to bu

  • Method to reset the default ACL of support?

    In Windows 7 Professional x 64, is there a supported method to return all ACLs (access control lists) to their default settings that do not need to reinstall Windows? I ask because well-meaning Web sites advise to use subinacl or secedit for this. I