I'm writting script in ironpython on SAP CPQ in which I need to update a custom table. AddRow() function is just inserting the row in the table. Would someone tell me any function which updates the table row
tablerow = { "CpqTableEntryId" : currentQuoteCpqTableEntryId, "OpportunityId" : oppId, "QuoteNumber" : Quote.CompositeNumber, "IsPrimary" : 1 }
tableInfo.AddRow(tablerow)
SqlHelper.Upsert(tableInfo)