Problem: View Object with Multiple Updateable Dependent Entity Objects

I try to implement a ViewObject with 2 updateable entities based on the document:
http://www.oracle.com/technology/products/jdev/howtos/bc4j/multientityvo.html
But I get an early NullPointerException:
As written in the document I overriden the create method in the ViewObjectRowImpl class:
protected void create(AttributeList attributeList) {
// The BC4J framework will already have created "blank" entity instances
System.out.println(getClass().getName()+"create BEGIN");
LabEventTypeItemImpl newLabEventTypeItem = this.getLabEventTypeItem();
System.out.println(getClass().getName()+"create 1");
TariffItemImpl newTariffItem = this.getTariffItem();
System.out.println(getClass().getName()+"create 2");
try {
// Let department "blank" entity instance to do programmatic defaulting
newLabEventTypeItem.create(attributeList);
System.out.println(getClass().getName()+"create 3");
// Let employee "blank" entity instance to do programmatic defaulting
// passing in new DepartmentImpl instance so its attributes are
if (newTariffItem == null) // added trace
System.out.println(getClass().getName()+"create newTariffItem IS NULLLLL");
// available to the EmployeeImpl's create method.
newTariffItem.create(newLabEventTypeItem);
System.out.println(getClass().getName()+"create 4");
catch (JboException ex) {
if (newLabEventTypeItem != null)
newLabEventTypeItem.revert();
if (newTariffItem != null)
newTariffItem.revert();
throw ex;
catch (Exception otherEx) {
if (newLabEventTypeItem != null)
newLabEventTypeItem.revert();
if (newTariffItem != null)
newTariffItem.revert();
throw new RowCreateException(true /* EO Row? */,
"LabEventTypeItem" /* EO Name */,
otherEx /* Details */);
System.out.println(getClass().getName()+"create END");
The code:
TariffItemImpl newTariffItem = this.getTariffItem();
is equivalent in the example to:
EmployeeImpl newEmployee = getEmployee();
In my case this.getTariffItem() <=> getEmployee() returns null?
I get an Exception when I call:
newTariffItem.create(newLabEventTypeItem);
Equivalent to:
newEmployee.create(newDepartment);
ViewObject partial XML:
======================
<DesignTime>
<Attr Name="_isCodegen" Value="true" />
<Attr Name="_version" Value="10.1.2.17.96" />
<Attr Name="_codeGenFlag2" Value="Access|Coll|Msg" />
<Attr Name="_isExpertMode" Value="false" />
</DesignTime>
<EntityUsage
Name="LabEventTypeItem"
Entity="com.photoswing.model.lab.LabEventTypeItem" >
<DesignTime>
<Attr Name="_EntireObjectTable" Value="false" />
<Attr Name="_queryClause" Value="true" />
<Attr Name="_queryWhere" Value="(((LabEventTypeItem.LAB_EVENT_TYPE_ITEM_ID = TariffItem.LAB_EVENT_TYPE_ITEM_ID)AND (LabEventTypeItem.ITEM_ID = Item.ITEM_ID))AND (LabEventTypeItem.PRINT_SIZE_DPI_ID = PrintSizeDpi.PRINT_SIZE_DPI_ID(+)))AND (LabEventTypeItem.FILM_PRINT_SIZE_DPI_ID = FilmPrintSizeDpi.FILM_PRINT_SIZE_DPI_ID(+))" />
<Attr Name="_queryOrderBy" Value="Item.ITEM_TYPE_ID,PrintSizeDpi.REQ_MEGA_PIXELS,Item.ITEM_ID" />
</DesignTime>
</EntityUsage>
<EntityUsage
Name="TariffItem"
Entity="com.photoswing.model.lab.TariffItem"
Association="com.photoswing.model.lab.TariffItemLabEventTypeItemFkAssoc"
AssociationEnd="com.photoswing.model.lab.TariffItemLabEventTypeItemFkAssoc.TariffItemLabEventTypeItem"
SourceUsage="com.photoswing.model.lab.LabEventTypeItemAndTariffItemVO.LabEventTypeItem"
Reference="true" >
<DesignTime>
<Attr Name="_EntireObjectTable" Value="false" />
<Attr Name="_queryClause" Value="false" />
<AttrArray Name="_srcAttributes">
<Item Value="com.photoswing.model.lab.LabEventTypeItem.LabEventTypeItemId" />
</AttrArray>
<AttrArray Name="_dstAttributes">
<Item Value="com.photoswing.model.lab.TariffItem.LabEventTypeItemId" />
</AttrArray>
</DesignTime>
</EntityUsage>
Stack trace:
===========
oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for LabEventTypeItem.
     at com.photoswing.model.lab.LabEventTypeItemAndTariffItemVORowImpl.create(LabEventTypeItemAndTariffItemVORowImpl.java:1370)
     at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:353)
     at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:2599)
     at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1048)
     at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:1725)
     at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:1769)
     at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:1749)
     at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:6230)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:891)
     at oracle.jbo.uicli.jui.JUActionBinding.doIt(JUActionBinding.java:203)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:478)
     at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:306)
     at com.photoswing.component.JUNavBar.doAction(JUNavBar.java:1114)
     at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:259)
     at com.photoswing.component.JUNavBar.actionPerformed(JUNavBar.java:419)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
     at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
     at java.awt.Component.processMouseEvent(Component.java:5100)
     at java.awt.Component.processEvent(Component.java:4897)
     at java.awt.Container.processEvent(Container.java:1569)
     at java.awt.Component.dispatchEventImpl(Component.java:3615)
     at java.awt.Container.dispatchEventImpl(Container.java:1627)
     at java.awt.Component.dispatchEvent(Component.java)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
     at java.awt.Container.dispatchEventImpl(Container.java:1613)
     at java.awt.Window.dispatchEventImpl(Window.java)
     at java.awt.Component.dispatchEvent(Component.java)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:458)
     at com.photoswing.view.start.WaitCursorEventQueue.dispatchEvent(PhotoWebshopDesktop.java:3077)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
