[progress Communities] [progress Openedge Abl] Forum Post: On Create Trigger Does Not Work...

  • Thread starter Thread starter nehaakg
  • Start date Start date
Status
Not open for further replies.
N

nehaakg

Guest
Hi All, Just wanted to know if this is an expected behaviour of create statement, when i am writing it after create statement. it does not execute, instead if i am writing it before create statement it did work. Below is the code which does not work. /*trigger does not execute*/ define variable x as int init 1. create table1. assign table1.field1 = x. on create of table1 do: x = 10. end. below is the code which works. /*trigger executes here*/ define variable x as int init 1. on create of table1 do: x = 10. end. create table1. assign table1.field1 = x.

Continue reading...
 
Status
Not open for further replies.
Back
Top