Setting Up Multi Org Structure in R12 (MOAC) - ALL ORACLE APPS
Setting Up Multi Org Structure in R12 (MOAC) - ALL ORACLE APPS
Setting Up Multi Org Structure in R12 (MOAC) - ALL ORACLE APPS
1/68
2/21/2014
Define Location
Open the E-Business Suite and navigate to Human Resources, Vision Enterprises Responsibility:
Human Resources
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
2/68
2/21/2014
Navigation
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
3/68
2/21/2014
SELECT *
FROM HR_LOCATIONS_ALL
WHERE location_code = 'XXAOA';
SELECT *
FROM HR_LOCATIONS_ALL_TL
WHERE location_code = 'XXAOA';
After selecting the Address style you will be prompted to enter the details of the location as shown in the
form below.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
4/68
2/21/2014
After entering the location details click on OK button and enter the time zone as shown in the screen shot.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
5/68
2/21/2014
Navigate to the shipping tab and the values are populated as shown.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
6/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
7/68
2/21/2014
Open the E-Business Suite and navigate to Human Resources, Vision Enterprises Responsibility:
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
8/68
2/21/2014
Human Resources
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
9/68
2/21/2014
Enter the business group name and the location created in the previous step and save the changes.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
10/68
2/21/2014
Select the LOV as business group under the Name field in the organization classifications block
Check the enabled check box for the business group name and save the changes
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
11/68
2/21/2014
Click on the Others button and select the Business Group Info from the additional information window click
on ok
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
12/68
2/21/2014
With details:
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
13/68
2/21/2014
Click OK Button
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
14/68
2/21/2014
PgSQL
1 SELECT *
2
FROM HR_ORGANIZATION_INFORMATION
3 WHERE org_information_context = 'Business Group Information';
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
15/68
2/21/2014
Navigate to Setup > Financials > Accounting Setup Manager > Accounting Setups
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
16/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
17/68
2/21/2014
Click on Create New Address radio Button and enter the details:
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
18/68
2/21/2014
Confirmation message:
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
19/68
2/21/2014
Script:
PgSQL
1 SELECT *
2
FROM
3
4
5
6
WHERE
7
AND
8
AND
9
AND
XLE_ENTITY_PROFILES EntityProfileEO,
HZ_GEOGRAPHIES HzGeographies,
HZ_ORG_PROFILES_CPUI_V HzOrgProfiles,
XLE_LOOKUPS lkp
EntityProfileEO.GEOGRAPHY_ID=HzGeographies.GEOGRAPHY_ID
EntityProfileEO.PARTY_ID=HzOrgProfiles.PARTY_ID
lkp.LOOKUP_TYPE='XLE_YES_NO'
lkp.LOOKUP_CODE=EntityProfileEO.TRANSACTING_ENTITY_FLAG
Create Ledgers
In the above scenario we need to create 2 ledgers and this depends on the following:
1. Currency
2. Calendar
3. Chart of Accounts
In multi org structure we will follow the same calendar,currency and chart of accounts for the companies. In
the above scenario as we have the companies in 2 different countries we will have 2 different ledgers.
1. India Ledger
2. USA Ledger
Navigate to General Ledger Visions Operations (USA)
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
20/68
2/21/2014
Navigate to Setup > Financials > Accounting Setup Manager > Accounting Setups
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
21/68
2/21/2014
As we have already created the legal entity we can move forward and click on the next button
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
22/68
2/21/2014
Click Finish
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
23/68
2/21/2014
PgSQL
1 SELECT *
2
FROM gl_ledgers;
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
24/68
2/21/2014
Navigate to Setup > Financials > Accounting Setup Manager > Accounting Setups
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
25/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
26/68
2/21/2014
Assign legal entity to the ledger by clicking on the add legal entity button
Search for the legal entity created above and select the legal entity created for INDIA
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
27/68
2/21/2014
The legal entity has now been assigned to the ledger. Now click on the update button next to the operating
unit setup options
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
28/68
2/21/2014
Enter the details. Assign the business group and legal entity created from the above steps to the operating
unit and click on apply button
Click complete
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
29/68
2/21/2014
Verify the confirmation message and note down the request number and verify the status of the request.
Create the operating nit for the USA legder in the similar manner :
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
30/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
31/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
32/68
2/21/2014
PgSQL
1 SELECT *
2
FROM HR_ORGANIZATION_INFORMATION
3 WHERE org_information_context = 'Operating Unit Information';
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
33/68
2/21/2014
Human Resources
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
34/68
2/21/2014
Select the list of values icon under the name filed in the organization classifications
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
35/68
2/21/2014
Check the enabled button and save the changes. Then click the others button
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
36/68
2/21/2014
Press TAB
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
37/68
2/21/2014
Select the ledger and legal entity name from the list of values and click ok
Click ok
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
38/68
2/21/2014
Click others
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
39/68
2/21/2014
PgSQL
1 SELECT *
2
FROM HR_ORGANIZATION_INFORMATION
3 WHERE org_information1 = 'INV'
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
40/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
41/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
42/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
43/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
44/68
2/21/2014
Save the changes and read the note carefully to understand the implications of inventory organization
costing method
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
45/68
2/21/2014
Script:
PgSQL
1 SELECT *
2
FROM MTL_PARAMETERS_VIEW
Reports/Programs:
In order to use the operating unit we need to run the Replicate seed data concurrent program from system
administrator responsibility
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
46/68
2/21/2014
Run the same concurrent program for all the operating units
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
47/68
2/21/2014
Run the Multi-Org Validation Report and check the output for no validations
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
48/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
49/68
2/21/2014
Human Resources
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
50/68
2/21/2014
Select a name for the profile and attach the business group created.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
51/68
2/21/2014
Select the security type as Secure organizations by organization hierarchy and/or organization list
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
52/68
2/21/2014
Select operating unit under classification and the operating unit name created under the organization name.
Save the changes
Add the operating units for which the MOAC feature needs to be shared.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
53/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
54/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
55/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
56/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
57/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
58/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
59/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
60/68
2/21/2014
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
61/68
2/21/2014
Select the responsibility created and enter the profile as MO: Security Profile and click on the find button
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
62/68
2/21/2014
Select the security profile name created from the LOV and save the changes.
63/68
2/21/2014
Related posts:
TCA Create
Organization API
FNDLOAD and
WFLOAD
FNDLOAD
Commands
Create
Relationship Type
API
This entry was posted in Apps Functional, Apps Functional Modules, HR, Oracle Apps on January 21, 2013
[http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/] by All Oracle
Apps.
kalyan
April 9, 2013 at 12:42 pm
hi
iam a functional consultant oracle SCM,if i want to become techno functional what should i learn ?
Post author
Hi Kalyan,
Let me tell you an answer in brief.. You just saw the above article right all the job is done by a pure functional
Consultant. But, a techno-functional consultant also knows what are the tables hit and can they be
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
64/68
2/21/2014
populated from back end using an Oracle API or using FNDLOAD and things like that.
Please let me know if you need more details.
Regards,
All Oracle Apps
srinivas
July 4, 2013 at 1:05 am
hello there
i just created the same steps mentioned abovebut when i tried to enter calendar in inventory parameters
tab, it is saying list of values has no entries
please help me.
srinivas
Post author
Hi Srinivas,
You need to define the Calendar before this setup. Let us know if you need full details.
Regards,
All Oracle Apps
Admin
srinivas
July 8, 2013 at 11:12 pm
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
65/68
2/21/2014
Fakhra
August 21, 2013 at 12:41 am
Fakhra
August 21, 2013 at 12:42 am
Post author
ripendra kumar
September 21, 2013 at 11:58 am
HI ,
Thanks for your post and in the mean a small request can you please provide some information regarding to
the back end tables which will be get affected while doing all these setups .if you provide these information
along with these setup document it will be a great pleasure for all of the learners.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
66/68
2/21/2014
Post author
Hi Rependra,
Updated the post with table information.
Regards,
Admin
Mahendra
October 10, 2013 at 2:28 am
Post author
Hi Mahendra,
Try to move to functional support by gaining knowledge on Setups/Business Flows on Financials and Oracle
Project Accounting. Please let us know if you need more details.
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
67/68
2/21/2014
Regards,
All Oracle Apps
http://alloracleapps.com/oracle_apps/oracleappsappsfunctionalfunctionalmoduleshrandfi/
68/68