Hello,
I have an equipment initialization process (1) , followed by another process of allocating this equipment to a user (2).
I have created a Report - "Equipment allocation" and I want to add a calculated column to this report that brings in the "Series" of the equipment from the Initialization process.
I have this query:
(select dbo.ClearWFElemAdv(WFD_AttChoose2)[which is the "Series" column in process (1)] from wfelements where wfd_dtypeid=102[which is the form id of process (1)] and wfd_id=3557)
In my second (2) process I saved the equipment Instance ID from the 1st process in WFD_AttText1.
I want to replace "3557" with the Instance ID from Initialization process which I have in second process (WFD_AttText1) and it is not working.