hi

sk_manu

New Member
Hi all,

I want to know, weather it is possible to trigger 2 .p files on update of table.

Regards,
Manohar Sk
 
You mean you want to call more than one p-file when a table is updated, don't you?
As you know you can specify p-file as a database trigger. If you want to call another p-file you can place in the first one either the direct call of the second p-file or the indirect call using PUBLISH statement. But definitely you can't have two independent procedures as database trigger of a table.

HTH
 
One Worl One Wait-For.
No it is not possible to trigger 2 procedures from 1 event. However the 1 procedure that is triggered CAN have trigger multiple procedures, eg RUN proc , PUBLISH event. Use any 4GL method you are happy with to trigger the other procedures.
 
Back
Top