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
Post a Comment