Closed Smolations closed 8 months ago
Adds the following properties to the AddOn entity for the V2 client:
AddOn
LiabilityGlAccountId
RevenueGlAccountId
PerformanceObligationId
//** create an add-on with default RevRec settings var addOn = new AddOn(); // ... addOn.Create(); Console.WriteLine("Liability ID: {0}", addOn.LiabilityGlAccountId); // => "" Console.WriteLine("Revenue ID: {0}", addOn.RevenueGlAccountId); // => "" Console.WriteLine("POB ID: {0}", addOn.PerformanceObligationId); // => "abc" (default POB) //** remove (or change) RevRec settings from an add-on var addOn = AddOns.Get(addOnCode); // note that POB IDs cannot be removed, but they can be changed addOn.LiabilityGlAccountId = null; addOn.RevenueGlAccountId = null; addOn.Update();
DevQA+1
Adds the following properties to the
AddOn
entity for the V2 client:LiabilityGlAccountId
RevenueGlAccountId
PerformanceObligationId
Examples