zl程序教程

您现在的位置是:首页 >  其它

当前栏目

Text determination execution with two different mode

with Text mode two execution different determination
2023-09-14 09:03:04 时间

Created by Jerry Wang on Feb 16, 2015

For opportunity creation case, the text determination procedure will be executed two times, each with different execution mode.

First time

The trigger point is FM CRM_TEXT_DETERMINATION_EC,

clipboard1

 

since this FM is registered as a callback via 1order event framework, detailed customizing could be found below:

clipboard2

 


Note: under this mode ( mode value C - dynamic read ), 

clipboard3

 

only text objects configured as "Transfer = C" will be handled:

clipboard4

 

This logic could easily be found in code line 136: ( only text object with transfer = C can have chance to execute subroutine determine_text )

clipboard5

 

 

Second time

  

this time the mode is hard coded as B: 

clipboard6

 

B means save text:

clipboard7

 


Under this mode, only those text objects which DO NOT have transfer = C will be handled.

clipboard8