An Adobe Commerce Architect designs a data flow that contains a new product type with its own custom pricing logic to meet a merchant requirement.
Which three developments are valid when reviewing the implementation? (Choose three.)
Correct Answer: A,C,F
Explanation
According to some tutorials45, creating a custom product type in Adobe Commerce involves several steps, such as:
* Creating a product_types.xml file in etc folder to declare the new product type
* Creating a custom type model that extends from an abstract product type model
* Creating a custom price model that extends from an abstract price model
* Creating a layout file for the new product type
* Creating a data patch to register the new product type
Based on these steps, I would say that three possible developments that are valid when reviewing the implementation are:
* A. Content of the etc/product_types.xml file
* C. Custom type model extended from the abstract Product Type model
* F. New price model extending \Magento\Catalog\Model\Product\Type\Price These developments would allow creating a new product type with its own custom pricing logic and attributes.