Salesforce Related Exams
B2C-Commerce-Developer Exam
Key topics include:
B2C Commerce data models
Business Manager configuration
APIs and services
Site development and deployment
Security and troubleshooting
The Salesforce B2C-Commerce-Developer Exam tests skills in building and customizing eCommerce storefronts on Salesforce Commerce Cloud, while the MCE-Dev-201 Exam focuses on Marketing Cloud Engagement, covering APIs, AMPscript, SQL, and automation for personalized marketing campaigns.
A Digital Developer is tasked with setting up a new Digital Server Connection using UX Studio in their sandbox.
Which three items are required to accomplish this task? (Choose three.)
A Newsletter controller contains the following route:
Server.post(‘Subscribe’, function (req,res,next){
var newsletterForm = server.forms.getForm(‘newsletter’);var CustomObjectMgr = require(‘dw/object/CustomObjectMgr’);
if(newsletterForm.valid){
try{
var CustomObject =
CustomObjectMgr.createCustomObejct(‘NewsletterSubscription’, newsletterform.email.value);
CustomObject.custom.firstName = newsletterForm.fname.value;
CustomObject.custom.lastName = newsletterForm.lname.value;-
} catch(e){
//Catch error here
}
}
next();
});
Assuming the Custom Object metadata exists, why does this route fail to render the newsletter template
when the subscription form is correctly submitted?
A retailer notices that the Account Addresses page is showing the wrong shopper’s address.
Which tool should the developerstart with to identify the issue?