Total Answers and Comments: 7
Last Update: October 11, 2006 Asked by: Debajyoti
No best answer available. Please pick the good answer available or submit your answer.
December 23, 2005 00:09:12 #1
padmaja
RE: Can anybody suggest me how can the multi org. be s... We can do the multi org set up with this command like
begin
fnd_client_info.set_org_context(204);
end;
Run this package then u will get the output.
Is this answer useful? Yes | No
January 19, 2006 04:17:21 #3
Vinodh Boyapati
RE: Can anybody suggest me how can the multi org. be s... begin
dbms_application_info.set_client_info('ORG_ID');
end;
Is this answer useful? Yes | No
April 11, 2006 11:54:32 #4
Ramesh S
RE: Can anybody suggest me how can the multi org. be s... Hi
Even the following command can also be used :)
Begin Fnd_client_info.set_org_context(<Org_id>); End;
Thnx
Ram
Is this answer useful? Yes | No
July 03, 2006 10:09:17 #5
Suan
RE: Can anybody suggest me how can the multi org. be s... BEGIN
FND_GLOBAL
. APPS_INITIALIZE ( user_id resp_id resp_appl_id );END;
Is this answer useful? Yes | No
August 03, 2006 06:17:19 #6
Ejaz
RE: Can anybody suggest me how can the multi org. be s... Hi
above answers are about initializing the multi-org and not setup.
Multi-Org can be setup/installed by adadmin utility provided by the Oracle. adadmin will create the _ALL table and appropriate views (single org views) which can then be used to view the data for specific operating unit to which your user/responsibility has access to!
thanks
Is this answer useful? Yes | No
October 11, 2006 08:13:26 #7
arreddy
Member Since: December 2005 Contribution: 5
RE: Can anybody suggest me how can the multi org. be s... begin
Fnd_client_info.set_org_context(<Org_id>);
End;
Is this answer useful? Yes | No
Go To Top