Cameron Robert
Cameron Robert
  • 129
  • 773 900
Send Logs in Salesforce Marketing Cloud
Cameron Robert talks through how to setup and customise Send Logs in Salesforce Marketing Cloud.
Send Logs in Salesforce Marketing Cloud are used to track detailed information about email, mobile and push sends at the subscriber level, and can include custom fields to support advanced reporting and troubleshooting.
Key Moments:
0:00 - Introduction
0:16 - Send Log Documentation
1:28 - How to create a Send Log in Marketing Cloud
6:16 - Adding Custom Fields to a Send Log
10:50 - Testing the Send Log
15:32 - Set custom values in the Send Log
19:44 - SMS Send Log
22:02 - Contact Support to enable SMS Send Log
22:20 - Summary
Useful Links:
Documentation: help.salesforce.com/s/articleView?id=mktg.mc_es_send_logging.htm&type=5
Help Article: help.salesforce.com/s/articleView?id=000386631&type=1
Trailhead: trailhead.salesforce.com/content/learn/modules/marketing-cloud-data-management/collect-data-with-a-send-log
Contact:
www.linkedin.com/in/camrobert/
www.cameronrobert.com.au/
AusCamRobert
Переглядів: 1 476

Відео

Asset & Folder Organisation in Salesforce Marketing Cloud
Переглядів 1 тис.2 місяці тому
Cameron Robert talks through a few solutions to a commonly asked question - how to organise your assets in Salesforce Marketing. You can organise your assets into folders in Salesforce Marketing Cloud, ensuring you follow a few key tips and align the folder structure to your business's needs. Key Moments: 0:00 - Introduction 0:17 - Logically storing assets in Marketing Cloud 1:51 - Content Buil...
How to Design a Journey in Marketing Cloud
Переглядів 1,5 тис.2 місяці тому
Cameron Robert talks through how to plan and design Journeys in preparation for building them in Journey Builder in Salesforce Marketing Cloud. Key Moments: Introduction (0:00) What is Journey Builder (0:11) Journey Examples (4:33) How to Design a Journey (10:09) Planning for Non-Linear Journey Activities (17:01) Drawing a Journey Canvas (23:14) Summary (32:31) Journey Builder Videos: • Introdu...
SSJS HTTP POST in Salesforce Marketing Cloud
Переглядів 6373 місяці тому
Cameron Robert steps through how to build a POST request with headers and a payload, post it to an endpoint, and then retrieve the response using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:18 - SSJS HTTP POST Documentation 1:08 - Example: Use HTTP POST to the Marketing Cloud Rest API 6:00 - Use Stringify to get the Response 8:02 - JSONParse t...
SSJS HTTP GET in Salesforce Marketing Cloud
Переглядів 8243 місяці тому
Cameron Robert steps through how to return data from an endpoint using the HTTP.GET function using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - SSJS HTTP GET Documentation 1:45 - Example: Use HTTP GET to get data from an endpoint 5:25 - Return the Response.Content of the GET Request 6:31 - JSONParse the Response.Content value 9:50 - Summar...
SSJS Rows.Remove in Salesforce Marketing Cloud
Переглядів 3933 місяці тому
Cameron Robert shows how to use the Data Extension Rows.Remove function in Server Side Javascript (SSJS) to delete rows of data from a Data Extension using a filter in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Remove Documentation 0:58 - Example: How to use the SSJS Data Extension Rows.Remove Function 3:26 - Example: Multiple criteria in the Rows.Remove Function 4...
SSJS Rows.Retrieve in Salesforce Marketing Cloud
Переглядів 4654 місяці тому
Cameron Robert shows how to use the Data Extension Rows.Retrieve function in Server Side Javascript (SSJS) to retrieve rows of data from a Data Extension using a filter in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Retrieve Documentation 1:48 - Example: How to use the SSJS Data Extension Rows.Retrieve Function 3:38 - Example: Add a simple filter to the Rows.Retriev...
SSJS Rows.Add in Salesforce Marketing Cloud
Переглядів 4324 місяці тому
Cameron Robert shows how to use the Data Extension Rows.Add function in Server Side Javascript (SSJS) to add rows of data to a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:13 - Rows.Add Documentation 1:27 - Example: How to use the SSJS Data Extension Rows.Add Function 3:49 - Example: Add multiple rows of data using Rows.Add 4:48 - Example: Add multiple dynami...
SSJS Rows.Lookup in Salesforce Marketing Cloud
Переглядів 3914 місяці тому
Cameron Robert shows how to use the Data Extension Rows.Lookup function in Server Side Javascript (SSJS) to return rows of data from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - Rows.Lookup Documentation 1:00 - Example: How to use the SSJS Data Extension Rows.Lookup Function 4:17 - Example: Return a single value using Rows.Lookup 5:14 - Summary 📄Docume...
SSJS LookupRows in Salesforce Marketing Cloud
Переглядів 5344 місяці тому
Cameron Robert shows how to use the LookupRows function in Server Side Javascript (SSJS) to return rows of data from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:15 - Lookup Documentation 1:01 - Example: How to use the SSJS LookupRows Function 4:54 - Example: LookupRows with multiple rows retuned 7:05 - View the LookupRows JSON value 8:18 - Summary 📄Documen...
SSJS Lookup Data Extension in Salesforce Marketing Cloud
Переглядів 6555 місяців тому
Cameron Robert shows how to use the Lookup function in Server Side Javascript (SSJS) to retrieve values from a Data Extension in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:12 - Lookup Documentation 1:01 - Example: How to use the SSJS Lookup Function 3:57 - Summary 📄Documentation: • SSJS Data Extension Lookup: developer.salesforce.com/docs/marketing/marketing-cloud/guide/ssjs...
SSJS Do While Loops in Salesforce Marketing Cloud
Переглядів 4736 місяців тому
Cameron Robert talks through the Do While Loops function using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:14 - While Loop Documentation (W3Schools) 1:30 - SSJS Do While Loop syntax 4:03 - Programmatic Do While Example 8:59 - Summary 📄Documentation & Links: • While Loop (W3 Schools): www.w3schools.com/js/js_loop_while.asp • SSJS Syntax Guide: ...
SSJS For Loops in Salesforce Marketing Cloud
Переглядів 6907 місяців тому
Cameron Robert talks about one of his favourite subjects and demonstrates how to use For Loops using Server Side Javascript (SSJS) in Salesforce Marketing Cloud. Key Moments: 0:00 - Introduction 0:10 - For Loop Documentation (W3Schools) 0:57 - SSJS For Loop syntax 2:40 - Using a For Loop with a JSON Object 5:42 - Address JSON values inside a For Loop 7:40 - Summary 📄Documentation & Links: • For...
SSJS Stringify Function in Salesforce Marketing Cloud
Переглядів 6787 місяців тому
SSJS Stringify Function in Salesforce Marketing Cloud
SSJS Get & Set AMPscript Values in Salesforce Marketing Cloud
Переглядів 9807 місяців тому
SSJS Get & Set AMPscript Values in Salesforce Marketing Cloud
SSJS ParseJSON Function in Salesforce Marketing Cloud
Переглядів 1,2 тис.7 місяців тому
SSJS ParseJSON Function in Salesforce Marketing Cloud
SSJS Write Function in Salesforce Marketing Cloud
Переглядів 1,2 тис.7 місяців тому
SSJS Write Function in Salesforce Marketing Cloud
Introduction to SSJS in Salesforce Marketing Cloud
Переглядів 5 тис.7 місяців тому
Introduction to SSJS in Salesforce Marketing Cloud
Sendable Data Extension Best Practices in Salesforce Marketing Cloud
Переглядів 1,8 тис.8 місяців тому
Sendable Data Extension Best Practices in Salesforce Marketing Cloud
How to learn Salesforce Marketing Cloud
Переглядів 12 тис.9 місяців тому
How to learn Salesforce Marketing Cloud
Importing Dates into Salesforce Marketing Cloud
Переглядів 1,5 тис.10 місяців тому
Importing Dates into Salesforce Marketing Cloud
Journey Data and Contact Data in Salesforce Marketing Cloud
Переглядів 4,2 тис.11 місяців тому
Journey Data and Contact Data in Salesforce Marketing Cloud
Create new Marketing Cloud API Requests in Postman
Переглядів 3 тис.11 місяців тому
Create new Marketing Cloud API Requests in Postman
Setup Postman to use with Salesforce Marketing Cloud REST APIs
Переглядів 6 тис.Рік тому
Setup Postman to use with Salesforce Marketing Cloud REST APIs
Marketing Cloud Lead Capture Ads into CRM
Переглядів 3,6 тис.Рік тому
Marketing Cloud Lead Capture Ads into CRM
Marketing Cloud TikTok Lead Capture Ads - Install & Setup
Переглядів 3,9 тис.Рік тому
Marketing Cloud TikTok Lead Capture Ads - Install & Setup
Use ChatGPT to practice SQL in Salesforce Marketing Cloud
Переглядів 3,4 тис.Рік тому
Use ChatGPT to practice SQL in Salesforce Marketing Cloud
Einstein Generative AI in Salesforce Marketing Cloud
Переглядів 9 тис.Рік тому
Einstein Generative AI in Salesforce Marketing Cloud
Introduction to SQL in Salesforce Marketing Cloud: Lesson 6 - Case Statements
Переглядів 1,8 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 6 - Case Statements
Introduction to SQL in Salesforce Marketing Cloud: Lesson 5 - SQL Functions
Переглядів 2,3 тис.Рік тому
Introduction to SQL in Salesforce Marketing Cloud: Lesson 5 - SQL Functions

