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+NinitValue()->
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()
以上是关于[转]Sequence of methods in form and table in AX的主要内容,如果未能解决你的问题,请参考以下文章
1. BinaryGap Find longest sequence of zeros in binary representation of an integer.
translation of the paper sequence and structure conservation in a protein core
Swift protocol extension method is called instead of method implemented in subclass
Parameter 0 of method 方法b in 类a required a bean of type ***
Methods Collection of Enumerating Com Port in Windows, by C
HDU 4675 GCD of Sequence(莫比乌斯反演 + 打表注意事项)题解