We are setting up a Service Center, with Power pages as a front end, for our internal staff.
Staff with be able to create many different types of cases, IT request, Equipement requests, translations request and a few more. Each type of case requires different fields and may have different processes.
What would be a best practice for setting this up?
Any insight would be useful.
Hi Hangry,
I tried to test what Kapil said, and it worked.
Please follow the steps I have given below to try:
1. Use “Business Rule” to control which fields to hide based on “Case Type”(for example “Question”).
2. Use JS to switch BPF.
Add web resource
Use your own BPF's GUID in “setActiveProcess()”
function swBPF(executionContext){ var formContext = executionContext.getFormContext(); var caseType = formContext.getAttribute("casetypecode").getValue(); switch(caseType){ case "1": formContext.data.process.setActiveProcess("d0cff495-0e28-ed11-9db1-000d3a32bab7");break; case "2": formContext.data.process.setActiveProcess("0ffbcde4-61c1-4355-aa89-aa1d7b2b8792");break; case "3": formContext.data.process.setActiveProcess("0ffbcde4-61c1-4355-aa89-aa1d7b2b8792");break; default: formContext.data.process.setActiveProcess("0ffbcde4-61c1-4355-aa89-aa1d7b2b8792");break; } }
Add an onload event to the page.
3. “Case Type” is the before and after comparison of Question and not Question.
Before:
After:
Hello,
There are multiple ways you can achieve this.
1. You can hide and show the fields, sections or tab based on the selection of the type of case.
2. You can have different business process flow based on the type of case and have common fields on the case form.
Do let me know if you need more details.
If you find this helpful, please mark it verified
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156