Page 1 of 1

Posted: Wed Oct 24, 2007 6:08 am
by lfong
The error is: XML Error: A derivation Constant node contains an unsupported UVAtVar - '@False'.

The Constraint is:
StgBranch = @TRUE or StgAcct = @TRUE or StgValidDate = @TRUE or StgSeqCd = @TRUE or StgTranCd = @TRUE or StgAmt = @TRUE or StgTraceNo = @TRUE or StgSrcBnk = @TRUE or StgPostCd = @TRUE or StgCBACd = @TRUE or StgItemCd = @TRUE or StgOnlineFlg = @TRUE or StgBrToBrFlg = @TRUE or StgAdvFlg = @TRUE

The derivation for target column is:
if StgBranch = @False then 'XXXXXXX'

I did a check of the definition of the source fields for the IsValid check. They are all defined as decimal.

Posted: Wed Oct 24, 2007 6:57 am
by chulett
lfong wrote:The derivation for target column is:
if StgBranch = @False then 'XXXXXXX'
System Variables must be all upper case. @False does not exist, but @FALSE does and should work more better. :wink: