Hi All,
I am trying to implement a custom field so our users can see some historical information on work tasks. I can get the SQL to work using the SQL query tool, my issue seems to be with my arguments.
My code is as follows:
Argument:
v.source_ref1
Select Statement:
select * from (select performed_work from jt_task_CFV where (state like '%Done' or state like 'Finished') and source_ref1 =: source_ref1 order by TASK_seq desc ) where rowNum = 1
The error I receive is “The Column source_ref1 referred to in table t is not an approved persistent Custom Attribute”
Any assistance would be much appreciated.