Monday, November 10, 2014

Get the Inbound Trigger File Name

This article describes how to receive the inbound trigger file name (when using the Disk-in channels mode) using the code.

You can cross-verify the trigger file name by observing the archived manifest from the LifeCycle Manager.
 

Then locate the below value :



You can use the below code to get the trigger file name inside the mapper. (g_ProcessFileName is a string type global variable).

 g_ProcessFileName = getManifestInfo(ManifestConstants.COM_FILENAME);


Similarly, You can get most of the fields shown in manifest by using the getManifestInfo method and the ManifestConstant class. Please note that the ManifestConstants only contains the name of the key/attribute.

No comments:

Post a Comment