Hi,
I am trying to calculate the throughput time of each rework loop using Source- Target and failed due to no-common table errrors. My code is like below:
Minute_Betwen(
Source("_CEL_O2C_ACTIVITIES"."EVENTTIME", remap_values("_CEL_O2C_ACTIVITIES"."CHANGED_TO", ,'ZA','ZA'], Null)),
Target("_CEL_O2C_ACTIVITIES"."EVENTTIME",
remap_values ( "_CEL_O2C_ACTIVITIES"."CHANGED_FROM" , ;'ZA','ZA'], Null))
)
I got the errors that no common table found since both Activity table and temporary table for Souce/Target are N side.
Do you have any ideas how to work around this?