Skip to Main Content

APEX

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!

How to listening to DML transactions in a Table using Dynamic Actions

GhanaApexDeveloperJan 15 2014 — edited Jan 15 2014

Hi guys,

I have a finger printer scanner application and an Apex application.I would like to know how  i could use Dynamic Actions to listening to DML operation in a database.

Eg.

I use the Apex application to capture biographic information ,on a click of a button it initiates a dynamic action  which locks the screen with a processing GIF

where it   sends an  update STATE  (1) to the  transaction table required.

update transaction

       set fpsmstate         = 1,

           FPSMCaptureMethod = p_FPSMCaptureMethod,

           FingerprintXML    = null,

           fpsmerrormsg =null

     where transaction_id = p_transaction_id;

the finger print scanner listens to the transaction table  fo this  state (1)

and then triggers the software to run. when it is done  processing of the fingers, it updates the transaction table  a state to (3 ).

At this time i the dynamic action   removes the processing GIF.

Any help would be appreciated.


Thanks

Benjamin

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Feb 12 2014
Added on Jan 15 2014
6 comments
402 views