DBA Data[Home] [Help]

APPS.PA_TASK_TYPE_PVT dependencies on PA_TASK_TYPE_PKG

Line 68: PA_TASK_TYPE_PKG.insert_row

64: ,x_msg => 'Beginning of Create_Task_Type pvt'
65: ,x_log_level => 5);
66:
67:
68: PA_TASK_TYPE_PKG.insert_row
69: (p_task_type => p_task_type
70: ,p_start_date_active => p_start_date_active
71: ,p_end_date_active => p_end_date_active
72: ,p_description => p_description

Line 186: PA_TASK_TYPE_PKG.update_row

182: ,x_msg => 'Beginning of Update_Task_Type pvt'
183: ,x_log_level => 5);
184:
185:
186: PA_TASK_TYPE_PKG.update_row
187: (p_task_type_id => p_task_type_id
188: ,p_task_type => p_task_type
189: ,p_start_date_active => p_start_date_active
190: ,p_end_date_active => p_end_date_active

Line 264: PA_TASK_TYPE_PKG.delete_row

260: ,x_msg => 'Beginning of Delete_Task_Type pvt'
261: ,x_log_level => 5);
262:
263:
264: PA_TASK_TYPE_PKG.delete_row
265: (p_task_type_id => p_task_type_id
266: ,x_return_status => x_return_status
267: ,x_msg_count => x_msg_count
268: ,x_msg_data => x_msg_data);

Line 423: --Call the PA_TASK_TYPE_PKG.insert_row

419: END IF;
420:
421: PA_DEBUG.WRITE(g_module_name,'Before Insert',
422: l_debug_level3);
423: --Call the PA_TASK_TYPE_PKG.insert_row
424: PA_TASK_TYPE_PKG.insert_row
425: (p_task_type_id => p_deliverable_type_id
426: ,p_task_type => p_deliverable_type_name
427: ,p_start_date_active => p_effective_from

Line 424: PA_TASK_TYPE_PKG.insert_row

420:
421: PA_DEBUG.WRITE(g_module_name,'Before Insert',
422: l_debug_level3);
423: --Call the PA_TASK_TYPE_PKG.insert_row
424: PA_TASK_TYPE_PKG.insert_row
425: (p_task_type_id => p_deliverable_type_id
426: ,p_task_type => p_deliverable_type_name
427: ,p_start_date_active => p_effective_from
428: ,p_end_date_active => p_effective_to

Line 868: --Call PA_TASK_TYPE_PKG.update_row

864: THEN
865: RAISE FND_API.G_EXC_ERROR;
866: END IF;
867:
868: --Call PA_TASK_TYPE_PKG.update_row
869: PA_TASK_TYPE_PKG.update_row
870: (p_task_type_id => p_deliverable_type_id
871: ,p_task_type => p_deliverable_type_name
872: ,p_start_date_active => p_effective_from

Line 869: PA_TASK_TYPE_PKG.update_row

865: RAISE FND_API.G_EXC_ERROR;
866: END IF;
867:
868: --Call PA_TASK_TYPE_PKG.update_row
869: PA_TASK_TYPE_PKG.update_row
870: (p_task_type_id => p_deliverable_type_id
871: ,p_task_type => p_deliverable_type_name
872: ,p_start_date_active => p_effective_from
873: ,p_end_date_active => p_effective_to

Line 1007: -- and then deletes the deliverable type by placing call to PA_TASK_TYPE_PKG.delete_row

1003: -- Type : Private Procedure
1004: -- Purpose : This is the private API used to delete the deliverable type .
1005: -- Note : This procedure places call to delete deliverable actions API
1006: -- to delete the actions which are associated with the deliverable Type
1007: -- and then deletes the deliverable type by placing call to PA_TASK_TYPE_PKG.delete_row
1008: -- Assumptions : None
1009: -- List of parameters other than standard IN and OUT parameters
1010: -- Parameters Type Null? Description and Purpose
1011: -- --------------------------- ------------------------------- -------- -----------------------------------

Line 1112: --Call PA_TASK_TYPE_PKG.DELETE_ROW(p_deliverable_type_id)

1108: THEN
1109: RAISE FND_API.G_EXC_ERROR;
1110: END IF;
1111:
1112: --Call PA_TASK_TYPE_PKG.DELETE_ROW(p_deliverable_type_id)
1113: PA_TASK_TYPE_PKG.delete_row
1114: (p_task_type_id => p_deliverable_type_id
1115: ,p_record_version_number => p_record_version_number
1116: ,x_return_status => x_return_status

Line 1113: PA_TASK_TYPE_PKG.delete_row

1109: RAISE FND_API.G_EXC_ERROR;
1110: END IF;
1111:
1112: --Call PA_TASK_TYPE_PKG.DELETE_ROW(p_deliverable_type_id)
1113: PA_TASK_TYPE_PKG.delete_row
1114: (p_task_type_id => p_deliverable_type_id
1115: ,p_record_version_number => p_record_version_number
1116: ,x_return_status => x_return_status
1117: ,x_msg_data => x_msg_data