Hello,
I'm struggling to a strange behavior, on the "OnSelect" event of a button I have that code (a simple Patch command), it works well.
Patch(
FDP_FEUILLEPRESENCE;
Defaults(FDP_FEUILLEPRESENCE);
{
FOR_ID: LstFormations.Selected.IDFORMATION;
SAL_ID: LstSalles.Selected.IDSALLE;
SEC_ID: LstSecteurs.Selected.IDSECTEUR;
INSTRUCTEUR: currentInstructor.FullName;
UPNINSTRUCTEUR: currentInstructor.Email;
STATUT: "OPEN"
}
)
The problem is that I'm unable to chain another action after like a simple notification like that.
Patch(
FDP_FEUILLEPRESENCE;
Defaults(FDP_FEUILLEPRESENCE);
{
FOR_ID: LstFormations.Selected.IDFORMATION;
SAL_ID: LstSalles.Selected.IDSALLE;
SEC_ID: LstSecteurs.Selected.IDSECTEUR;
INSTRUCTEUR: currentInstructor.FullName;
UPNINSTRUCTEUR: currentInstructor.Email;
STATUT: "OPEN"
}
);
Notify("Success")
The editor displays an error : characters are used in the formula in an unexpected way
I don't see where I'm wrong... could you help me please?
Best Regards,