DBA Data[Home] [Help]

APPS.HZP_CPROF_PKG dependencies on ARP_STANDARD

Line 158: arp_standard.debug('EXCEPTION: hzp_cprof_pkg.update_customer_alt_names');

154: --
155: --
156: EXCEPTION
157: WHEN OTHERS THEN
158: arp_standard.debug('EXCEPTION: hzp_cprof_pkg.update_customer_alt_names');
159: END update_customer_alt_names;
160:
161: --
162: --

Line 2031: arp_standard.debug('create_profile_amount (+)');

2027: tmp_var VARCHAR2(2000);
2028: i NUMBER;
2029: tmp_var1 VARCHAR2(2000);
2030: BEGIN
2031: arp_standard.debug('create_profile_amount (+)');
2032: x_return_status := FND_API.G_RET_STS_SUCCESS;
2033:
2034: l_rec.cust_acct_profile_amt_id := x_cust_acct_profile_amt_id;
2035: l_rec.cust_account_profile_id := p_cust_account_profile_id;

Line 2121: arp_standard.debug(x_msg_data);

2117: tmp_var1 := tmp_var1 || ' '|| tmp_var;
2118: END LOOP;
2119: x_msg_data := tmp_var1;
2120: END IF;
2121: arp_standard.debug(x_msg_data);
2122: END IF;
2123:
2124: arp_standard.debug('create_profile_amount(-)');
2125: EXCEPTION

Line 2124: arp_standard.debug('create_profile_amount(-)');

2120: END IF;
2121: arp_standard.debug(x_msg_data);
2122: END IF;
2123:
2124: arp_standard.debug('create_profile_amount(-)');
2125: EXCEPTION
2126: WHEN OTHERS THEN
2127: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2128: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );

Line 2135: arp_standard.debug('EXCEPTION: hzp_cprof_pkg.delete_profile_amout'||x_msg_data);

