Skip to content

Instantly share code, notes, and snippets.

@strepicor
Created October 28, 2016 06:45
Show Gist options
  • Save strepicor/d3ba69746084c94183f66e8385906f3f to your computer and use it in GitHub Desktop.
Save strepicor/d3ba69746084c94183f66e8385906f3f to your computer and use it in GitHub Desktop.
Epicor BPM - Acess newly added row data from BPM C# code
//Example
foreach(var ttPart_iterator in (from ttPart_Row in ttPart where String.Compare(ttPart_Row.RowMod, "A", true)==0 select ttPart_Row))
{
string partNum = ttPart_iterator.PartNum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment