lazovic
Could there be an error in the formula I used to create the record in the main entity? Because it does not update at all.
The formula script I used is as follows;
if (entity\isNew()) {
record\create(
'Ucustarihi',
'name', name,
'dateStart', ucusTarihi,
'dateEnd', ucusTarihi,
'biletId', id,
'assignedUserId', assignedUserId
);
}
if (entity\isAttributeChanged('ucusTarihi')) {
record\update('Ucustarihi', ucustarihiId, 'dateStart', ucusTarihi, 'dateEnd', ucusTarihi);
}
Also thank you for your patience and helpfulness.
Could there be an error in the formula I used to create the record in the main entity? Because it does not update at all.
The formula script I used is as follows;
if (entity\isNew()) {
record\create(
'Ucustarihi',
'name', name,
'dateStart', ucusTarihi,
'dateEnd', ucusTarihi,
'biletId', id,
'assignedUserId', assignedUserId
);
}
if (entity\isAttributeChanged('ucusTarihi')) {
record\update('Ucustarihi', ucustarihiId, 'dateStart', ucusTarihi, 'dateEnd', ucusTarihi);
}
Also thank you for your patience and helpfulness.
Comment