In CIT scenario, is it possible to compare values of variable before inserting

Hi All,

In CIT scenario, is it possible to compare values of variable before inserting and ignore only that particular variable if values are same.

Regards,

Sridhara. 

Parents Reply Children
  • 0 in reply to 

    Still not understanding why as this seems like a complete waste of time, money, and development.  The intent of a CIT scenario is to insert, update, or delete table records, so if a source element is the same value as a destination element, then this isn't really even an update and CIT scenario processing is not going to speed up drastically.  In fact, processing speed could slow since obtaining destination value to be used for comparison.

    But I digress.  If you want to ignore a mapped element (ie. node), then review help for Function pifIgnoreNodeMapping(strMsg As String) As Long...

    - amPortfolio

       - lLocaId

          IF SourceValue = TargetValue THEN

             pifIgnoreNodeMapping()

          ELSE

             RetVal = SourceValue

          END IF