Open and Manage Forms Using Plugins
You can open Oracle Fusion Field Service forms directly from custom plugins using the Plugin API. Plugins can target activity, inventory, or resource forms; prefill form fields; restore drafts; and open submitted forms. This reduces custom UI work and speeds up changes to mobile worker workflows.
You can use the close method of Plugin API to open forms or perform actions using the following parameters:
| Parameters | Description | Notes |
|---|---|---|
| backScreen | Page to return to | Must always be "open_form". |
| backFormLabel | Label of the form to open | Required when targeting a specific form. |
| backActivityID | Activity ID if opening the form for a specific activity | Use when context is an activity. |
| backInventoryID | Inventory ID if opening the form for a specific inventory | Use when context is an inventory. |
| BackResourceID | Resource ID if opening the form for a specific resource | Use when context is a resource. |
| backFormParams | Key-value pairs to pre-fill form fields | Used to pre-populate form inputs. |
For more information, see Mobile Plugin Framework guide.