Closed Smolations closed 8 months ago
Adds the following properties to the Adjustment entity for the V2 client:
Adjustment
LiabilityGlAccountId
RevenueGlAccountId
PerformanceObligationId
//** create an add-on with default (or non-default, by assignment) RevRec settings var adjustment = new Adjustment(); // ... adjustment.Create(); Console.WriteLine("Liability ID: {0}", adjustment.LiabilityGlAccountId); // => "" Console.WriteLine("Revenue ID: {0}", adjustment.RevenueGlAccountId); // => "" Console.WriteLine("POB ID: {0}", adjustment.PerformanceObligationId); // => "abc" (default POB)
DevQA+1
Adds the following properties to the
Adjustment
entity for the V2 client:LiabilityGlAccountId
RevenueGlAccountId
PerformanceObligationId
Examples