String getInitiator()
None.
Returns a static constant variable representing the calling context for the execution of the current map instance. Calling contexts are one of the following values:
None.
The calling context is part of the map execution context. For more information on how calling contexts are used in maps, see Understanding map execution contexts.
In the following example, compare the map run-time initiator with the constants defined in the MapExeContext class:
cwMapCtx =
(MapExeContext)cwExecCtx.getContext (CxExecutionContext.MAPCONTEXT);
String sInitiator = null; sInitiator = cwMapCtx.getInitiator(); logInfo("**************Initiator = + sInitiator);