zoukankan      html  css  js  c++  java
  • AX 2012 Sequence of methods in form and table in AX

    Form:

    Sequence of Methods calls while opening the Form
    Form — init ()
    Form — Datasource — init ()
    Form — run ()
    Form — Datasource — execute Query ()
    Form — Datasource — active ()
     
    Sequence of Methods calls while closing the Form
    Form — canClose ()
    Form — close ()
     
    Sequence of Methods calls while creating the record in the Form
    Form — Datasource — create ()
    Form — Datasource — initValue ()
    Table — initValue ()
    Form — Datasource — active ()
     
    Sequence of Method calls while saving the record in the Form
    Form — Datasource — ValidateWrite ()
    Table — ValidateWrite ()
    Form — Datasource — write ()
    Table — insert ()
     
    Sequence of Method calls while deleting the record in the Form
    Form — Datasource — validatedelete ()
    Table — validatedelete ()
    Table — delete ()
    Form — Datasource — active ()
     
    Sequence of Methods calls while modifying the fields in the Form
    Table — validateField ()
    Table — modifiedField ()
     
    Table:
    When you press CTR+N
    initValue()->

    When you change data in a field
    validateField() -> validateFieldValue() -> ModifiedField() -> ModifiedFieldValue()

    When you close the table after entering some data
    validateWrite() – > Insert() -> aosValidateInsert()

    When you Save the Record for the first time
    validateWrite() ->Insert() – > aosValidateInsert()

    When you modify the record and saving
    validateWrite() -> update() – > aosValidateUpdate()

    When you delete the record
    validateDelete() -> delete() -> aosValidateDelete()
     
    http://axvuongbao.blogspot.jp/2013/09/sequence-of-methods-in-form-and-table.html
  • 相关阅读:
    go 1.14.3安装micro报错处理记录
    关于redis哨兵机制的一些疑问
    TCP中异常关闭的情况记录
    mysql sleep 死锁例子
    ubuntu16.04 安装go
    innodb存储引擎之内存
    ubuntu16.04环境LNMP实现PHP5.6和PHP7.2
    mysql使用存储过程,批量生成测试数据
    mysql 关于字符串搜索的函数
    电脑上的windows键突然失灵了,肿么办
  • 原文地址:https://www.cnblogs.com/fogfog/p/6208819.html
Copyright © 2011-2022 走看看