properties - Variables in SAP MII -
basically, looking variable/property holds value outside of transaction execution facilitating use in next rounds of execution, similar counter in programming language until reset explicitly.
as seen in sap mii, local , transaction properties reset on completion of transaction execution, leaving properties initial state, without giving opportunity use stored/assigned value in previous transaction. global properties not such requirement read-only.
did 1 use such property/tried work around?
thanks
you can use session variables this
to store variable:
/xmii/propertyaccessservlet?mode=store&propname=<name>&propvalue=<value>
and read variable:
/xmii/propertyaccessservlet?mode=retrieve&propname=<name>
Comments
Post a Comment