Home » Applications » Oracle Fusion Apps & E-Business Suite » Responsibility without MO: Operating Unit set
Responsibility without MO: Operating Unit set [message #175238] Thu, 01 June 2006 06:51 Go to next message
patelhemantg
Messages: 25
Registered: May 2006
Junior Member
Hi all,

I need to list responsibilities for which MO: Operating Unit system profile is not set.

I am trying to find data with these tables: FND_PROFILE_OPTION_VALUES, FND_RESPONSIBILITY

11i version => 11.5.5.

TIA,

Hemant Patel.




Re: Responsibility without MO: Operating Unit set [message #175250 is a reply to message #175238] Thu, 01 June 2006 07:17 Go to previous messageGo to next message
manwadkar
Messages: 104
Registered: September 2005
Location: Washington DC
Senior Member

You can fine tune this query....

select * from fnd_responsibility_vl D
where
D.RESPONSIBILITY_NAME ='Application Developer'
AND D.responsibility_id NOT IN
(
select c.level_value
from
fnd_profile_options A,
fnd_profile_options_tl B,
fnd_profile_option_values C
where
a.PROFILE_OPTION_NAME=b.PROFILE_OPTION_NAME
and b.user_profile_option_name = 'MO: Operating Unit'
and b.LANGUAGE='US'
and a.PROFILE_OPTION_ID = c.PROFILE_OPTION_ID
and c.level_value = D.RESPONSIBILITY_ID
and level_id=10003
)
Re: Responsibility without MO: Operating Unit set [message #175252 is a reply to message #175250] Thu, 01 June 2006 07:23 Go to previous message
patelhemantg
Messages: 25
Registered: May 2006
Junior Member
Hi Manwadkar,

That really works.

Thanks a LOT...

Regards,
Hemant Patel.
(patelhemantg@yahoo.com)
Previous Topic: What are all the DFF in AP and AR?
Next Topic: regarding query_only=yes in oracle cash management
Goto Forum:
  


Current Time: Wed Jun 26 11:56:57 CDT 2024