DBA Data[Home] [Help]

APPS.PA_PROJECT_SETS_PVT dependencies on PA_PROJECT_SETS_PKG

Line 88: ,x_msg => 'before pa_project_sets_pkg.insert_row'

84: IF FND_MSG_PUB.Count_Msg =0 THEN
85:
86: IF l_enable_log = 'Y' THEN
87: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_PROJECT_SETS_PVT.Create_Project_Set'
88: ,x_msg => 'before pa_project_sets_pkg.insert_row'
89: ,x_log_level => 5);
90: END IF;
91:
92: PA_PROJECT_SETS_PKG.insert_row

Line 92: PA_PROJECT_SETS_PKG.insert_row

88: ,x_msg => 'before pa_project_sets_pkg.insert_row'
89: ,x_log_level => 5);
90: END IF;
91:
92: PA_PROJECT_SETS_PKG.insert_row
93: (p_project_set_name => p_project_set_name
94: ,p_party_id => l_party_id
95: ,p_effective_start_date => p_effective_start_date
96: ,p_effective_end_date => p_effective_end_date

Line 230: ,x_msg => 'before pa_project_sets_pkg.insert_row'

226:
227: IF FND_MSG_PUB.Count_Msg =0 THEN
228: IF l_enable_log = 'Y' THEN
229: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_PROJECT_SETS_PVT.Update_Project_Set'
230: ,x_msg => 'before pa_project_sets_pkg.insert_row'
231: ,x_log_level => 5);
232: END IF;
233:
234: PA_PROJECT_SETS_PKG.update_row

Line 234: PA_PROJECT_SETS_PKG.update_row

230: ,x_msg => 'before pa_project_sets_pkg.insert_row'
231: ,x_log_level => 5);
232: END IF;
233:
234: PA_PROJECT_SETS_PKG.update_row
235: (p_project_set_id => p_project_set_id
236: ,p_project_set_name => p_project_set_name
237: ,p_party_id => l_party_id
238: ,p_effective_start_date => p_effective_start_date

Line 323: PA_PROJECT_SETS_PKG.delete_row

319: l_do_lines_exist := PA_PROJECT_SET_UTILS.do_lines_exist(p_project_set_id);
320:
321: IF l_do_lines_exist = 'N' THEN
322:
323: PA_PROJECT_SETS_PKG.delete_row
324: (p_project_set_id => p_project_set_id,
325: p_record_version_number => p_record_version_number,
326: x_return_status => l_return_status);
327:

Line 385: PA_PROJECT_SETS_PKG.insert_row_lines(

381: ,p_project_id => p_project_id);
382:
383: IF l_exists = 'N' THEN
384:
385: PA_PROJECT_SETS_PKG.insert_row_lines(
386: p_project_set_id => p_project_set_id
387: ,p_project_id => p_project_id
388: ,x_return_status => x_return_status);
389:

Line 435: PA_PROJECT_SETS_PKG.delete_row_lines(

431:
432: IF l_exists = 'Y' THEN
433:
434: -- if the project exists in project set, delete the row
435: PA_PROJECT_SETS_PKG.delete_row_lines(
436: p_project_set_id => p_project_set_id
437: ,p_project_id => p_project_id
438: ,x_return_status => x_return_status);
439: END IF;