SAP P_C4H34_2411 Practice Exams
Last updated on Apr 01,2025- Exam Code: P_C4H34_2411
- Exam Name: SAP Certified Professional - Developer - SAP Commerce Cloud
- Certification Provider: SAP
- Latest update: Apr 01,2025
What should you pay attention to when connecting two widgets?
- A . The output socket’s type does not have to be the same as the input socket’s type.
- B . The input socket’s type should be the same as the output socket’s type.
- C . The output socket’s type must be the same as the input socket type.
- D . The input socket’s type must be a sub type of a composed item type.
Which of the following items are configured via a direct relation to a BaseStore? Note: There are 3 correct answers to this question.
- A . A list of Content Catalogs providing the pages, slots, and other CMSItems shown to Customers
- B . A list of Product Catalogs providing the product info shown to Customers
- C . A list of customers associated with the BaseStore.
- D . A list of warehouses that support the delivery
- E . A list of points of service that represent local branches
You need to create a new custom promotion based on customer reviews for a product. You create a customPromotion extension with a new Rule Aware Object to keep customer reviews.
In which file will you define this new Rule Aware Object?
- A . In the customPromotion-backoffice-config.xml file
- B . In the customPromotion-spring.xml file
- C . In the customPromotion-beans.xml file
- D . In the customPromotion-items.xml file
In SmartEdit, what can you do with variations defined for a customization? Note: There are 3 correct answers to this question.
- A . Assign the customer a custom search profile if a variation is in effect.
- B . Apply a variation to customers who belong to a combination of segments.
- C . Show different content in a slot if a variation is in effect.
- D . More than one variation in a customization can be triggered at the same time.
- E . Give the customer a coupon if a variation is in effect.
You want to display a custom CMS component in an Accelerator-based storefront.
What can be configured or implemented regarding this CMS component? Note: There are 2 correct answers:
- A . Redefine the default CMSComponentController alias
- B . Create a JSP named(componentTypeCode) jsp
- C . Implement a renderer in the cmsComponentRenderer Registery
- D . Create a controller in the cmsComponentControllerRegistry
Which of the following relations are defined in the data model for personalization (based on SmartEdit)? Note: There are 2 correct answers to this question.
- A . A one-to-many relation between CxExpressionTrigger and CxSegment.
- B . A one-to-many relation between CxCustomization and CxVariation.
- C . A many-to-many relation between CxVariation and CxAbstractAction.
- D . A many-to-many relation between CxSegmentTrigger and CxSegment
In an Accelerator-based storefront, which of the following would allow you to display a custom CMS Component? Note: There are 2 correct answers to this question.
- A . Create a JSP named [componentTypeCode].jsp that pulls data from a [ComponentTypeCode]Data object.
- B . Configure a custom controller bean and redefine the DefaultCMSComponentController alias to point to it.
- C . Configure a renderer in the cmsComponentRendererRegistry that doesn’t need to use a data object or a view.
- D . Create a controller for this component and register it in the cmsComponentControllerRegistry
Which of the following are valid types of environments in SAP Commerce Cloud in the public cloud? Note: There are 3 correct answers to this question.
- A . Staging
- B . Production
- C . Pre-Production
- D . Test
- E . Development
Which of the following configurations can be done to a ContentSlot? Note: There are 2 correct answers to this question.
- A . Assign it to a maximum of one page using a ContentSlotForPage item.
- B . Add a list of CMSComponents to it.
- C . Assign it to one or more pages using ContentSlotForPage items.
- D . Define valid CMS Components for it by modifying the ElementsForSlot relation.
You are creating a business process (mybusinessprocess) that requires an action (actionB) to pass an info String value to another action (actionE) occurring later in the process.
What do you need to do to make this possible? Note: There are 2 correct answers to this question.
- A . Create a myBusinessProcess item type that extends BusinessProcess and adds an info String property. Use an instance of this type to start the process in your Java code with businessProcessService.startProcess(new myBusinessProcessModel).
- B . Create a myBusinessProcess item type that extends BusinessProcess and adds an info String property. Specify myBusinessProcessModel as the processClass argument to the process
- C . Create an event myEvent that extends the AbstractProcessEvent and adds an info String property. Register the target action as a listener for this event. Fire the event with eventService.publishEvent (myEvent).
- D . In the mybusinessprocess.xml definition file, define an info event and configure actionB as the event’s originator and actionE as its target. Trigger the event in the class implementing actionB using businessProcessService.triggerEvent(info).