## Detail 0 ##
java.lang.NullPointerException
     at com.photoswing.model.lab.LabEventTypeItemAndTariffItemVORowImpl.create(LabEventTypeItemAndTariffItemVORowImpl.java:1355)
     at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:353)
     at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:2599)
     at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1048)
     at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:1725)
     at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:1769)
     at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:1749)
     at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:6230)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:891)
     at oracle.jbo.uicli.jui.JUActionBinding.doIt(JUActionBinding.java:203)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:478)
     at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:306)
     at com.photoswing.component.JUNavBar.doAction(JUNavBar.java:1114)
     at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:259)
     at com.photoswing.component.JUNavBar.actionPerformed(JUNavBar.java:419)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
     at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
     at java.awt.Component.processMouseEvent(Component.java:5100)
     at java.awt.Component.processEvent(Component.java:4897)
     at java.awt.Container.processEvent(Container.java:1569)
     at java.awt.Component.dispatchEventImpl(Component.java:3615)
     at java.awt.Container.dispatchEventImpl(Container.java:1627)
     at java.awt.Component.dispatchEvent(Component.java)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
     at java.awt.Container.dispatchEventImpl(Container.java:1613)
     at java.awt.Window.dispatchEventImpl(Window.java)
     at java.awt.Component.dispatchEvent(Component.java)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:458)
     at com.photoswing.view.start.WaitCursorEventQueue.dispatchEvent(PhotoWebshopDesktop.java:3077)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
Thanks
Frederic

