Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to joaoc1131

    That means your local!skill variable does not contain a property named "idSkill" (at least at one particular iteration of a!forEach()), yet you're trying to reference the property by dot-notation anyway. 

    The "real" solution for this would of course be to ensure that your "local!skill" variable is clean, i.e. ensuring it always contains that property (unless it's null/empty), but as a quick workaround, you can replace fv!item.idSkill with property(fv!item, "idSkill", null()), which will attempt to access the "idSkill" property from the current iteration, and if none is found, return null instead.

Children