Change Column header in Delimited File Application using buildmap rule

The below code is used to change the column header during delimited file aggregation.
Suppose, you have 'SuperUser' column in delimited file and you want to show this in Sailpoint as 'AccountID'.
Write the below code in buildmap rule.

import sailpoint.connector.DelimitedFileConnector;

HashMap map = DelimitedFileConnector.defaultBuildMap(cols,record);

String SuperUser = map.get("SuperUser");
map.put( "AccountID", SuperUser );

return map;

Comments

Popular posts from this blog

Rules in Sailpoint

Sailpoint Installation Steps (IdentityIQ 7.3 Installation in Windows Machine)

How to create provisioning plan in Sailpoint