I get the same error on the scott schema:
protected void create(AttributeList attributeList) {
// The BC4J framework will already have created "blank" entity instances
DeptImpl newDept = getDept();
EmpImpl newEmp = getEmp();
try {
// Let dept "blank" entity instance to do programmatic defaulting
newDept.create(attributeList);
// Let emp "blank" entity instance to do programmatic defaulting
// passing in new DeptImpl instance so its attributes are
// available to the EmpImpl's create method.
if (newEmp == null)
System.out.println(getClass().getName()+".create newEmp IS NULL");
newEmp.create(newDept);
catch (JboException ex) {
newDept.revert();
newEmp.revert();
throw ex;
catch (Exception otherEx) {
newDept.revert();
newEmp.revert();
throw new RowCreateException(true /* EO Row? */,
"Dept" /* EO Name */,
otherEx /* Details */);
The trace shows:
model.CreateDepartmentAndFirstEmployeeRowImpl.create newEmp IS NULL
Another problem:
Refreshing Foreign Key Values in New Employees Once Final Department Id is Assigned:
Number newDeptno = getDeptno().getSequenceNumber();
doesn't compile getSequenceNumber() unknown.
I send you a usecase as a zip file.
The code for Refreshing Foreign Key in is comment at the end of the DeptImpl file.
Regards
Frederic
I send you the

Similar Messages

  • Implementing a view Object with Multiple Updateable Dependent Entity Objects

    Hello,
         I want to implement view object with multiple updateable entity object,
         i have refered this link its good https://forums.oracle.com/thread/63721
         here they have explained with 2 table,
         but when we have more then 5 tables and each table have Primary keys , Foreign key , Sequence and  trigger created on it. Then whats steps should i want to fallow.
         if possible some please provide the link or some one help me out how to do this .
         thanks in advance
         cheers

    Has the Advanced View Object Techniques been referred?

  • HOWTO: Implementing a ViewObject with Multiple Updateable Dependent Entity

    Hi All,
    I have implemented this concept in one of my project for (1-1 entity relationship). It worked very well. But I want try with parent child tables like (1 to many). I tried with the code given by "Adrian Nica " in previous thread. But my problem is When I make Parent table as updateable and reference I am not able to create a row for that VO at all.
    Steve, I read your reply in previous thread. But that is not helpful when you want create a new row as parent record as reference.
    Please help me to solve this....
    --Thanks
    Rama

    Hi,
    Thank you for your reply. I tried set all the attributes for parent EO to "Discriminator" which is added as "updateable and reference" in multiple updateable VO. But I am still getting " oracle.jbo.RowCreateException: JBO-25017:" and " Null Pointer Exception".
    Do I need to set the child VO also as "discriminator" attributes for that EO.
    --Thanks
    Rama

  • Multiple updateable adf entity objects

    I've got a situation that is real similar to something that's covered in the developer's guide, yet it's just different enough that I need to get someone's help. I have a view object that is based on two entity objects. These 2 entity objects have a one to one association with each other. They both share the same primary key (hris_id). There is no foreign key relationship between them. This hris_id column for one of the entity objects has been set as a DBSequence type so that it's value can be set by a sequence. When i want to create a new row via this view object, I need to know where/when I can get this sequence generated value from the first entity object so that when the second entity row gets created, i can use this value (hris_id) from the first entity object to populate the hris_id column in the table for the "second" entity, since both tables will need to share the same value for hris_id column. Just not sure about where in the code this needs to happen. Any ideas? Thanks.

    Hi,
    I think your situation is similar as described in the guide.
    Override create in your view object row class, create first and second entity and probably you need to copy key value from first to second entity.
    Try this:
        @Override
        protected void create(AttributeList attributeList) {
            Entity1Impl newEntity1 = getEntity1();
            Entity2Impl newEntity2 = getEntity2();
            try {
                newEntity1.create(attributeList);
                oracle.jbo.domain.Number hrisId = newEntity1.getHrisId().getSequenceNumber();
                newEntity2.create(attributeList);
                newEntity2.setHrisId(hridId);
                .Rado

  • Delete view object with multiple updateable entities

    I've created a VO which updates 3 entities, taking care of the posting order by overriding the postChanges(TransactionEvent e) and the create() methods of the entities, and of the VOs RowImpl.
    The problem is, the DELETE is not working, I'm getting a database constraint violation (raised like you should delete the row in the EMP table first, and then its parent row in the DEP table).
    I've inserted the following in the e.g. EmployeeImpl.java
    if (getPostState() == STATUS_DELETED) {
    DepImpl parentDep = getDepartments();
    if (parentDep != null ) {
    parentDep.postChanges(e);
    and it's not enough, I'm missing smth obviously.
    Can someone help?
    Thanks and regards
    gabriela

    Shailesh,
    thank you for your reply.
    I'm back from the holidays and trying to keep up :-)
    Guess I had gotten it wrong in the beginning. This is how it looks like now:
    * Remove the instance present on associations which are 1:1 relationships,
    * (on delete cascade behaviour).
    * The default implementation of remove() only removes this instance.
    public void remove() {
    //Get the Person Id and delete the associated Parties instance first
    Number perId = getId().getSequenceNumber();
    if (perId != null)
    DBTransaction trans = getDBTransaction();
    trans.executeCommand("delete from parties where per_id = " + perId);
    //delete this instance
    super.remove();
    best regards
    gabriela

  • Implement a View Object with multiple entity objects

    Hi
    In 'How to' section on the 'otn.oracle.com' (Jdeveloper) web site is tutorial how to implement a View Object with multiple updateable dependent entity objects.
    It allows user to insert an employee and a department at the same time.
    But I would like to change this example to insert a new department only if it does not already exist. How to change this sample?
    Is there any other way to this?
    Thanks
    Regards
    Gorazd

    Once again the structure, sorry.
    ViewObject
    |-ParentEntityObject
    ..|-PId
    ..|-PAttribute
    ..|-CId (FK)
    |-ParentChildAssociation
    |-ChildEntityObject
    ..|-CId
    ..|-CAttribute
    Christian

  • VO with "Conditionnaly" Multiple Updateable Dependent EO

    Hi,
    I have a special case of:
    View Object with Multiple Updateable Dependent Entity Objects.
    One of the Updateable Entities must not be created in some cases => outer join in query condition
    I implemented succesfully the techical doc:
    http://www.oracle.com/technology/products/jdev/howtos/bc4j/multientityvo.html
    but I can't figure out how to avoid the creation of that Entity row.
    I remove the row in the create method but the default values are still displayed.
    Is there a better way to achieve this?
    How can I clear the default values to avoid the dead entity exception when those fields are accessed?
    Thanks
    Fred

    I wanted to implement gapless sequence number. But, when i try to to implement it then (DBSequence)attributeList.getAttribute("Id");
    returns null.
    and then jbo.null object reference exception is trhown.
    Do you know how I can implement gapless sequence number using this approach.

  • Object with multiple states and slider in folio are rasterized, settings seem correct.

    I am having trouble keeping An object with multiple text states from being rasterized, as well as a slider that is also rastering.
    I have read that you are supposed to set the folio and article up to be .pdf and that the slider should have the vector option chosen.
    I haven't found anything for the multi state object to for these settings.
    What happens is when I output the folio to Adobe Content Viewer, only the text in those items is rasterized. All other text is crisp. Tested on both iPad Mini and iPad Retina and the both are blurry.
    Is there a way to force the vector option? It seems even with the correct options selected it is still rastering the test in interactive elements.
    Thanks!

    Here is the MSO with the folio.
    Here is the Slider with folio overlays panel.

  • I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    Nobody knows why because you have not provided sufficient information. Web site? Browser? How do you see your pay stubs online? Company web site? Unsecure?

  • BC4J: problems creating view object with multiple entity objects

    Hi,
    I working with a view object which contains two entity objects with parent-child relationship like this:
    ViewObject - ParentEntityObject - PId
    PAttribute
    CId (FK)
    (- ParentChildAssociation)
    - ChildEntityObject - CId
    - CAttribute
    The 'Read Only' and 'References' options are checked for the association in the view object.
    I'm creating a new row using this view object. The parent object should be created new and the child object already exists in the database, so I'm setting only the attributes of the parent object (including foreign key).
    After creating the row I display it in a jbo:DataTable and only those attributes coming from the parent object are displayed. The attributes of the child object are not set. After a commit all attributes appear.
    The problem is, that I want to display the new row with all attributes to the users BEFORE they commit.
    I tried to set the child attributes, but they are read only by definition and even when I unchecked the 'Read Only' option and set the attributes to 'Always Updateable' in the view object it is giving me
    JBO-27008: Attribute set for CAttribute in view object ViewObject failed.
    Is there a way to make all attributes of the child object visible in the view object without committing changes?
    (JDev 9.0.2.822)
    Any help would be appreciated.
    Regards,
    Christian

    Once again the structure, sorry.
    ViewObject
    |-ParentEntityObject
    ..|-PId
    ..|-PAttribute
    ..|-CId (FK)
    |-ParentChildAssociation
    |-ChildEntityObject
    ..|-CId
    ..|-CAttribute
    Christian

  • Sharing same entity object with multiple viewobject problem.

    Dear All,
    I have a common entity entity object, that i am using in 4 different vo(only the where clause is different),
    I have created 4 af:table from corrosponding vos, when i am inserting some records in any of the vo then all the vo is showing the same records.. even through each vo is having separate where clause,
    But when i do this with separate eo for each vo then it works fine..
    Here i just want to do with the single eo being shared by different vo of same kind.. except where clause, Also i want to know why this issue is comming on insert? is it normal expected behaviour ? If yes then how to overcome this problem..? Pls provide any good suggestions if you have..
    Thanks & Regards.
    Santosh.

    Hi Sacha,
    Thanks.. i read it and found following
    You can globally disable this feature by setting the jbo.viewlink.consistent to the value false in your configuration. Conversely, you could globally enable this >feature by setting jbo.viewlink.consistent to the value true, but Oracle does not recommend doing this. Doing so would force view link consistency to be set >on for view objects with secondary entity usages that are not marked as a reference which presently do not support the view link consistency feature well.Now i am thinking to set it false.. but as doc says but Oracle does not recommend doing this. Doing so would force view link consistency to be set on for view objects with secondary entity usages that are not marked as a reference which presently do not support the view link consistency feature well,
    With what option should i go...?
    go with separate eo and vo..?
    Regards,
    Santosh.

  • Passing vector of object with multiple datatype

    Hi
    I want to pass vector of objects to stored procedure and I am facing some problem
    please suggest is it possible or I need to follow some other way.
    I have one class detail with two attributes i.e int ID and string course
    In main I have created 1000 objects of different ID and course and pushed back the objects to avector of detail and passed to a function my function is
    void bulkdatainsert(vector<detail>rec)
    stmt = conn->createStatement ("begin storeBulk(:1);end;");
         stmt->setMaxIterations(rec.size());
         stmt->setMaxParamSize(1,1024);
         setVector(stmt,1,rec,"course"); // The error coming here
    The error is due to the type rec .
    I want to know can we pass objects of multiple data to stored procedure through OCCI ?
    If not do we need to break every attribute and make vector of corresponding attributes and pass to stored procedure?
    please suggest me
    Thanks

    I think Custom objects are not supported directly.
    Following are the normal ones which you can use
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector< T > &vect,
    const string &schemaName,
    const string &typeName);
    Intended for use on platforms
    where partial ordering of function
    templates is not supported, such
    as Windows NT. Multibyte
    support.
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<T* > &vect,
    const string &schemaName,
    const string &typeName);
    Intended for use on platforms
    where partial ordering of function
    templates is supported. Multibyte
    support.
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<BDouble> &vect
    const string &sqltype);
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Bfile> &vect,
    const string &schemaName,
    const string &typeName);
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<BFloat> &vect
    const string &sqltype);
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Blob> &vect,
    const string &schemaName,
    const string &typeName);
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Blob> &vect,
    const UString &schemaName,
    const UString &typeName);
    Sets a const Blob vector; UTF16
    support.
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Clob> &vect,
    const string &schemaName,
    const string &typeName);
    Sets a const Clob vector;
    multibyte support.
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Clob> &vect,
    const UString &schemaName,
    const UString &typeName);
    Sets a const Clob vector; UTF16
    support.
    void setVector(
    Statement *stmt,
    unsigned int paramIndex,
    const vector<Date> &vect,
    const string &schemaName,
    const string &typeName);
    Sets a const Date vector;
    multibyte support.

  • Problem Creating PDF with Multiple Files in Pro. 7

    I'm using Adobe Acrobat Professional 7 on a computer with Windows XP.
    The problem is that when I try to create a PDF with multiple files everything just suddenly stops. There are 75 files involved and when it gets to around 41 or so (don't know the exact number because I turned away from my computer for just a moment), it just stops. There are no error messages; nothing. Just a blank Acrobat screen.
    Last week I had a different problem which was resolved by an uninstall/reinstall and I was able to create the PDF with those exact same 75 files, but after the PDF was created I realised that some changes needed to be made. I dumped the PDF, made the appropriate changes and left it for the weekend. Today I the new problem has arisen.
    Any ideas what the problem might be?

    I've read many discussions about Acrobat and problems with server files, with the general solution being what you are doing... copy the files to a local hard drive

  • Create View table with multiple table

    I want to create View table with relation with multiple tables.
    for ex
    table 1
    mrnno
    mrnqty
    table 2
    mrnno
    issqty
    table 3
    mrnno
    retqty
    want to create view table where i can see the sum (mrnqty), sum(issqty),sum(retqty) group by mrnno
    sandy

    Hi
    CREATE OR REPLACE FORCE VIEW my_view AS
    WITH t1 AS
    (SELECT mrnno,
                      SUM(mrnqty) sum1
    FROM table_1
    GROUP BY mrnno),
    t2 AS
    (SELECT mrnno,
                      SUM(issqty) sum2
    FROM table_2
    GROUP BY mrnno),
    t3AS
    (SELECT mrnno,
                      SUM(retqty) sum3
    FROM table_3
    GROUP BY mrnno)
    SELECT mrnno,
                    sum1,
                   sum2,
                   sum3
    FROM t1,t2,t3
    WHERE t1.mrnno = t2.mrnno
    AND       t1.mrnno = t3.mrnnoCheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

  • Materialized view log with multiple materialized views

    DB: 9.2.0.8
    Yes its old. I am not allowed to upgrade it.
    I have a set of materialized views that are created off of 5 base tables. They do fast refreshes. So I have multiple materialized views for the same base table and same materialized view log.
    1. how do materialized view logs manage multiple dependent materialized views?
    2. How do I tell by looking at the materialized view log which rows have not been fast refresh for a specific materialized view?

    As a starter for 10 try reading: Materialized View Refresh : Log Population and Purge (Doc ID 236233.1) on MOS.
    Thanks
    Paul

Maybe you are looking for

  • Trouble positioning a stepper motor accurately (to one step)

    I'm using a PCI-7344 with an MD7506 motor driver from RS. I'm testing angle sensors whose voltage output is proportional to (you've guessed it...) angle. I'm stepping the motor round by one step, checking that it's got there by reading the encoder, m

  • BPM: IDoc to multiple HTTP-Requests

    Hello! I'm currently working on a scenario which is described as followed: My XI-System is receiving an IDoc from an SAP R/3-System. This IDoc contains a list of numbers together with the respective name of the customer an our internal customer numbe

  • ITunes 7.7 - Error Message: AppleMobileDeviceHelper has stopped working

    Can anyone help with the above problem. I installed 7.7 two days ago and now cannot stop these error messages from popping up. I can play iTunes, but the whole time it is running this message pops up repeatedly. So far I have let it get to about nine

  • Streaming video in web site?

    I have a real estate client who wants to show 2-3 minutes snippets of the homes he's selling. I'm not sure of the best way to do this, as far as streaming the video. A previous client who used a lot of video got me hooked up with a special hosting co

  • Lost admin & iphoto & the imac lost my keychain

    Mac w/10.6.8---HD has 999.86GB   Model Identifier:          iMac6,1   Processor Name:          Intel Core 2 Duo   Processor Speed:          2.16 GHz   Number Of Processors:          1   Total Number Of Cores:          2   L2 Cache:          4 MB   Me