DBA Data[Home] [Help]

APPS.JG_AR_RECEIVABLE_APPLICATIONS dependencies on JG_AR_RECEIVABLE_APPLICATIONS

Line 1: PACKAGE BODY jg_ar_receivable_applications AS

1: PACKAGE BODY jg_ar_receivable_applications AS
2: /* $Header: jgzzrrab.pls 120.10 2005/08/25 23:34:18 cleyvaol ship $ */
3:
4: /*----------------------------------------------------------------------------*
5: | PUBLIC FUNCTIONS/PROCEDURES |

Line 50: arp_util.debug('jg_ar_receivable_applications.Apply()+');

46:
47: BEGIN
48:
49: IF PG_DEBUG in ('Y', 'C') THEN
50: arp_util.debug('jg_ar_receivable_applications.Apply()+');
51: END IF;
52:
53: l_product_code := FND_PROFILE.VALUE('JGZZ_PRODUCT_CODE');
54: l_country_code := FND_PROFILE.VALUE('JGZZ_COUNTRY_CODE');

Line 92: AND descriptive_flexfield_name = 'JG_AR_RECEIVABLE_APPLICATIONS'

88: SELECT descriptive_flex_context_code
89: INTO p_global_attribute_category
90: FROM fnd_descr_flex_contexts
91: WHERE application_id = 7003
92: AND descriptive_flexfield_name = 'JG_AR_RECEIVABLE_APPLICATIONS'
93: AND substr(descriptive_flex_context_code,4,2) = l_country_code
94: AND substr(descriptive_flex_context_code,7,8) = 'ARXRWMAI'
95: AND enabled_flag = 'Y';
96:

Line 130: 'JG_AR_RECEIVABLE_APPLICATIONS',

126: p_global_attribute17,
127: p_global_attribute18,
128: p_global_attribute19,
129: p_global_attribute20,
130: 'JG_AR_RECEIVABLE_APPLICATIONS',
131: p_return_status);
132:
133: IF p_return_status = FND_API.G_RET_STS_SUCCESS THEN
134: jl_ar_receivable_applications.Apply(p_apply_before_after,

Line 172: arp_util.debug('jg_ar_receivable_applications.Apply()-');

168: END IF;
169: END IF;
170:
171: IF PG_DEBUG in ('Y', 'C') THEN
172: arp_util.debug('jg_ar_receivable_applications.Apply()-');
173: END IF;
174:
175:
176: END Apply;

Line 188: arp_util.debug('jg_ar_receivable_applications.Unapply()+');

184:
185: BEGIN
186:
187: IF PG_DEBUG in ('Y', 'C') THEN
188: arp_util.debug('jg_ar_receivable_applications.Unapply()+');
189: END IF;
190:
191: l_product_code := FND_PROFILE.VALUE('JGZZ_PRODUCT_CODE');
192:

Line 203: arp_util.debug('jg_ar_receivable_applications.Unapply()-');

199: p_return_status);
200: END IF;
201:
202: IF PG_DEBUG in ('Y', 'C') THEN
203: arp_util.debug('jg_ar_receivable_applications.Unapply()-');
204: END IF;
205:
206:
207: END Unapply;

Line 216: fnd_file.put_line(fnd_file.log,'jg_ar_receivable_applications.create_interest_adj()-');

212: IS
213: l_product_code VARCHAR2(2);
214: BEGIN
215:
216: fnd_file.put_line(fnd_file.log,'jg_ar_receivable_applications.create_interest_adj()-');
217:
218: x_return_status := FND_API.G_RET_STS_SUCCESS;
219: l_product_code := FND_PROFILE.VALUE('JGZZ_PRODUCT_CODE');
220:

Line 226: fnd_file.put_line(fnd_file.log,'After jg_ar_receivable_applications.create_interest_adj()-');

222:
223: JL_AR_RECEIVABLE_APPLICATIONS.create_interest_adjustment
224: (p_post_quickcash_req_id,
225: x_return_status);
226: fnd_file.put_line(fnd_file.log,'After jg_ar_receivable_applications.create_interest_adj()-');
227: END IF;
228:
229: EXCEPTION
230: WHEN OTHERS THEN

Line 260: END jg_ar_receivable_applications;

256: BEGIN
257:
258: PG_DEBUG := NVL(FND_PROFILE.value('AR_ENABLE_DEBUG_OUTPUT'), 'N');
259:
260: END jg_ar_receivable_applications;