Created
October 28, 2016 06:45
-
-
Save strepicor/d3ba69746084c94183f66e8385906f3f to your computer and use it in GitHub Desktop.
Epicor BPM - Acess newly added row data from BPM C# code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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