DBA Data[Home] [Help]

APPS.ARI_SELF_REGISTRATION_PKG dependencies on HZ_CUST_ACCOUNTS

Line 432: FROM HZ_CUST_ACCOUNTS CustAcct,

428: SELECT CustAcct.cust_account_id,
429: CustAcct.account_number,
430: CustAcct.party_id,
431: Party.party_type
432: FROM HZ_CUST_ACCOUNTS CustAcct,
433: HZ_PARTIES Party
434: WHERE CustAcct.cust_account_id = p_customer_id
435: AND CustAcct.party_id = Party.party_id;
436:

Line 931: SELECT party_id INTO l_party_id FROM hz_cust_accounts WHERE cust_account_id = p_customer_id;

927: where user_id = p_user_id;
928:
929: ELSE
930: -- Bug 5219389 - Party Id should be passed instead of cust_account_id.
931: SELECT party_id INTO l_party_id FROM hz_cust_accounts WHERE cust_account_id = p_customer_id;
932:
933: select party_id into l_party_rel_id
934: from (
935: select hr1.party_id

Line 990: from hz_cust_accounts

986: l_acct_number varchar2(30);
987: BEGIN
988: select account_number
989: into l_acct_number
990: from hz_cust_accounts
991: where cust_account_id = p_cust_account_id;
992:
993: RETURN l_acct_number;
994:

Line 1206: from hz_cust_accounts

1202: BEGIN
1203:
1204: select party_id
1205: into l_org_party_id
1206: from hz_cust_accounts
1207: where cust_account_id = p_customer_id;
1208:
1209: return l_org_party_id;
1210: