DBA Data[Home] [Help]

APPS.AR_RECEIPT_API_PUB dependencies on AR_RECEIPT_LIB_PVT

Line 28: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN

24: --the procedure initialize_profile_globals would not do any initialization in that
25: --case
26: PROCEDURE initialize_profile_globals IS
27: BEGIN
28: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN
29: ar_receipt_lib_pvt.pg_profile_doc_seq
30: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
31: END IF;
32: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited

Line 29: ar_receipt_lib_pvt.pg_profile_doc_seq

25: --case
26: PROCEDURE initialize_profile_globals IS
27: BEGIN
28: IF ar_receipt_lib_pvt.pg_profile_doc_seq = FND_API.G_MISS_CHAR THEN
29: ar_receipt_lib_pvt.pg_profile_doc_seq
30: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
31: END IF;
32: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
33: -- it will now always be 'Y'

Line 34: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN

30: := fnd_profile.value('UNIQUE:SEQ_NUMBERS');
31: END IF;
32: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
33: -- it will now always be 'Y'
34: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
35: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
36: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
37: -- END IF;
38: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN

Line 35: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';

31: END IF;
32: -- pofile option AR_ENABLE_CROSS_CURRENCY has been obsolited
33: -- it will now always be 'Y'
34: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
35: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
36: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
37: -- END IF;
38: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
39: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def

Line 38: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN

34: -- IF ar_receipt_lib_pvt.pg_profile_enable_cc = FND_API.G_MISS_CHAR THEN
35: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
36: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
37: -- END IF;
38: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
39: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def
40: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
41: END IF;
42: ---Profile option: AR: Cash - default Amount Applied has been

Line 39: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def

35: ar_receipt_lib_pvt.pg_profile_enable_cc:='Y';
36: -- := fnd_profile.value('AR_ENABLE_CROSS_CURRENCY');
37: -- END IF;
38: IF ar_receipt_lib_pvt.pg_profile_appln_gl_date_def = FND_API.G_MISS_CHAR THEN
39: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def
40: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
41: END IF;
42: ---Profile option: AR: Cash - default Amount Applied has been
43: -- obsoleted

Line 44: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN

40: := fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT');
41: END IF;
42: ---Profile option: AR: Cash - default Amount Applied has been
43: -- obsoleted
44: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
46: END IF;
47: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
48: ar_receipt_lib_pvt.pg_profile_cc_rate_type

Line 45: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';

41: END IF;
42: ---Profile option: AR: Cash - default Amount Applied has been
43: -- obsoleted
44: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
46: END IF;
47: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
48: ar_receipt_lib_pvt.pg_profile_cc_rate_type
49: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);

Line 47: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN

43: -- obsoleted
44: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
46: END IF;
47: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
48: ar_receipt_lib_pvt.pg_profile_cc_rate_type
49: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
50: -- null should be replaced with org_id, to find profile for diffrent org
51: END IF;

Line 48: ar_receipt_lib_pvt.pg_profile_cc_rate_type

44: IF ar_receipt_lib_pvt.pg_profile_amt_applied_def = FND_API.G_MISS_CHAR THEN
45: ar_receipt_lib_pvt.pg_profile_amt_applied_def :='INV';
46: END IF;
47: IF ar_receipt_lib_pvt.pg_profile_cc_rate_type = FND_API.G_MISS_CHAR THEN
48: ar_receipt_lib_pvt.pg_profile_cc_rate_type
49: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
50: -- null should be replaced with org_id, to find profile for diffrent org
51: END IF;
52:

Line 53: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN

49: := ar_setup.value('AR_CROSS_CURRENCY_RATE_TYPE',null);
50: -- null should be replaced with org_id, to find profile for diffrent org
51: END IF;
52:
53: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
55: := fnd_profile.value('DISPLAY_INVERSE_RATE');
56: END IF;
57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN

Line 54: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate

50: -- null should be replaced with org_id, to find profile for diffrent org
51: END IF;
52:
53: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
55: := fnd_profile.value('DISPLAY_INVERSE_RATE');
56: END IF;
57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
58: ar_receipt_lib_pvt.pg_profile_create_bk_charges

Line 57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN

53: IF ar_receipt_lib_pvt.pg_profile_dsp_inv_rate = FND_API.G_MISS_CHAR THEN
54: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
55: := fnd_profile.value('DISPLAY_INVERSE_RATE');
56: END IF;
57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
58: ar_receipt_lib_pvt.pg_profile_create_bk_charges
59: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
60: END IF;
61: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN

Line 58: ar_receipt_lib_pvt.pg_profile_create_bk_charges

54: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate
55: := fnd_profile.value('DISPLAY_INVERSE_RATE');
56: END IF;
57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
58: ar_receipt_lib_pvt.pg_profile_create_bk_charges
59: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
60: END IF;
61: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
62: ar_receipt_lib_pvt.pg_profile_def_x_rate_type

Line 61: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN

57: IF ar_receipt_lib_pvt.pg_profile_create_bk_charges = FND_API.G_MISS_CHAR THEN
58: ar_receipt_lib_pvt.pg_profile_create_bk_charges
59: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
60: END IF;
61: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
62: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
63: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
64: END IF;
65: arp_util.debug('*******Profile Option Values************');

Line 62: ar_receipt_lib_pvt.pg_profile_def_x_rate_type

58: ar_receipt_lib_pvt.pg_profile_create_bk_charges
59: := fnd_profile.value('AR_JG_CREATE_BANK_CHARGES');
60: END IF;
61: IF ar_receipt_lib_pvt.pg_profile_def_x_rate_type = FND_API.G_MISS_CHAR THEN
62: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
63: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
64: END IF;
65: arp_util.debug('*******Profile Option Values************');
66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);

Line 66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);

62: ar_receipt_lib_pvt.pg_profile_def_x_rate_type
63: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
64: END IF;
65: arp_util.debug('*******Profile Option Values************');
66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);

Line 67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);

63: := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
64: END IF;
65: arp_util.debug('*******Profile Option Values************');
66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);

Line 68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);

64: END IF;
65: arp_util.debug('*******Profile Option Values************');
66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);

Line 69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);

65: arp_util.debug('*******Profile Option Values************');
66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);

Line 70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);

66: arp_util.debug('pg_profile_appln_gl_date_def :'||ar_receipt_lib_pvt.pg_profile_appln_gl_date_def);
67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
74:

Line 71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);

67: arp_util.debug('pg_profile_amt_applied_def :'||ar_receipt_lib_pvt.pg_profile_amt_applied_def);
68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
74:
75: END initialize_profile_globals;

Line 72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);

68: arp_util.debug('pg_profile_cc_rate_type :'||ar_receipt_lib_pvt.pg_profile_cc_rate_type);
69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
74:
75: END initialize_profile_globals;
76:

Line 73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);

69: arp_util.debug('pg_profile_doc_seq :'||ar_receipt_lib_pvt.pg_profile_doc_seq);
70: arp_util.debug('pg_profile_enable_cc :'||ar_receipt_lib_pvt.pg_profile_enable_cc);
71: arp_util.debug('pg_profile_dsp_inv_rate :'||ar_receipt_lib_pvt.pg_profile_dsp_inv_rate);
72: arp_util.debug('pg_profile_create_bk_charges :'||ar_receipt_lib_pvt.pg_profile_create_bk_charges);
73: arp_util.debug('pg_profile_def_x_rate_type :'||ar_receipt_lib_pvt.pg_profile_def_x_rate_type);
74:
75: END initialize_profile_globals;
76:
77:

