- 01-29-2010 08:32 AM #1
Where is CRM user-customer Account relationship stored in database Hi,
When creating and approving a CRM user using CRM HTML admin responsibility, we assign accounts of customer for which user is being created.
For e.g., When creating a user for Customer A having 5 accounts, i can assign account # 1,2 and 3 to the user.
Does anybody know where this mapping is stored in database?
Regards,
Mohammed
- Club-Oracle Complementary E-Books and Magazines
Get your free Complementary Copy of Oracle Magazine
You can also browse the Free Magazines and E-Books section to see the complete list of free magazines, e-books and Whitepapers.
- 02-01-2010 09:04 AM #2
Re: Where is CRM user-customer Account relationship stored in database We can use below query to find the accounts assigned to a customer user :
SELECT hca.account_number
FROM hz_cust_accounts hca,
fnd_user fu,
hz_cust_account_roles hcar
WHERE hcar.party_id = fu.customer_id
AND hcar.cust_account_id = hca.cust_account_id
AND fu.user_id = <your user id>
;
Regards,
Mohammed
Similar Threads
-
stored procedures and packages using various database objects
By laxman in forum SQL PL/SQLReplies: 6Last Post: 12-28-2009, 02:18 AM -
Making normal Oracle Apps user, a iSupport business user for a customer
By M_Anas_O in forum Oracle CRMReplies: 2Last Post: 11-27-2009, 12:25 PM -
Service Contract Line Level Bill To Account is Missing After Customer Merge
By genioskk in forum Oracle CRMReplies: 3Last Post: 08-12-2009, 07:20 AM -
What type of account is freight account in oracle receivables
By kcp_pavan in forum Oracle FinancialsReplies: 2Last Post: 03-17-2009, 04:45 PM -
run a plsql script that is stored in a database in forms
By gmakinana in forum Oracle Developer Suite and ToolsReplies: 2Last Post: 01-22-2009, 01:58 PM


LinkBack URL
About LinkBacks
Reply With Quote
