0
Can I execute a script after place Date on field date
Can I execute this script after a place a Date on example 'Real 3'.
Appreciate.
let myID := this;
let k := sum('Attributes Documents'.Hours);
let h := sum('Attributes Documents'.Budget);
let newRec := (create 'Issues Revisions');
let newcd := CodDoc;
let newcl := Document;
let newrA := 'Attributes Documents'.'Real 3';
newRec.(CodDoc := newcd);
newRec.(Document := newcl);
newRec.(Date := today());
newRec.(Hours := k);
newRec.(Budget := h);
newRec.(Backup := myID);
newRec.('Real 3' := last(newrA))
Copy
5 Antworten
-
If there is no answer, I assume that it is not possible.
-
Hola Rafael,
there must be an Trigger after Change on every Date field... did you try it? Normalmente this must work as well as on other fields. What is your goal exactly?
-
My goal is when I insert a Date on a field 'Real 3' ejecute the script. and create another table with all issues for cliente review, by each document. I have 3 issues for client review Real 3,4,and 5 .
Content aside
- Status Answered
- vor 1 JahrZuletzt aktiv
- 5Antworten
- 46Ansichten
-
2
Folge bereits