КОМЕНТАРІ

  • @sabhyatasaxena2190
    @sabhyatasaxena2190 2 дні тому

    This is really helpful.

  • @M.V.P23
    @M.V.P23 4 дні тому

    Hi Cameron, would you happen to have any videos on updating the SFMC SSO Certificate? I'm using Okta as my IdP.

  • @dominicalfonso2375
    @dominicalfonso2375 6 днів тому

    Hi Cam, I am stuck with this activity where in there is an error for my Decrypt call function. I followed all the steps and still getting an error message. Do I need to configure something? Hope I can get an answer, thank you so much.

  • @Santi_Bogari
    @Santi_Bogari 6 днів тому

    Hey Cam, the task is there at 1:05:58 under Lead activity. You can read: 'Contact Lead, You have an upcoming task.' It worked!

  • @sakthiganesh4060
    @sakthiganesh4060 9 днів тому

    Thanks! its helpful.

  • @kishorekumarj3092
    @kishorekumarj3092 9 днів тому

    Cameron i am getting the erro an exception occured while saving the integration

  • @bennorg8155
    @bennorg8155 11 днів тому

    slow down...

  • @mrs.woodward91
    @mrs.woodward91 15 днів тому

    Great video which helped me understand the Salesforce Data and how to build a journey with it. Thank you!

  • @sandhyasangati198
    @sandhyasangati198 16 днів тому

    Hi , I have a question, How can we access synchronized data extension in journey builder to create personalized email using salesforce objects. In this video you used lead object fields in email personalization how can you get those fields to create email. Please give me a solution, thanks in advance.

  • @India77076
    @India77076 24 дні тому

    I do not see the DE created at backend for me

  • @mkkillingsworth8842
    @mkkillingsworth8842 Місяць тому

    This helped so much, thank you!!!

  • @PhilDPino
    @PhilDPino Місяць тому

    Is it possible to make a specific journey only SendLog with this method? I want to limit the log to a specific journey I’m building like a send log for each Distributed Marketing Single Journey send

  • @monicamahesh6146
    @monicamahesh6146 Місяць тому

    HI Cameron, can you please share the github link

  • @NitinShrikoti
    @NitinShrikoti Місяць тому

    Hey Cam, have you posted videos related using what'sapp with SFMC?

  • @GabrielLozanoArguello
    @GabrielLozanoArguello Місяць тому

    @CameronRobert this is great and very informative. Could you elaborate on whether it is possible to store the results on a DE and how to get this Get function to run automatically rather than you having to refresh the browser. Thank you

  • @GabrielLozanoArguello
    @GabrielLozanoArguello Місяць тому

    @CameronRobert very usefull. Thank you for sharing. Is it possible to split by SF object? i.e leads or contacts?

  • @sorayaalmendro6676
    @sorayaalmendro6676 Місяць тому

    Hi Cameron! Thanks for the content. It is super helpful! Could you please share the guide link where we can find all those AMPscript Funtion References? I reckon SF has changed quite a bit that help page so I cant find that anymore.

  • @suhann7371
    @suhann7371 Місяць тому

    Ampscript fuction for reference - Its listing seems to be missing

  • @Manav-i7h
    @Manav-i7h Місяць тому

    hey , can anybody help with retrieving more than 2500 row from a data extension. Ws proxy is not working in sfmc cloudpage

  • @OleksandrKostetskyi
    @OleksandrKostetskyi Місяць тому

    Thank you for your work! When I try to use the code, I face a problem, no access to the data in Shared DE? ENT. does not work. What do you recommend?

  • @user-iy4xc8hr1z
    @user-iy4xc8hr1z Місяць тому

    Thank you Cameron! Can you teach us how to select more than one suppression list in Journey Build -> Email Activity -> Delivery Options -> Suppression List? Thank you!

  • @gowthamrajs8887
    @gowthamrajs8887 Місяць тому

    It's very useful. Thank you!

  • @MyJms
    @MyJms Місяць тому

    Thanks for your tutorial, i want to do a practice. but in my SFMC workspace, don"t see content builder. how you can help me. i have a trial version

  • @aliseenaformuly7721
    @aliseenaformuly7721 Місяць тому

    How can I practice with the software? Is it free? How can I use it?

  • @stefanbubanj1134
    @stefanbubanj1134 2 місяці тому

    Fantastic!

  • @tomaszporst
    @tomaszporst 2 місяці тому

    Amazing content! Really enjoyed this!

  • @SoniaGueyouche
    @SoniaGueyouche 2 місяці тому

    Thanks for sharing your Knowledge! Question on when the Data extension source of the attribute group gets updated with new fields - it seems it does not automatically update the attribute group, could you please explain how to refresh the attribute group so new DE fields are available?

  • @ankitabafila722
    @ankitabafila722 2 місяці тому

    31:00

  • @BiaLima1411
    @BiaLima1411 2 місяці тому

    Hello! Could you tell me if it is possible to clone a jorney builder?

  • @AkashBansalcrazy
    @AkashBansalcrazy 2 місяці тому

    Best channel

  • @Patikan
    @Patikan 2 місяці тому

    Your tutorials are the best

  • @Ceaser-m6c
    @Ceaser-m6c 2 місяці тому

    Thank you so much for this Video @CameronRobert, Your content is my GoTo whenever in need related to SFMC, Would appreciate if you could do more content on REST & SOAP API's as the video on Creating an API request using PostMan is outdated as the information is outdated in Developer Document that you point out, Appreciate what you do for the community, Cheers!!

  • @tharuniganesh
    @tharuniganesh 2 місяці тому

    You are amazingggggggggggggggggggggggggggggggggg

  • @Sahilbc-wj8qk
    @Sahilbc-wj8qk 2 місяці тому

    in installed packages i;m unable to see the new package button [ in developer ]

  • @arvindts8502
    @arvindts8502 2 місяці тому

    Hi Cam, Your videos are very informative, thanks for all the video you do! One help, could you please reduce your background music on your upcoming video that would more helpful, with that music I feel like disturbed. Please lower the music intensity Thanks a lott!!

    • @CameronRobert
      @CameronRobert 2 місяці тому

      Sorry about that, I adjusted my audio setup before recording this one. Thanks for letting me know

  • @brunovetter
    @brunovetter 2 місяці тому

    🙌

  • @ShivMehra-y5q
    @ShivMehra-y5q 2 місяці тому

    This video requires hefty pre hand knowledge of journey builder in itself and in no ways is for novices

  • @ShivMehra-y5q
    @ShivMehra-y5q 2 місяці тому

    Hi Cameron, usually your videos are super interesting and full of knowledge but this one was just so confusing. You kept talking about scenarios and then arranging the journey based on it but you could've used a real life journey to explain the logic and features. There's no takeaway for me from this video.

    • @CameronRobert
      @CameronRobert 2 місяці тому

      Thanks for the feedback Shiv, this video was less practical than my usual as I wanted to cover design concepts from a marketing perspective; ways to think about planning and designing a journey (as a marketer). I’m planning to cover journey development in following videos.

  • @UmangDwivedi-f7b
    @UmangDwivedi-f7b 2 місяці тому

    @cameron Robert How can I query First Name from All subscriberlist ? I am getting error while using "First Name" in query studio.

  • @Kiran-lt3jr
    @Kiran-lt3jr 2 місяці тому

    Hi Camron, Along with SubscriberKey/ContactKey with Mobile Number and rest of the fields like Email Address, Source and Modified using SQl. I created a DE with the above mentioned attribute names, then I want to create a SQl activity using these fields. But unfortunately, I can only call the SubsriberKey only. When I want to enter other fields it triggers an error like Invalid Column name.

  • @anenglishteacherfromiran
    @anenglishteacherfromiran 3 місяці тому

    Thank you so much

  • @ItsMeUrsFa-pw7yj
    @ItsMeUrsFa-pw7yj 3 місяці тому

    I feel little bit hard to understand the English may be due to Aussie slang influence..

  • @swarnasubrahmanyam7791
    @swarnasubrahmanyam7791 3 місяці тому

    Hello Cam. I am trying to use this in my SFMC Instance . But unfortunately Inspect in Companion is greyed out and I am unable to turn it to blue. May I know how to use this extension? Is there any thing need to be done? On right hand side I am seeing only REST but not the other two (LEGACY and CONTA CT META ).

  • @swapnilverma7691
    @swapnilverma7691 3 місяці тому

    Amazing video!! Thank you

  • @GabrielLozanoArguello
    @GabrielLozanoArguello 3 місяці тому

    Great video and very informative cameron. Would you be able to make one regarding cloud pages for event registrations, as a follow up on this one? like what would happen when the customer receives this email. making it a full E2E flow

  • @abdulraheemzahed4399
    @abdulraheemzahed4399 3 місяці тому

    Please, Create videos on Personalization studio

  • @Divdon11
    @Divdon11 3 місяці тому

    Hi bro thanks for uploading all this informative videos.