Question: How do you programatically add a new record in SalesLogix?
Answer: To programatically add a new record in SalesLogix do the following:
Sage.Entity.Interfaces.IMyEntity myentity = Sage.Platform.EntityFactory.Create<Sage.Entity.Interfaces.IMyEntity>();
myentity.whatever = “value”;
myentity.whatever2 = “someothervalue”;
myentity.Save();



