Add an Order Application Usage Type Automatically in Agentforce Revenue Management
Simplify order creation by using an Apex trigger to populate the Application Usage
Type field . This field establishes the application context for the record. For all new orders,
it creates an AppUsageAssignments record of type RevenueLifecycleManagement.
Required Editions
Available in: Lightning Experience
Available in: Enterprise, Unlimited, and Developer Editions of
Revenue Cloud where Transaction Management is enabled
Apex Trigger Sample for Application Usage
Use this sample code snippet to populate the AppUsageType field with
RevenueLifecycleManagement.
trigger RlmOrderTriggerSample on Order(after insert) {
List<AppUsageAssignment> assignments = new List <AppUsageAssignment>();
for (Order ord: Trigger.New) {
// Do further filtering as necessary
AppUsageAssignment aua = new AppUsageAssignment(
RecordId = ord.Id,
AppUsageType = 'RevenueLifecycleManagement'
);
assignments.add(aua);
}
insert assignments;
}
Did this article solve your issue?
Let us know so we can improve!
Loading
Salesforce Help | Article
Cookie Consent Manager
General Information
Required Cookies
Functional Cookies
Advertising Cookies
General Information
We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required Cookies
Always Active
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional Cookies
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising Cookies
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.