Dear Experts
I have a question about OWL screen.
I would like to display the data some of the columns in the Accounting Entry BO to OWL screen (I created).
EX.) ID, CompanyID, PostingDate, ...etc
To the above, how do I write a syntax in the Event-AfterModify?
Should I use queries?
EX.) var query = AccountingEntry....
var query_parameter = query....
query_parameter.Add(query.ID.content, "I", "EQ", this.ID);
var result = query.Execute(query_parameter);
foreach(var Item in result){
this.ID = Item.ID;
this.CompanyID = Item.CompanyID;
this.PostingDate = Item.PostingDate;
.......... }
Alternatively, rether than in the Event-AfterModify, or contorolled by UIDesigner?
If you know, please tell me how to solve this problem above?
Best regards
Miho Suzuki