最新消息:ww12345678 的部落格重装上线,希望大家继续支持。

D365FO 中的 表时间处理 / Table Event handler methods in Dynamics 365 FO [#Dyn365FO]

网络文摘 William 1452浏览 0评论
Hi Guys, In my last post Form Event hander methods in Dynamics 365 FO, we discussed different event handlers which available on Form.  Let’s continue this discussion with Table event handler method today. Let’s see the different type of event handler in today’s post. You need to add a new class to write the event handler methods. I would recommend adding one class to one table. To make it easy for another developer postfix the name by EH or eventHander or Hander so your teammate can identify if they need to add more business logic than create a new class from scratch. 1. Table onValidateField event handler [DataEventHandler(tableStr(CustTable), DataEventType::ValidatedField)] public static void CustTable_onValidatedField(Common sender, DataEventArgs e) { ValidateFieldEventArgs  event = e as ValidateFieldEventArgs ; CustTable custTable = sender as CustTable; boolean result = event.parmValidateResult(); result = result && RegNumberValidator_BG::validate(custTable.AccountNum, custTable.RegistrationNumber_BG, CustVendACType::Cust); event.parmValidateResult(result); } } 2. Table OnValidated event hander (same logic you can try for many other event hander) [DataEventHandler(tableStr(InventLocation), DataEventType::ValidatedField)] public static void InventLocation_onValidatedField(Common sender, DataEventArgs e) { InventLocation inventLocation = sender as InventLocation; ValidateFieldEventArgs fieldArgs = e; boolean ret; InventLocation inventLocationLoc; switch(fieldArgs.parmFieldId()) { case fieldNum(InventLocation, field1): if(inventLocation.BHGWorkerAssociate != '') { <Your code/ business ogic/validation> <ret = true or false> fieldArgs.parmValidateResult(ret); } } } Let me know if it helps you or you got some more example. Cheers, Harry Follow us on Facebook to keep in rhythm with us. @Facebook
发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址