What are three ways to implement custom post Order processing? (3 answers)

What are three ways to implement custom post Order processing? (3 answers)
A . Use a Salesforce workflow rule that executes when an Order record is created.
B . Extend cc_hk_invoice tohandle custom business logic post Order processing
C . Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business logic.
D . Modify or add custom Cart formula fields to handle logic.
E . Use Process builder to implement business processes that execute when an Order record is created.

Answer: B,C,E

Explanation:

Three ways to implement custom post Order processing are:

Extend cc_hk_invoice to handle custom business logic post Order processing. This hook allows modifying the invoice data or performing additional actions after an Order is placed. For example, the hook can send an email notification or update a custom field on the invoice record.

Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional

business logic. This hook allows specifying a custom Visualforce page that will be displayed after an Order is placed. The custom page can include additional business logic or user interface elements. Use Process Builder to implement business processes that execute when an Order record is created. Process Builder is a tool that allows creating workflows and actions based on criteria and conditions. For example, Process Builder can create a task, send an email, or update a record when an Order record is created.

Salesforce Reference: B2B Commerce and D2C Commerce Developer Guide, Hooks, Process Builder

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments