DBA Data[Home] [Help]

APPS.CSI_UTL_PKG dependencies on HZ_CUST_ACCOUNTS

Line 1204: l_account_status hz_cust_accounts.status%type;

1200: x_party_id OUT NOCOPY number,
1201: x_return_status OUT NOCOPY varchar2)
1202: IS
1203: l_party_id number;
1204: l_account_status hz_cust_accounts.status%type;
1205: BEGIN
1206:
1207: api_log('get_party_id');
1208:

Line 1216: FROM hz_cust_accounts

1212: SELECT party_id,
1213: status
1214: INTO l_party_id,
1215: l_account_status
1216: FROM hz_cust_accounts
1217: WHERE cust_account_id = p_cust_acct_id;
1218:
1219: x_party_id := l_party_id;
1220: