Function findValueInCase

  • Finds and returns a value from a case object using a dot-notation attribute path. This function searches for a value in an object by traversing nested properties using a dot-separated attribute name (e.g., "parent.child.value").

    Parameters

    • aCase: Object

      The case object to search within

    • attributeName: string

      The attribute name or dot-notation path to the desired value

    Returns any

    The value found at the specified path, or null if the path does not exist