Select b.user_name,
c.responsibility_name,
a.START_DATE,
a.END_DATE
from apps.fnd_user_resp_groups_direct a,
apps.fnd_user b,
apps.fnd_responsibility_tl c
where a.user_id = b.user_id
and a.responsibility_id = c.responsibility_id
and b.user_name='&username';
output:
USER_NAME RESPONSIBILITY_NAME START_DATE END_DATE
---------- ------------------------------ ------------------ ------------------
AUSER Mycompany Move Order 16-JAN-17 25-JAN-17
c.responsibility_name,
a.START_DATE,
a.END_DATE
from apps.fnd_user_resp_groups_direct a,
apps.fnd_user b,
apps.fnd_responsibility_tl c
where a.user_id = b.user_id
and a.responsibility_id = c.responsibility_id
and b.user_name='&username';
output:
USER_NAME RESPONSIBILITY_NAME START_DATE END_DATE
---------- ------------------------------ ------------------ ------------------
AUSER Mycompany Move Order 16-JAN-17 25-JAN-17
Comments
Post a Comment