DBA Data[Home] [Help]

APPS.PSP_ENC_SUM_TRAN dependencies on FND_PROFILE

Line 288: if fnd_profile.value('PSP_ENC_ENABLE_PQH') ='Y' then

284: END IF;
285:
286: -- Enh 2505778 LD, GMS Integration with PQH
287:
288: if fnd_profile.value('PSP_ENC_ENABLE_PQH') ='Y' then
289: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling pqh_psp_integration.relieve_budget_commitments');
290: pqh_psp_integration.relieve_budget_commitments( 'S', l_return_status);
291: If l_return_status<>FND_API.G_RET_STS_SUCCESS THEN
292: fnd_message.set_name('PSP','PSP_ENC_PQH_ERROR');

Line 302: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN

298:
299: -- FIRST NORMAL RUN
300: -- initiate the gl encumbrance summarization and transfer
301: -- call the user extension to populate attribute1 through attribute30
302: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
303: -- 2968684 added params to following proc
304: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
305: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
306: p_business_group_id,

Line 328: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN

324: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After tr_to_gl_int');
325: END IF;
326:
327: -- call the user extension to populate attribute1 through attribute30
328: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
329: -- 2968684 added params to following proc
330: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
331: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
332: p_business_group_id,

Line 364: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN

360: END IF;
361: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After create_sum_lines');
362:
363: -- call the user extension to populate attribute1 through attribute30
364: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
365: -- 2968684 added params to following proc
366: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
367: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
368: p_business_group_id,

Line 389: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN

385: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After tr_to_gl_int');
386: END IF;
387:
388: -- call the user extension to populate attribute1 through attribute30
389: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
390: -- 2968684 added params to following proc
391: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
392: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
393: p_business_group_id,

Line 1952: l_summarization_option VARCHAR2 (1) := nvl (fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');

1948: l_table VARCHAR2(100);
1949: l_rec_no number := 0;
1950: / * Following variable is added for Enh.Encumbrance Redesign Prorata * /
1951:
1952: l_summarization_option VARCHAR2 (1) := nvl (fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');
1953:
1954: TYPE GL_TIE_RECTYPE IS RECORD (
1955: R_CONTROL_ID NUMBER,
1956: R_END_DATE DATE,

Line 2365: l_summarization_option := NVL(fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');

2361: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Entering Transfer to GL Interface');
2362:
2363: l_created_by := fnd_global.user_id;
2364: l_tie_back_failed := NULL;
2365: l_summarization_option := NVL(fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');
2366:
2367: gl_je_source( l_user_je_source,
2368: l_return_status);
2369: