Campaign Basics
https://trailhead.salesforce.com/content/learn/modules/campaign_basics
Meet Salesforce Campaigns
https://trailhead.salesforce.com/content/learn/modules/campaign_basics/campaigns_basics_unit_1


Organize Campaigns with Hierarchies and Record Types
https://trailhead.salesforce.com/content/learn/modules/campaign_basics/campaigns_basics_unit_2



Determine Who You're Marketing To
https://trailhead.salesforce.com/content/learn/modules/campaign_basics/campaigns_basics_unit_3


Report on Your Campaigns
https://trailhead.salesforce.com/content/learn/modules/campaign_basics/campaigns_basics_unit_4


Learn Where GitHub Fits in the Development Lifecycle
https://trailhead.salesforce.com/content/learn/modules/identity_external/identity_external_intro



Understand Product and Price Rules



Change Data Capture Basics
Understand Change Data Capture

Learn Change Data Capture Characteristics

Subscribe to an Event Channel
https://trailhead.salesforce.com/content/learn/modules/change-data-capture/subscribe-to-events


Advanced Territory Management
https://trailhead.salesforce.com/content/learn/modules/advanced-territory-management
Optimize Performance for Enterprise Territory Management

Get Tips and Tricks for Enterprise Territory Management


Platform Events Basics
Understand Event-Driven Software Architecture



Define and Publish Platform Events


Subscribe to Platform Events


trigger OrderEventTrigger on Order_Event__e (after insert) {
// List to hold all tasks to be created.
List<Task> tasks = new List<Task>();
// Get queue Id for task owner
//Group queue = [SELECT Id FROM Group WHERE Name='Regional Dispatch' LIMIT 1];
String usr = UserInfo.getUserId();
// Iterate through each notification.
for (Order_Event__e event : Trigger.New) {
if (event.Has_Shipped__c == true) {
// Create Task to dispatch new team.
Task ts = new Task();
ts.Priority = 'Medium';
ts.Status = 'New';
ts.Subject = 'Follow up on shipped order ' + event.Order_Number__c;
ts.OwnerId = usr;//queue.Id;
tasks.add(ts);
}
}
// Insert all tasks corresponding to events received.
insert tasks;
}





Module
Advertising Studio Implementation Basics
Get to Know Advertising Studio


Design a Multichannel Ad Campaign

Prepare for the Journey


Implement a Multichannel Journey


Fulfill Your Campaign Goals


欢迎关注微信公众号'Salesforce考试'(ID:salesforce_exam)。
想要加入微信SFDC学习群,Marketing Cloud共享群,Trailhead学习交流群,Salesforce广深群 的朋友,请添加小编微信:kun_stylehk或微信:2034558170,并注明您的所在地。各路大神带你飞~

网友评论