SAP P_C4H340_34 SAP Certified Development Professional – SAP Commerce Cloud Developer Online Training
SAP P_C4H340_34 Online Training
The questions for P_C4H340_34 were last updated at Nov 19,2024.
- Exam Code: P_C4H340_34
- Exam Name: SAP Certified Development Professional - SAP Commerce Cloud Developer
- Certification Provider: SAP
- Latest update: Nov 19,2024
What can you configure on the Endpoint Configuration page in Cloud Portal? Note: There are 3 correct answers to this question.
- A . SSL Certificate
- B . IP Filter Sets
- C . Trusted Certificates
- D . Redirect Sets
- E . Host Alias Sets
In an extension named myext, you defined Pump, a subtype of the Product item type with a property named efficiency. You have also extended the productDTO bean to have an efficiency property.
To copy the efficiency property to the productDTO, what do you need to do? Note: There are 2 correct answers to this question.
- A . Write a PumpProductConverter class that extends AbstractPopulatingConverter, and copies the efficiency property from the Pump item to the productDTO bean if the item is an instance of Pump. Configure an instance of this converter in myext-spring.xml.
- B . Make sure the definition of the Pump item type defines the efficiency attribute with persistence type property. When you run at all, the productConverter class generated in bootstrap/gensrc will copy the efficiency property to the productDTO.
- C . Create a PumpPopulator class that extends ProductPopulator and, if necessary, copies the efficiency property from the Pump item to the productDTO bean. In myext-spring.xml, redefine the productPopulator alias to point to an instance of PumpPopulator.
- D . Write a PumpAttributePopulator class that copies the efficiency property from the item to the DTO only if its method is passed an instance of PumpModel. Define a bean for this new class in myext-spring.xml, and use a modifyPopulatorList bean to add it to the productConverter’s list of populators.
What can you do in the Builds workspace in Cloud Portal? Note: There are 2 correct answers to this question.
- A . Delete a build that is no longer needed
- B . View the history of the past deployments of a selected build
- C . Deploy a successful build to a certain environment
- D . Rebuild a successful build to do a performance test
What is the effect of the redeclare attribute within an itemtype definition? Note: There are 2 correct answers to this question.
- A . It can be used to change the type of an attribute.
- B . It can be used to change the class of an itemtype.
- C . It can be used to change the name of an attribute.
- D . It can be used to change the modifier of an attribute.
You are implementing two new independent extensions, extension A and extension B, both of which extend and overwrite a bean of the core platform.
How can you make sure the bean from extension A doesn’t override the one from extension B? Note: There are 2 correct answers to this question.
- A . Use the beans’ parent attribute in extension B to specify the core bean.
- B . Add only one of the extensions into localextensions.xml at the same time.
- C . The beans are loaded in alphabetical order; therefore, extension B takes precedence.
- D . Define a dependency wherein extension B requires extension A
When a customer places an order using the default order management process defined in the Y accelerator fulfilment process extension, when does the fulfillment process send the notification that the order has been placed?
- A . After the order has been fraud checked
- B . After the order has been completely sourced
- C . At the first stage of the fulfillment process
- D . After the payment has been processed
You want to add a new feature using a classification system.
What should you pay attention to? Note: There are 2 correct answers to this question.
- A . Use feature descriptor values if the values of the new feature are limited to a selection.
- B . Create an empty classification unit even if the new feature doesn’t have a unit.
- C . Use a feature descriptor to represent the name of the new feature and assign it to the product.
- D . Create a classifying category with an attribute assignment model and assign it to the product.
Why are rule-aware objects (RAOs) used in the rule engine? Note: There are 2 correct answers to this question.
- A . To store the configuration of the rule engine
- B . To provide the data as facts in rule conditions and actions
- C . To persist the results of the rule evaluation
- D . To eliminate unnecessary data provided by complex objects
To define the data that gets extracted into the Solr index for searching, what do you need to provide? Note: There are 2 correct answers to this question.
- A . A flexible search query for an incremental update
- B . A solrconfig XML file
- C . An ImpEx script for a full load
- D . A flexible search query for a full load
How is the primary key (PK) for an SAP Commerce Cloud item created? Note: There are 2 correct answers to this question.
- A . It is automatically generated and assigned.
- B . It is generated from a counter and the type code of the item.
- C . It is generated from the item’s unique business key(s).
- D . It is provided by the user in the Create wizard or as a column value in ImpEx.