Forum Discussion
Sai_Maganti
3 years agoContributor II
Give this a try with Conditional BR
1. Create a conditional business rule and do something like this
Dim account As Integer = args.GetSource("Ac#").XFConvertToInt
Dim ud2 As String = args.GetSource("U2#")
If account >= 1000 And account <= 2000 Then
If ud2 = "valid" Then 'check for valid U2#
Return ud2
Else
Return "None"
End If
Else
Return ud2
End If
2. Attach this BR to your UD2 Transformation
Related Content
- 12 months ago
- 11 months ago
- 11 months ago