You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Request for implementing an informational warning in Groovy for modified form in EPBCS

in Planning 1 comment

Description:
Hello,

We are trying to implement an informational warning message upon saving a form (Customer Schedule – Overdue Receivables) in Oracle EPBCS (version 24.05.66).

Objective:

  • Display a warning whenever the form is modified.
  • Do not block data save.
  • The warning should appear even if only a single cell in the form is modified.

Example of desired behavior (Groovy):

operation.grid.dataCellIterator().each { cell ->    if (cell.isEdited()) {        cell.addValidationWarning(            "If the forecasted collection of overdue receivables has been modified, " +            "please check the forecasted payments to suppliers."        )    }}

Questions:

  1. Is it officially possible to implement this type of warning in EPBCS using Groovy Script?
Tagged:

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!