Search 800 + Posts

Apr 14, 2023

OIC flow to Update Resource data ( Drag and Drop functionality on Resource Tree /Gantt ) in OFS

 In Oracle Field Service Cloud, the Gantt chart is a visual representation of the schedule for a service request. It shows the tasks that need to be completed, as well as the resources that are assigned to each task. The Gantt chart can be used to track the progress of a service request and to identify any potential delays.

Resource Tree/Gantt

Resource tree view in OFSC show a hierarchical view of your organization’s resources, typically sorted by geographical region. The resource tree displays to the left of the page.
You can hide or unhide the resource tree using the pin icon. This is how the resource tree with pin button is displayed: 
    

Also User /dispatcher has option to drag and drop the resources from one node of this hierarchical structure to another ,for example 

  1. A Technician move from one office to another or one Team to other 
  2. A team move from on branch to other 
  3. whole Branch move from one Region to Another 
When Team /branch/Region etc move then all the technician in those need to move too, and standard functionality of OFS take care of that , for example if a Tech move from Team1 to Team2 then standard OFS functionality update all the standard properties , but 
  1. if there are any custom properties then that will not be copied with the move 
  2. Also if there are any upstream Source system , then all these changes need to update in source system
Similarly if dispatch add a new resource to team/branch or create a new team then there is need to send the newly created resources/team etc to source system



In this blog post we are discussing 
  1. How to update the custom properties when resources are on the move 
  2. How to send updates to source system about these move
To handle these requirements we can design and APP based Orchestration OIC flow and subscribe OIC flow to OFS events related to Resources
  1. Resource Created 
  2. Resource Updated 
and then the OIC flow create branch to send updates on OFS to Source system as well as call Update  properties APIs to update the custom properties values

  1. Create OIC flow and subscribe to Resource Create /Update
  2. Check what node has move
    1. If this is a Child node like TECH then call 
      1. OFS APIs to update Custom Properties of Resource as well as 
      2. Call REST API and Send the change back to Source System
    2. If this is a parent node ( Team/Branch etc), 
      1. Call OFS APIs to get all the active child of the parent node and then for each of the Child 
      2. Call OFS APIs to update Custom Properties of Resource as well as 
      3. Call REST API and Send the change back to Source System.










No comments:

Post a Comment