DBA Data[Home] [Help]

APPS.PSP_ENC_SUM_TRAN dependencies on FND_PROFILE

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

277: END IF;
278:
279: -- Enh 2505778 LD, GMS Integration with PQH
280:
281: if fnd_profile.value('PSP_ENC_ENABLE_PQH') ='Y' then
282: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling pqh_psp_integration.relieve_budget_commitments');
283: pqh_psp_integration.relieve_budget_commitments( 'S', l_return_status);
284: If l_return_status<>FND_API.G_RET_STS_SUCCESS THEN
285: fnd_message.set_name('PSP','PSP_ENC_PQH_ERROR');

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

291:
292: -- FIRST NORMAL RUN
293: -- initiate the gl encumbrance summarization and transfer
294: -- call the user extension to populate attribute1 through attribute30
295: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
296: -- 2968684 added params to following proc
297: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
298: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
299: p_business_group_id,

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

316: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After tr_to_gl_int');
317: END IF;
318:
319: -- call the user extension to populate attribute1 through attribute30
320: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
321: -- 2968684 added params to following proc
322: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
323: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
324: p_business_group_id,

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

352: END IF;
353: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After create_sum_lines');
354:
355: -- call the user extension to populate attribute1 through attribute30
356: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
357: -- 2968684 added params to following proc
358: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
359: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
360: p_business_group_id,

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

377: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' After tr_to_gl_int');
378: END IF;
379:
380: -- call the user extension to populate attribute1 through attribute30
381: IF FND_PROFILE.VALUE('PSP_ST_EXTENSION_ENABLE') = 'Y' THEN
382: -- 2968684 added params to following proc
383: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling psp_st_ext.summary_ext_encumber');
384: psp_st_ext.summary_ext_encumber(p_payroll_action_id ,
385: p_business_group_id,

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

1927: l_table VARCHAR2(100);
1928: l_rec_no number := 0;
1929: / * Following variable is added for Enh.Encumbrance Redesign Prorata * /
1930:
1931: l_summarization_option VARCHAR2 (1) := nvl (fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');
1932:
1933: TYPE GL_TIE_RECTYPE IS RECORD (
1934: R_CONTROL_ID NUMBER,
1935: R_END_DATE DATE,

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

2340: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Entering Transfer to GL Interface');
2341:
2342: l_created_by := fnd_global.user_id;
2343: l_tie_back_failed := NULL;
2344: l_summarization_option := NVL(fnd_profile.value('PSP_ENABLE_ENC_SUMM_GL'),'N');
2345:
2346: gl_je_source( l_user_je_source,
2347: l_return_status);
2348: