Created
August 30, 2023 13:35
-
-
Save hasokeric/254a3aa4bc48b5c343c0d3412f0b6f6b to your computer and use it in GitHub Desktop.
GetNewBase UBAQ
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
//var x = defaultImpl.CreateEmpty(result); | |
//this.resultHolder.Attach(QueryResultDataSetUbaqTableset.FromDataSet(result)); | |
ResultsUbaqRow row = (ResultsUbaqRow)result.Results.NewRow(); | |
row.SysRowID = Guid.NewGuid(); | |
row.Calculated_RowStatus = "Meow"; | |
row.RowIdent = row.SysRowID.ToString(); | |
row.RowMod = "A"; | |
var z = ((ResultsUbaqTable)result.Results); | |
((ResultsUbaqTable)result.Results).Add(row); | |
Ice.Diagnostics.Log.WriteEntry("Inside NEWwwwwwwwwwwwwwwwwwwwww"); | |
var ttResult = result.Results.FirstOrDefault(); | |
if (ttResult != null) | |
{ | |
ttResult.OrderRel_Company = Constants.CurrentCompany; | |
ttResult.Calculated_RowStatus = "UNCOMMITTED"; | |
//ttResult.RowIdent = ttResult.SysRowID.ToString(); | |
//ttResult.RowMod = "A"; | |
Ice.Diagnostics.Log.WriteEntry($"RowIdent: {ttResult.RowIdent}"); | |
} | |
//this.resultHolder.Attach(result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LogParams