DBA Data[Home] [Help]

APPS.HZ_CUST_ACCOUNT_V2PUB dependencies on HZ_CUST_ACCOUNTS_PKG

Line 138: * HZ_CUST_ACCOUNTS_PKG.Insert_Row

134: * Private procedure to create customer account.
135: *
136: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
137: * HZ_ACCOUNT_VALIDATE_V2PUB.validate_cust_account
138: * HZ_CUST_ACCOUNTS_PKG.Insert_Row
139: * HZ_PARTY_V2PUB.create_person
140: * HZ_PARTY_V2PUB.create_organization
141: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile
142: *

Line 454: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Insert_Row (+) ',

450:
451:
452: -- Debug info.
453: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
454: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Insert_Row (+) ',
455: p_prefix=>l_debug_prefix,
456: p_msg_level=>fnd_log.level_procedure);
457: END IF;
458:

Line 460: HZ_CUST_ACCOUNTS_PKG.Insert_Row (

456: p_msg_level=>fnd_log.level_procedure);
457: END IF;
458:
459: -- Call table-handler.
460: HZ_CUST_ACCOUNTS_PKG.Insert_Row (
461: X_CUST_ACCOUNT_ID => p_cust_account_rec.cust_account_id,
462: X_PARTY_ID => l_party_id,
463: X_ACCOUNT_NUMBER => p_cust_account_rec.account_number,
464: X_ATTRIBUTE_CATEGORY => p_cust_account_rec.attribute_category,

Line 567: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Insert_Row (-) ' ||

563: );
564:
565: -- Debug info.
566: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
567: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Insert_Row (-) ' ||
568: 'x_cust_account_id = ' || p_cust_account_rec.cust_account_id || ' ' ||
569: 'x_account_number = ' || p_cust_account_rec.account_number,
570: p_prefix=>l_debug_prefix,
571: p_msg_level=>fnd_log.level_procedure);

Line 698: * HZ_CUST_ACCOUNTS_PKG.Update_Row

694: * Private procedure to update customer account.
695: *
696: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
697: * HZ_ACCOUNT_VALIDATE_V2PUB.validate_cust_account
698: * HZ_CUST_ACCOUNTS_PKG.Update_Row
699: *
700: * ARGUMENTS
701: * IN/OUT:
702: * p_cust_account_rec Customer account record.

Line 821: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Update_Row (+)',

817: end if;
818:
819: -- Debug info.
820: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
821: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Update_Row (+)',
822: p_prefix=>l_debug_prefix,
823: p_msg_level=>fnd_log.level_procedure);
824: END IF;
825:

Line 827: HZ_CUST_ACCOUNTS_PKG.Update_Row (

823: p_msg_level=>fnd_log.level_procedure);
824: END IF;
825:
826: -- Call table-handler.
827: HZ_CUST_ACCOUNTS_PKG.Update_Row (
828: X_Rowid => l_rowid,
829: X_CUST_ACCOUNT_ID => p_cust_account_rec.cust_account_id,
830: X_PARTY_ID => NULL, -- no need to update
831: X_ACCOUNT_NUMBER => p_cust_account_rec.account_number,

Line 935: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Update_Row (-)',

931: );
932:
933: -- Debug info.
934: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
935: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Update_Row (-)',
936: p_prefix=>l_debug_prefix,
937: p_msg_level=>fnd_log.level_procedure);
938: END IF;
939:

Line 2222: * HZ_CUST_ACCOUNTS_PKG.Select_Row

2218: * DESCRIPTION
2219: * Gets customer account record
2220: *
2221: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
2222: * HZ_CUST_ACCOUNTS_PKG.Select_Row
2223: * HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec
2224: *
2225: * ARGUMENTS
2226: * IN:

Line 2298: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Select_Row (+)',

2294:
2295: x_cust_account_rec.cust_account_id := p_cust_account_id;
2296:
2297: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
2298: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Select_Row (+)',
2299: p_prefix=>l_debug_prefix,
2300: p_msg_level=>fnd_log.level_procedure);
2301: END IF;
2302:

Line 2304: HZ_CUST_ACCOUNTS_PKG.Select_Row (

2300: p_msg_level=>fnd_log.level_procedure);
2301: END IF;
2302:
2303: -- Call table-handler.
2304: HZ_CUST_ACCOUNTS_PKG.Select_Row (
2305: X_CUST_ACCOUNT_ID => x_cust_account_rec.cust_account_id,
2306: X_ACCOUNT_NUMBER => x_cust_account_rec.account_number,
2307: X_ATTRIBUTE_CATEGORY => x_cust_account_rec.attribute_category,
2308: X_ATTRIBUTE1 => x_cust_account_rec.attribute1,

Line 2408: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Select_Row (-)',

2404: X_APPLICATION_ID => x_cust_account_rec.application_id
2405: );
2406:
2407: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
2408: hz_utility_v2pub.debug(p_message=>'HZ_CUST_ACCOUNTS_PKG.Select_Row (-)',
2409: p_prefix=>l_debug_prefix,
2410: p_msg_level=>fnd_log.level_procedure);
2411: END IF;
2412: