Hi Zain,
I think in your text file there are two delimiter that is "COMMA" and TAB.
Can try with one delimiter either TAB or COMMA.
Upload new txt with single delimiter then validate transformation file with below details.
If you are using Comma then
*OPTIONS
FORMAT = DELIMITED
HEADER = YES
DELIMITER =
SKIP = 0
SKIPIF =
VALIDATERECORDS = YES
CREDITPOSITIVE = YES
MAXREJECTCOUNT =-1
ROUNDAMOUNT =*MAPPING
*MAPPING
ACCOUNT = *COL(1)
CATEGORY = *COL(2)
CURRENCY = *COL(3)
TIME = *COL(4)
SIGNEDDATA = *COL(5)
*CONVERSION
If you are using TAB delimiter then use delimiter =TAB
*OPTIONS
FORMAT = DELIMITED
HEADER = YES
DELIMITER = TAB
SKIP = 0
SKIPIF =
VALIDATERECORDS = YES
CREDITPOSITIVE = YES
MAXREJECTCOUNT =-1
ROUNDAMOUNT =*MAPPING
*MAPPING
ACCOUNT = *COL(1)
CATEGORY = *COL(2)
CURRENCY = *COL(3)
TIME = *COL(4)
SIGNEDDATA = *COL(5)
*CONVERSION
hope this will help you.
Sushant