[DONE] Record Id in Calculation - NULL in ProcFu

Hi community, just came across an issue where I created a calculation field with Record Id which is working fine and giving the exact id of the record…But don’t know why when I access this specific value in ProcFu, it shows always NULL while other calculation field values are working fine.

Using ProcFu with following



:
Before Render
my_variables[“teamMember_Id”] = auth_item_values[“team_member_id”];
print my_variables[“teamMember_Id”]

Is ProcFu expecting a number? The default record_id in a calc field for some reason seems to be a string you could try:
parseInt(@record_id,10) that will force the calc field to deliver a integer

4 Likes

Thanks a lot…It worked perfectly