Hi,
Scenario:
I need to create a lobby data source where 2 views are involved.
View1- DOC_ISSUE_REFERENCE
View2- PROJECT_BASE
from view1 has project title,
view 2 has project id and manager name
these two view has no relation between them, but I use regexp_substr to sort out view2.project_id from view1.title
and using that project id I fetch the manager.
Since lobby data source can only use one view, I have implemented this using IAL.
Query:
select a.*, b.manager from DOC_ISSUE_REFERENCE a, PROJECT_BASE b
where
b.project_id = REGEXP_SUBSTR (a.title,'(\S*)')
Problem:
I need the result per manager in lobby condition, using lobby datasource. But it is showing an error while clicking lobby element and no data is getting populated, Is there anyway to do this.
Or do I have to create a custom column for manager to solve this issue?
Please Advise...
Thanks in advance