2131: FND_MSG_PUB.Count_And_Get(
2132: p_encoded => FND_API.G_FALSE,
2133: p_count => x_msg_count,
2134: p_data => x_msg_data );
2135: arp_standard.debug('EXCEPTION: hzp_cprof_pkg.delete_profile_amout'||x_msg_data);
2136: END;
2137:
2138: /*---------------------------------------------------------------+
2139: | PROCEDURE : UPDATE_PROFILE_AMOUNT |

Line 2246: arp_standard.debug('update_profile_amount (+)');

2242: l_last_update_date DATE;
2243: l_exception EXCEPTION;
2244: tca_exception EXCEPTION;
2245: BEGIN
2246: arp_standard.debug('update_profile_amount (+)');
2247: arp_standard.debug('Object_version_number:'||p_object_version);
2248: arp_standard.debug('last_update_date:'||X_Last_Update_Date );
2249:
2250: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2247: arp_standard.debug('Object_version_number:'||p_object_version);

2243: l_exception EXCEPTION;
2244: tca_exception EXCEPTION;
2245: BEGIN
2246: arp_standard.debug('update_profile_amount (+)');
2247: arp_standard.debug('Object_version_number:'||p_object_version);
2248: arp_standard.debug('last_update_date:'||X_Last_Update_Date );
2249:
2250: x_return_status := FND_API.G_RET_STS_SUCCESS;
2251:

Line 2248: arp_standard.debug('last_update_date:'||X_Last_Update_Date );

2244: tca_exception EXCEPTION;
2245: BEGIN
2246: arp_standard.debug('update_profile_amount (+)');
2247: arp_standard.debug('Object_version_number:'||p_object_version);
2248: arp_standard.debug('last_update_date:'||X_Last_Update_Date );
2249:
2250: x_return_status := FND_API.G_RET_STS_SUCCESS;
2251:
2252: l_rec.cust_acct_profile_amt_id := INIT_SWITCH(p_cust_acct_profile_amt_id);

Line 2330: arp_standard.debug('Last_update_date:'||to_char(l_last_update_date));

2326: OPEN cu_version_prof_amt;
2327: FETCH cu_version_prof_amt INTO l_rowid,
2328: l_object_version,
2329: l_last_update_date;
2330: arp_standard.debug('Last_update_date:'||to_char(l_last_update_date));
2331:
2332: IF cu_version_prof_amt%NOTFOUND THEN
2333: FND_MESSAGE.SET_NAME('AR','HZ_API_NO_RECORD');
2334: FND_MESSAGE.SET_TOKEN('RECORD','HZ_CUST_PROFILE_AMTS');

Line 2344: arp_standard.debug('x_return_status :'||x_return_status);

2340: CLOSE cu_version_prof_amt;
2341:
2342: END IF;
2343:
2344: arp_standard.debug('x_return_status :'||x_return_status);
2345:
2346: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
2347:
2348: HZ_CUSTOMER_PROFILE_V2PUB.update_cust_profile_amt

Line 2361: arp_standard.debug('update_profile_amount (-)');

2357: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2358: RAISE tca_exception;
2359: END IF;
2360:
2361: arp_standard.debug('update_profile_amount (-)');
2362: EXCEPTION
2363: WHEN l_exception THEN
2364: x_return_status := FND_API.G_RET_STS_ERROR;
2365: fnd_msg_pub.count_and_get(

Line 2376: arp_standard.debug('Exception hzp_cprof_pkg.update_profile_amount:'||x_msg_data);

2372: tmp_var1 := tmp_var1 || ' '|| tmp_var;
2373: END LOOP;
2374: x_msg_data := tmp_var1;
2375: END IF;
2376: arp_standard.debug('Exception hzp_cprof_pkg.update_profile_amount:'||x_msg_data);
2377:
2378: WHEN tca_Exception THEN
2379: IF x_msg_count > 1 THEN
2380: FOR i IN 1..x_msg_count LOOP

Line 2386: arp_standard.debug('Exception hzp_cprof_pkg.update_profile_amount:'||x_msg_data);

2382: tmp_var1 := tmp_var1 || ' '|| tmp_var;
2383: END LOOP;
2384: x_msg_data := tmp_var1;
2385: END IF;
2386: arp_standard.debug('Exception hzp_cprof_pkg.update_profile_amount:'||x_msg_data);
2387:
2388: WHEN OTHERS THEN
2389: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2390: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );

Line 2397: arp_standard.debug('EXCEPTION OTHERS: hzp_cprof_pkg.update_profile_amout'||x_msg_data);

2393: FND_MSG_PUB.Count_And_Get(
2394: p_encoded => FND_API.G_FALSE,
2395: p_count => x_msg_count,
2396: p_data => x_msg_data );
2397: arp_standard.debug('EXCEPTION OTHERS: hzp_cprof_pkg.update_profile_amout'||x_msg_data);
2398: END;
2399:
2400:
2401: /*---------------------------------------------------------------+

Line 2420: arp_standard.debug('delete_profile_amount(+)');

2416: x_msg_count OUT NOCOPY NUMBER,
2417: x_msg_data OUT NOCOPY VARCHAR2)
2418: IS
2419: BEGIN
2420: arp_standard.debug('delete_profile_amount(+)');
2421:
2422: x_return_status := FND_API.G_RET_STS_SUCCESS;
2423:
2424: DELETE FROM hz_cust_profile_amts

Line 2431: arp_standard.debug('delete_profile_amount(-)');

2427: IF (SQL%NOTFOUND) THEN
2428: Raise NO_DATA_FOUND;
2429: END IF;
2430:
2431: arp_standard.debug('delete_profile_amount(-)');
2432:
2433: EXCEPTION
2434: WHEN NO_DATA_FOUND THEN
2435: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2443: arp_standard.debug('EXCEPTION NO_DATA_FOUND: hzp_cprof_pkg.delete_profile_amout');

2439: FND_MSG_PUB.Count_And_Get(
2440: p_encoded => FND_API.G_FALSE,
2441: p_count => x_msg_count,
2442: p_data => x_msg_data );
2443: arp_standard.debug('EXCEPTION NO_DATA_FOUND: hzp_cprof_pkg.delete_profile_amout');
2444:
2445: WHEN OTHERS THEN
2446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2447: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );

Line 2454: arp_standard.debug('EXCEPTION OTHERS: hzp_cprof_pkg.delete_profile_amout'||x_msg_data);

2450: FND_MSG_PUB.Count_And_Get(
2451: p_encoded => FND_API.G_FALSE,
2452: p_count => x_msg_count,
2453: p_data => x_msg_data );
2454: arp_standard.debug('EXCEPTION OTHERS: hzp_cprof_pkg.delete_profile_amout'||x_msg_data);
2455: END;
2456:
2457: END hzp_cprof_pkg;