Search results

  1. M

    Appserver log file

    OK, thanks!
  2. M

    Appserver log file

    Hello, Is it possible to get the path to the appserver log file in progress (the path the we can specify in OpenEdge Explorer -> appserver -> Configuration -> Agent -> Server log filename)? Thanks!
  3. M

    4GL triggers - DELETE

    Thanks, Cringer. I'll try to use the correct transaction scoping as you described in your example. However, I was also looking for a way how to create the DELETE trigger, so that when someone later adds a code where he makes some changes to the Orders table, the trigger would still work in all...
  4. M

    4GL triggers - DELETE

    Thanks for your responses! I wouldn't want to change the code where the Orders records are created because there are many places in code where this is done, so I just wanted to add the triggers to capture the field changes. I don't think that I could use the WRITE trigger because this will not...
  5. M

    4GL triggers - DELETE

    Hello, I have a code similar to this: ON DELETE OF Orders DO: ... END. CREATE Orders. ASSIGN Orders.OrderID = "000000001" ASSIGN Orders.Amount = 100. ... RELEASE Orders. FOR FIRST Orders WHERE Orders.OrderID = "000000001" EXCLUSIVE-LOCK: ... ASSIGN Orders.Amount = 200...
Top