问题
· 三月 25, 2022

Business Process rules 中 如何获得消息类型, session Id 等信息

Business Process rules 中 如何获得消息类型, session Id 等信息

讨论 (4)2
登录或注册以继续

试试扩展函数,里面使用%Ensemble获取,同时还有%System中可以获取更多系统信息。

再在rule中使用这个扩展函数。

Class utils.functions Extends Ens.Rule.FunctionSet
{

ClassMethod GetSess()
{
	s s=%Ensemble("SessionId")
	&SQL(Select SourceConfigName into :sess from Ens.MessageHeader where ID=:s)
	Quit sess
}
}