Line 330: ar_receipt_lib_pvt.Default_cash_ids(

326: --If any value to id conversion fails then error status is returned
327: -- bichatte removed customer bank variables payment uptake project (Reverted)
328: -- we dont need to default the payment_trxn_extension_id
329:
330: ar_receipt_lib_pvt.Default_cash_ids(
331: p_usr_currency_code ,
332: p_usr_exchange_rate_type,
333: p_customer_name,
334: p_customer_number,

Line 361: ar_receipt_lib_pvt.Derive_cust_info_from_trx(

357: IF l_customer_id IS NULL AND
358: l_def_cash_id_return_status = FND_API.G_RET_STS_SUCCESS AND
359: l_currency_code IS NOT NULL
360: THEN
361: ar_receipt_lib_pvt.Derive_cust_info_from_trx(
362: p_customer_trx_id,
363: p_trx_number,
364: p_installment,
365: p_applied_payment_schedule_id,

Line 376: ar_receipt_lib_pvt.Get_cash_defaults(

372: END IF;
373: IF PG_DEBUG in ('Y', 'C') THEN
374: arp_util.debug('Create_cash_1: ' || 'Default_cash_ids return status :'||l_derive_cust_return_status);
375: END IF;
376: ar_receipt_lib_pvt.Get_cash_defaults(
377: l_currency_code,
378: l_exchange_rate_type,
379: l_exchange_rate,
380: l_exchange_rate_date,

Line 404: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);

400:
401: /*------------------------------------------+
402: | Get legal_entity_id |
403: +------------------------------------------*/ /* R12 LE uptake */
404: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);
405:
406: /*------------------------------------------+
407: | Validate the receipt information. |
408: | Do not continue if there are errors. |

Line 449: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

445: IF p_called_from in ('BR_FACTORED_WITH_RECOURSE', 'BR_FACTORED_WITHOUT_RECOURSE') THEN
446: NULL;
447: ELSE
448: --validate and default the flexfields
449: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
450: l_attribute_rec,
451: 'AR_CASH_RECEIPTS',
452: l_dflex_val_return_status
453: );

Line 515: ar_receipt_lib_pvt.get_doc_seq(222,

511: --Call the document sequence routine only there have been no errors
512: --reported so far.
513: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
514:
515: ar_receipt_lib_pvt.get_doc_seq(222,
516: l_receipt_method_name,
517: arp_global.set_of_books_id,
518: l_creation_method,
519: l_receipt_date,

Line 1339: ar_receipt_lib_pvt.Default_appln_ids(

1335: |ID TO VALUE CONVERSION |
1336: | |
1337: +-----------------------*/
1338:
1339: ar_receipt_lib_pvt.Default_appln_ids(
1340: l_cash_receipt_id,
1341: p_receipt_number,
1342: l_customer_trx_id,
1343: p_trx_number,

Line 1364: ar_receipt_lib_pvt.Default_application_info(

1360: +---------------------*/
1361: IF PG_DEBUG in ('Y', 'C') THEN
1362: arp_util.debug('Apply: ' || 'l_amount_applied_from :'||to_char(l_amount_applied_from));
1363: END IF;
1364: ar_receipt_lib_pvt.Default_application_info(
1365: l_cash_receipt_id ,
1366: l_cr_gl_date,
1367: l_cr_date,
1368: l_cr_amount,

Line 1513: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

1509: arp_util.debug('Apply: ' || 'Application ref Validation return status :'||l_app_validation_return_status);
1510: END IF;
1511:
1512: --validate and default the flexfields
1513: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
1514: l_attribute_rec,
1515: 'AR_RECEIVABLE_APPLICATIONS',
1516: l_dflex_val_return_status
1517: );

Line 2170: ar_receipt_lib_pvt.populate_llca_gt(

2166: l_tax_discount := p_tax_discount;
2167: l_freight_discount := p_freight_discount;
2168: l_ad_dflex_val_return_status := FND_API.G_RET_STS_SUCCESS;
2169:
2170: ar_receipt_lib_pvt.populate_llca_gt(
2171: p_customer_trx_id => l_customer_trx_id,
2172: p_llca_type => l_llca_type,
2173: p_llca_trx_lines_tbl => p_llca_trx_lines_tbl,
2174: p_line_amount => l_line_amount,

Line 2205: ar_receipt_lib_pvt.Default_appln_ids(

2201: | |
2202: |ID TO VALUE CONVERSION |
2203: | |
2204: +-----------------------*/
2205: ar_receipt_lib_pvt.Default_appln_ids(
2206: p_cash_receipt_id => l_cash_receipt_id,
2207: p_receipt_number => p_receipt_number,
2208: p_customer_trx_id => l_customer_trx_id,
2209: p_trx_number => p_trx_number,

Line 2246: ar_receipt_lib_pvt.Default_application_info(

2242: +---------------------*/
2243: IF PG_DEBUG in ('Y', 'C') THEN
2244: arp_util.debug('Apply_In_Detail: ' || 'l_amount_applied_from :'||to_char(l_amount_applied_from));
2245: END IF;
2246: ar_receipt_lib_pvt.Default_application_info(
2247: p_cash_receipt_id => l_cash_receipt_id ,
2248: p_cr_gl_date => l_cr_gl_date,
2249: p_cr_date => l_cr_date,
2250: p_cr_amount => l_cr_amount,

Line 2369: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

2365: arp_util.debug('Apply_In_Detail: ' || 'Validation Return_status = '||l_val_return_status);
2366: END IF;
2367:
2368: --validate and default the flexfields
2369: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
2370: l_attribute_rec,
2371: 'AR_RECEIVABLE_APPLICATIONS',
2372: l_dflex_val_return_status
2373: );

Line 2391: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

2387: --bug7311231
2388: --validate and default the flexfields
2389: IF l_llca_type = 'S' OR l_llca_type = 'G'
2390: OR (l_llca_type = 'L' AND p_llca_trx_lines_tbl.COUNT = 0) THEN
2391: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
2392: l_line_attribute_rec,
2393: 'AR_ACTIVITY_DETAILS',
2394: l_ad_dflex_val_return_status
2395: );

Line 2991: ar_receipt_lib_pvt.Derive_unapp_ids(

2987:
2988: --Derive the id's for the entered values and if both the
2989: --values and the id's superceed the values
2990:
2991: ar_receipt_lib_pvt.Derive_unapp_ids(
2992: p_trx_number ,
2993: l_customer_trx_id ,
2994: p_installment ,
2995: l_applied_payment_schedule_id ,

Line 3004: ar_receipt_lib_pvt.Default_unapp_info(

3000: l_apply_gl_date,
3001: l_derive_ids_ret_status
3002: );
3003: /*Added parameter l_cr_unapp_amount for bug 3119391 */
3004: ar_receipt_lib_pvt.Default_unapp_info(
3005: l_receivable_application_id,
3006: l_apply_gl_date,
3007: l_cash_receipt_id,
3008: l_reversal_gl_date,

Line 5537: ar_receipt_lib_pvt.Derive_reverse_ids(

5533: |ID TO VALUE CONVERSION |
5534: | |
5535: +-----------------------*/
5536:
5537: ar_receipt_lib_pvt.Derive_reverse_ids(
5538: p_receipt_number,
5539: l_cash_receipt_id,
5540: p_reversal_category_name,
5541: l_reversal_category_code,

Line 5556: ar_receipt_lib_pvt.default_reverse_info(

5552: | |
5553: +---------------------*/
5554:
5555:
5556: ar_receipt_lib_pvt.default_reverse_info(
5557: l_cash_receipt_id,
5558: l_reversal_gl_date ,
5559: l_reversal_date ,
5560: l_receipt_state,

Line 5621: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

5617: END IF;
5618:
5619:
5620: --validate and default the flexfields
5621: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
5622: l_attribute_rec,
5623: 'AR_CASH_RECEIPTS',
5624: l_dflex_val_return_status
5625: );

Line 5635: ar_receipt_lib_pvt.Default_Desc_Flexfield(

5631: /* Bug fix 3539008 */
5632: /* If the descriptive flex field is not passed in or can not be defaulted,
5633: default it from the cash receipt */
5634: IF l_attribute_rec.attribute_category IS NULL THEN
5635: ar_receipt_lib_pvt.Default_Desc_Flexfield(
5636: l_attribute_rec,
5637: p_cash_receipt_id,
5638: l_dflex_def_return_status
5639: );

Line 5641: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

5637: p_cash_receipt_id,
5638: l_dflex_def_return_status
5639: );
5640: IF l_attribute_rec.attribute_category IS NOT NULL THEN
5641: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
5642: l_attribute_rec,
5643: 'AR_CASH_RECEIPTS',
5644: l_dflex_val1_return_status
5645: );

Line 6071: ar_receipt_lib_pvt.Default_cash_receipt_id(

6067: |ID TO VALUE CONVERSION |
6068: | |
6069: +-----------------------*/
6070:
6071: ar_receipt_lib_pvt.Default_cash_receipt_id(
6072: l_cash_receipt_id ,
6073: p_receipt_number ,
6074: l_id_conv_return_status
6075: );

Line 6086: ar_receipt_lib_pvt.Default_on_ac_app_info(

6082: | DEFAULTING |
6083: | |
6084: +---------------------*/
6085:
6086: ar_receipt_lib_pvt.Default_on_ac_app_info(
6087: l_cash_receipt_id,
6088: l_cr_gl_date,
6089: l_cr_unapp_amount,
6090: l_cr_date,

Line 6098: arp_util.debug('after ar_receipt_lib_pvt.default_on_ac_app_info');

6094: l_apply_date,
6095: l_cr_currency_code,
6096: l_default_return_status
6097: );
6098: arp_util.debug('after ar_receipt_lib_pvt.default_on_ac_app_info');
6099: /*---------------------+
6100: | |
6101: | VALIDATION |
6102: | |

Line 6118: arp_util.debug('after ar_receipt_lib_pvt.validate_on_ac_info');

6114: l_validation_return_status,
6115: NULL,
6116: p_called_from
6117: );
6118: arp_util.debug('after ar_receipt_lib_pvt.validate_on_ac_info');
6119:
6120: IF PG_DEBUG in ('Y', 'C') THEN
6121: arp_util.debug('Apply: ' || 'Validation return status :'||l_validation_return_status);
6122: END IF;

Line 6125: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

6121: arp_util.debug('Apply: ' || 'Validation return status :'||l_validation_return_status);
6122: END IF;
6123:
6124: --validate and default the flexfields
6125: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
6126: l_attribute_rec,
6127: 'AR_RECEIVABLE_APPLICATIONS',
6128: l_dflex_val_return_status
6129: );

Line 6473: ar_receipt_lib_pvt.derive_unapp_on_ac_ids(

6469: | If both the values and the ids are specified, |
6470: | the id's superceed the values |
6471: +------------------------------------------------*/
6472:
6473: ar_receipt_lib_pvt.derive_unapp_on_ac_ids(
6474: p_receipt_number ,
6475: l_cash_receipt_id ,
6476: l_receivable_application_id ,
6477: l_apply_gl_date ,

Line 6480: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

6476: l_receivable_application_id ,
6477: l_apply_gl_date ,
6478: l_def_return_status
6479: );
6480: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
6481: l_receivable_application_id ,
6482: l_apply_gl_date ,
6483: l_cash_receipt_id ,
6484: l_reversal_gl_date ,

Line 6801: ar_receipt_lib_pvt.derive_otheraccount_ids(

6797: | If both the values and the ids are specified, |
6798: | the id's superceed the values |
6799: +------------------------------------------------*/
6800:
6801: ar_receipt_lib_pvt.derive_otheraccount_ids(
6802: p_receipt_number => p_receipt_number ,
6803: p_cash_receipt_id => l_cash_receipt_id ,
6804: p_applied_ps_id => l_applied_ps_id,
6805: p_receivable_application_id => l_receivable_application_id ,

Line 6811: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

6807: p_cr_unapp_amt => l_cr_unapp_amt, /* bug fix 3569640 */
6808: p_return_status => l_def_return_status
6809: );
6810:
6811: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
6812: p_receivable_application_id => l_receivable_application_id ,
6813: p_apply_gl_date => l_apply_gl_date ,
6814: p_cash_receipt_id => l_cash_receipt_id ,
6815: p_reversal_gl_date => l_reversal_gl_date ,

Line 7242: ar_receipt_lib_pvt.Default_cash_receipt_id(

7238: |ID TO VALUE CONVERSION |
7239: | |
7240: +-----------------------*/
7241:
7242: ar_receipt_lib_pvt.Default_cash_receipt_id(
7243: l_cash_receipt_id ,
7244: p_receipt_number ,
7245: l_id_conv_return_status
7246: );

Line 7258: ar_receipt_lib_pvt.Default_on_ac_app_info(

7254: | DEFAULTING |
7255: | |
7256: +---------------------*/
7257:
7258: ar_receipt_lib_pvt.Default_on_ac_app_info(
7259: l_cash_receipt_id,
7260: l_cr_gl_date,
7261: l_cr_unapp_amount,
7262: l_cr_date,

Line 7273: ar_receipt_lib_pvt.default_refund_attributes(

7269: );
7270:
7271: IF p_applied_payment_schedule_id = -8 THEN
7272: /* Default the refund attributes from IBY */
7273: ar_receipt_lib_pvt.default_refund_attributes(
7274: p_cash_receipt_id => l_cash_receipt_id
7275: ,p_customer_trx_id => null
7276: ,p_currency_code => l_cr_currency_code
7277: ,p_amount => l_amount_applied

Line 7776: ar_receipt_lib_pvt.derive_activity_unapp_ids(

7772: | If both the values and the ids are specified, |
7773: | the id's superceed the values |
7774: +------------------------------------------------*/
7775:
7776: ar_receipt_lib_pvt.derive_activity_unapp_ids(
7777: p_receipt_number ,
7778: l_cash_receipt_id ,
7779: l_receivable_application_id ,
7780: p_called_from,

Line 7785: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(

7781: l_apply_gl_date ,
7782: l_cr_unapp_amt, /* Bug fix 3569640 */
7783: l_def_return_status
7784: );
7785: ar_receipt_lib_pvt.default_unapp_on_ac_act_info(
7786: l_receivable_application_id ,
7787: l_apply_gl_date ,
7788: l_cash_receipt_id ,
7789: l_reversal_gl_date ,

Line 8138: ar_receipt_lib_pvt.Default_cash_receipt_id(

8134: |ID TO VALUE CONVERSION |
8135: | |
8136: +-----------------------*/
8137:
8138: ar_receipt_lib_pvt.Default_cash_receipt_id(
8139: l_cash_receipt_id ,
8140: p_receipt_number ,
8141: l_id_conv_return_status
8142: );

Line 8151: ar_receipt_lib_pvt.Default_on_ac_app_info(

8147: | DEFAULTING |
8148: | |
8149: +---------------------*/
8150:
8151: ar_receipt_lib_pvt.Default_on_ac_app_info(
8152: l_cash_receipt_id,
8153: l_cr_gl_date,
8154: l_cr_unapp_amount,
8155: l_cr_date,

Line 8211: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

8207: arp_util.debug('Application ref Validation return status :'||l_app_validation_return_status);
8208:
8209:
8210: --validate and default the flexfields
8211: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
8212: l_attribute_rec,
8213: 'AR_RECEIVABLE_APPLICATIONS',
8214: l_dflex_val_return_status
8215: );

Line 8685: ar_receipt_lib_pvt.Default_misc_ids(

8681: /*-------------------------------+
8682: | Defaulting Ids from Values |
8683: +-------------------------------*/
8684:
8685: ar_receipt_lib_pvt.Default_misc_ids(
8686: p_usr_currency_code ,
8687: p_usr_exchange_rate_type,
8688: p_activity,
8689: p_reference_type,

Line 8711: ar_receipt_lib_pvt.Get_misc_defaults(

8707: /*-------------------------------+
8708: | Defaulting |
8709: +-------------------------------*/
8710:
8711: ar_receipt_lib_pvt.Get_misc_defaults(
8712: l_currency_code,
8713: l_exchange_rate_type,
8714: l_exchange_rate,
8715: l_exchange_date,

Line 8736: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);

8732:
8733: /*------------------------------------------+
8734: | Get legal_entity_id |
8735: +------------------------------------------*/ /* R12 LE uptake */
8736: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(l_remit_bank_acct_use_id);
8737:
8738: /*-------------------------------+
8739: | Validation |
8740: +-------------------------------*/

Line 8778: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

8774:
8775: --Bug 4166986 CC_chargeback project
8776: IF NVL(p_called_from ,'X') NOT IN
8777: ('CC_REFUND','CM_REFUND','CC_CHARGEBACK') THEN
8778: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
8779: l_attribute_rec,
8780: 'AR_CASH_RECEIPTS',
8781: l_dflex_val_return_status
8782: );

Line 8819: ar_receipt_lib_pvt.get_doc_seq(

8815: arp_util.debug('create_misc: x_return_status = ' || x_return_status );
8816: END IF;
8817: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
8818:
8819: ar_receipt_lib_pvt.get_doc_seq(
8820: 222,
8821: l_receipt_method_name,
8822: arp_global.set_of_books_id,
8823: l_creation_method,

Line 9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;

9280: p_profile_def_x_rate_type VARCHAR2,
9281: p_pay_unrelated_inv_flag VARCHAR2,
9282: p_unearned_discount VARCHAR2) IS
9283: BEGIN
9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;

Line 9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;

9281: p_pay_unrelated_inv_flag VARCHAR2,
9282: p_unearned_discount VARCHAR2) IS
9283: BEGIN
9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;

Line 9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;

9282: p_unearned_discount VARCHAR2) IS
9283: BEGIN
9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;

Line 9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;

9283: BEGIN
9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;

Line 9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;

9284: ar_receipt_lib_pvt.pg_profile_doc_seq := p_profile_doc_seq;
9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9292: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;

Line 9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;

9285: ar_receipt_lib_pvt.pg_profile_enable_cc := p_profile_enable_cc;
9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9292: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9293: arp_global.sysparam.unearned_discount := p_unearned_discount;

Line 9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;

9286: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := p_profile_appln_gl_date_def;
9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9292: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9293: arp_global.sysparam.unearned_discount := p_unearned_discount;
9294:

Line 9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;

9287: ar_receipt_lib_pvt.pg_profile_amt_applied_def := p_profile_amt_applied_def;
9288: ar_receipt_lib_pvt.pg_profile_cc_rate_type := p_profile_cc_rate_type;
9289: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := p_profile_dsp_inv_rate;
9290: ar_receipt_lib_pvt.pg_profile_create_bk_charges := p_profile_create_bk_charges;
9291: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := p_profile_def_x_rate_type;
9292: arp_global.sysparam.pay_unrelated_invoices_flag := p_pay_unrelated_inv_flag;
9293: arp_global.sysparam.unearned_discount := p_unearned_discount;
9294:
9295:

Line 9474: ar_receipt_lib_pvt.default_open_receipt(

9470: | DEFAULTING |
9471: | |
9472: +---------------------*/
9473:
9474: ar_receipt_lib_pvt.default_open_receipt(
9475: l_cash_receipt_id,
9476: l_receipt_number,
9477: l_applied_payment_schedule_id,
9478: l_open_cash_receipt_id,

Line 9540: ar_receipt_lib_pvt.Validate_Desc_Flexfield(

9536: END IF;
9537: END IF;
9538:
9539: --validate and default the flexfields
9540: ar_receipt_lib_pvt.Validate_Desc_Flexfield(
9541: l_attribute_rec,
9542: 'AR_RECEIVABLE_APPLICATIONS',
9543: l_dflex_val_return_status
9544: );

Line 10038: ar_receipt_lib_pvt.default_unapp_open_receipt(

10034: | DEFAULTING |
10035: | |
10036: +---------------------*/
10037:
10038: ar_receipt_lib_pvt.default_unapp_open_receipt(
10039: p_receivable_application_id => l_receivable_application_id
10040: , x_applied_cash_receipt_id => l_applied_cash_receipt_id
10041: , x_applied_rec_app_id => l_applied_rec_app_id
10042: , x_amount_applied => l_amount_applied

Line 10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;

10217:
10218:
10219: BEGIN
10220: arp_util.debug('initialization section of ar_receipt_api_pub');
10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;

Line 10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;

10218:
10219: BEGIN
10220: arp_util.debug('initialization section of ar_receipt_api_pub');
10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;

Line 10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;

10219: BEGIN
10220: arp_util.debug('initialization section of ar_receipt_api_pub');
10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;

Line 10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;

10220: arp_util.debug('initialization section of ar_receipt_api_pub');
10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;

Line 10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;

10221: ar_receipt_lib_pvt.pg_profile_doc_seq := FND_API.G_MISS_CHAR;
10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
10229:

Line 10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;

10222: ar_receipt_lib_pvt.pg_profile_enable_cc := FND_API.G_MISS_CHAR;
10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
10229:
10230: END AR_RECEIPT_API_PUB;

Line 10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;

10223: ar_receipt_lib_pvt.pg_profile_appln_gl_date_def := FND_API.G_MISS_CHAR;
10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
10229:
10230: END AR_RECEIPT_API_PUB;

Line 10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;

10224: ar_receipt_lib_pvt.pg_profile_amt_applied_def := FND_API.G_MISS_CHAR;
10225: ar_receipt_lib_pvt.pg_profile_cc_rate_type := FND_API.G_MISS_CHAR;
10226: ar_receipt_lib_pvt.pg_profile_dsp_inv_rate := FND_API.G_MISS_CHAR;
10227: ar_receipt_lib_pvt.pg_profile_create_bk_charges := FND_API.G_MISS_CHAR;
10228: ar_receipt_lib_pvt.pg_profile_def_x_rate_type := FND_API.G_MISS_CHAR;
10229:
10230: END AR_RECEIPT_API_PUB;