Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Validation if database correctly executed

3741383Sep 3 2018 — edited Feb 26 2020

hello good day everyone,

So I have a java code like this

MessageExceptionDTO result = obatService.ObatDelete(obat);

if (result.isSuccess()) {

entity = ShareMethod.getResponse(HttpStatus.OK, result.getMessage());

} else

entity = ShareMethod.getResponse(HttpStatus.NOT_MODIFIED, result.getMessage());

So that's for success code if the application successfully deletes from the database, is there any way to make this in BPEL?

This post has been answered by Martien van den Akker on Sep 13 2018
Jump to Answer

Comments

Need more details, including the Forms and DB versions you are using.
Are you using Forms blocks based on DB (i.e. "Data Blocks") or you are executing your own DML and populating (and altering) fields or both? And, how are you "committing" (COMMIT_FORM, or Save button or something else)? Be specific; if you are executing the "COMMIT" - are you using COMMIT or COMMIT_FORM?

MarcLaf

Using Oracle Forms 12c and Oracle DB 19. Yes, I'm using data blocks, based on tables from DB. User clicks a button to save and I'm doing a COMMIT_FORM.
Thanks,
Marc L

MarcLaf

Here's part of my Key-Commit code:
image.pngMarc L

Hmmm - If you are using a true "data block", there is often little reason to execute your own POST. Forms will do this automatically as soon as a the first change is made. This will result in a record lock. I'm not saying that doing a POST (or COMMIT_FORM) is a bad thing. I'm just saying that in a block managed by Forms, most of the "right" processing will happen automatically (a benefit of using Forms).
To your question, I have not tested, but suspect the behavior based on your description of what you are doing, is correct. Validation must occur upon POSTing, but also again when COMMITing. If you look at the Builder Help related to POST and COMMIT_FORM you will see that it supports this belief.
If you wanted to continue on this path, it might help to change the Validation Unit property (form level), as this might offer some relief. Of course doing this could also change the desired behavior of something else. Again, check the Builder Help for details on this property.

1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 22 2018
Added on Sep 3 2018
6 comments
213 views