Sunday, February 8, 2015

Setting Operating Unit Mode mo_global.get_current_org_id

In R12 Development, we are using mo_global.get_current_org_id profile in parameters to get default value based on operating unit.
But Most of the cases these values returning null.

Ex: techwah, techwah HK/CN programs.
 
Application Way of doing it is
 
 
Please go to System Administration --Concurrent programs-- Go to Request tab --Select Operating Unit value as Single or Multiple.

This will stamp multi_org_category in fnd_concurrent_programs .


In case of some restrictions. Backend update also can be used

For this, from back end  we need to run below query or from application  we need to update multi org category from system administration responsibility for that particular concurrent program.
Query's
update fnd_concurrent_programs 
set multi_org_category = 'S'
where concurrent_program_name = <conc prog name> 

  select multi_org_category from fnd_concurrent_programs where
concurrent_program_name = <conc prog name>