Skip to content

Instantly share code, notes, and snippets.

@islaytitans
Created May 30, 2016 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save islaytitans/789d235a200ff951c0f31b7e852e4c00 to your computer and use it in GitHub Desktop.
Save islaytitans/789d235a200ff951c0f31b7e852e4c00 to your computer and use it in GitHub Desktop.
Adds a new Column to the DataTable for Sitecore Experience Profile
public class AddGoalDescriptionColumn : ReportProcessorBase
{
public override void Process(ReportProcessorArgs args)
{
if (args.ResultTableForView == null)
return;
args.ResultTableForView.Columns.Add(Schemas.GoalDescription.ToColumn());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment