Implementation of Transaction concept in One World Xe?

anandkj_jde

Member
Implementation of Transaction concept in One World Xe?

For ex. There is a business view having a join of two
tables in a Fix / Inspect form.While performing the
ADD OPERATION records are inserted into both the
tables through the business view. However when
there is an error in one of the table , the insertion
in another table is not rolled back. The FIX/INSPECT
FORM was tried with Transaction option
CHECKED/ENABLED.

Any solution is well appreciated!


K.J.ANAND KUMAR
WINDOWS NT WORKSTATION - SP5
ONEWORLD XE DEMO

=====
K.J.ANAND KUMAR
---------------------------------
TECHNICAL CONSULTANT (JDEdwards)
SYSTIME COMPUTER SYSTEMS LTD
INDIA.

__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
 
Hi,

JDE documentations state (e.g. Understanding Form Types chapter in Development Tools):
"... Fix/Inspect form only allows you to add or update one record at a time ..."

It means for me implicitly that it requiers Business View based on a single table and do not support compound Business Views managing more than one record in more than one table.

I know, it is not a solution for you for your original issue. IMHO you have to use other method(s) handling more records for more tables in the same transaction.

Possible solution depends on the type og your join:
One-To-One: Use a separate Fix/Inspect form called from the main one and Include Transaction.

One-To-Many: Consider to use Header/Detail form to accomplish this task or use a separate Headerless/Detail form called from the main one and Include Transaction.

Hope, could help a bit.
Zoltán

B7332 SP11, ESU 4116422, Intel NT4, SQL 7 SP1
(working with B7321, B7331, XE too)
 
Excuse me, I have forgotten to add:

You have to create separate Business Views for the forms or for the Header and Grid in the Header/Detail solution, each based on a single table.

Zoltán

B7332 SP11, ESU 4116422, Intel NT4, SQL 7 SP1
(working with B7321, B7331, XE too)
 
Back
Top