How-to: NEWSESSION
Example 1
Task
We have an order with a number and a posted/not posted flag.
CLASS Order 'Order';
isPosted 'Completed' = DATA BOOLEAN (Order);
number 'Number' = DATA INTEGER (Order);
FORM orders
OBJECTS o = Order
PROPERTIES(o) READONLY isPosted, number
;
We need to create an action that will post this order in a separate change session and then will add it to the form containing the list of orders.