Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
After completion of job i want to log processed records and unprocessed records into a new text file...please suggest me to achieve this...
If you want a simple file with record count details , you can create a FileOutPutXXX file with tFixedInputFlow as input.
with
((Integer)globalMap.get("tSalesforceBulkExec_1_NB_SUCCESS"))
((Integer)globalMap.get("tSalesforceBulkExec_1_NB_REJECT"))
More sophisticated why is to user Logger.
If you are in subscription version , you could use log4j to log in a file.
In Open studio , you could create your own Logger class .