Posts

Showing posts with the label aras

Use Case 12: Allow User to perform Mass Sign Off Using Action

 In this section, we will see how to perform mass signoff functionality using the ARAS action Use Case: "As an Approver, I want have the functionality to perform mass sign off option to complete the approval process using  the action" ARAS Version:  Release 25  Build 14.0.11.36751 Assumptions: All the selected change object should be in Same State. All the selected change object should have same Workflow. Validations: Below validation are performed while using this action Locked Change Object Validation State Validation System Validation Advantages: This action can be hooked to any change objects. This action dynamically fetches the available paths. So, this action can be used on change objects with any state. This action helps the user to perform mass signoff within a fraction of a second. Demo: LinkedIn: https://www.linkedin.com/in/gobikrishnanraja/

Technical Tip 4: Change Label Color & Label Text in Form

  In this section, we will see how to change the color and text of a field in ARAS Forms Use Case: "User wants to change the color and text of a field based on certain properties" You can use below code snippet to achieve this functionality Hook: This method should be attached to any item type form On Load Event var field = document.getElementsByName("name")[0];  var label = field.getElementsByClassName("sys_f_label")[0]; label.style.color = "red"; label.style.innerHTML = "Changing Field Label"; LinkedIn: https://www.linkedin.com/in/gobikrishnanraja/

Use Case 3: Add Files to any Document Item Revision

  In this Demo, We will see how a files can be browsed through custom form window and load to any revisions of a document item. "Use Case: User wants to add file item to previous revisions of a Document" Action Name: Upload Files to Document(s) Example: Created Document DOC000001 and Revised to E Revision. Let see how we can add the Files to older revisions of this document LinkedIn :  https://www.linkedin.com/in/gobikrishnanraja/