A company needs to create a new quote estimation process for its services team. This process involves multi; steps. The user needs to enter a variable number of rows of data in order to calculate the correct final price f the quote. The data that needs to be entered in each row includes:
* Service category
* Number of hours
* Hourly rate
The number of hours should be multiplied with the hourly rate to calculate the total for each row.
Which three OmniScript elements should the consultant recommend to meet these requirements?
Choose 3 answers
Correct Answer: A,C,E
Explanation
To create a new quote estimation process that involves multiple steps and a variable number of rows of data, the consultant should recommend the following OmniScript elements:
* Edit Block: This is an element that allows the user to add, edit, or delete multiple rows of data in a table-like format. It can be used to capture the service category, number of hours, and hourly rate for each row.
* Formula: This is an element that allows the user to perform calculations on data using mathematical expressions. It can be used to calculate the total for each row by multiplying the number of hours with
* the hourly rate.
* Input Block: This is an element that allows the user to enter data using various input types, such as text, number, date, picklist, etc. It can be used to display the formula result for each row and the final price for the quote.
The elements that are not suitable for this scenario are:
* Multi-select: This is an element that allows the user to select multiple options from a list. It is not relevant for this scenario, as the user needs to enter data in each row, not select from predefined options.
* Step: This is an element that organizes the OmniScript into one or more pages. It is not relevant for this scenario, as it does not capture or display any data.
Recent Comments (The most recent comments are at the top.)
Good answer should be CDE
Input Block (B) is critical for data entry.
Formula (D) is necessary for calculations.
Step (C) helps in managing multi-step processes and organizing the flow of the OmniScript.
The Edit Block (A) is not as relevant in this context because it is more suited for scenarios involving the editing of existing data rather than for straightforward data entry and calculations.
Therefore, BCD (Input Block, Formula, and Step) is the recommended set of OmniScript elements for the quote estimation process. This combination aligns with the needs for capturing input, performing calculations, and managing the process flow effectively.