Hi
Try one of the following ..
A.
IF SOURCE_FIELDS-AUGDT NE '' .
RESULT = 'C'.
ELSE.
RESULT = ''.
ENDIF .
B.
IF SOURCE_FIELDS-AUGDT > 1
RESULT = 'C'.
ELSE.
RESULT = ''.
ENDIF.
Your AUGDT is probably not blank, it has value either space or '00000000' , that is why it block is not going to else block .








.jpg)


