DBA Data[Home] [Help]

APPS.PA_ACTIONS_PVT dependencies on PA_BILLING_WRKBNCH_EVENTS

Line 616: PA_Billing_Wrkbnch_Events.Upd_Event_Comp_Date(

612: -- unchecked if billing event is not processed and changed completion date ( null value ) should be reflected in
613: -- pa_events table
614:
615: IF p_function_code_tbl(i) = 'BILLING' THEN
616: PA_Billing_Wrkbnch_Events.Upd_Event_Comp_Date(
617: P_Deliverable_Id => p_object_version_id
618: ,P_Action_Id => p_element_version_id_tbl(i)
619: ,P_Event_Date => p_completion_date_tbl(i));
620: END IF;

Line 955: PA_BILLING_WRKBNCH_EVENTS.DELETE_DELV_EVENT

951: pa_debug.write(g_module_name,pa_debug.g_err_stage,3) ;
952: END IF;
953:
954: -- Delete the billing event if its a billing function
955: PA_BILLING_WRKBNCH_EVENTS.DELETE_DELV_EVENT
956: ( P_Project_Id => p_project_id
957: ,P_Deliverable_Id => p_dlv_version_id
958: ,P_Action_Id => p_action_ver_id
959: ,P_Action_Name => l_name

Line 963: pa_debug.write(g_module_name,'Returned from PA_BILLING_WRKBNCH_EVENTS.DELETE_DELV_EVENT ['||x_return_status||']',3) ;

959: ,P_Action_Name => l_name
960: ,X_Return_Status => x_return_status
961: ) ;
962: IF p_debug_mode = 'Y' THEN
963: pa_debug.write(g_module_name,'Returned from PA_BILLING_WRKBNCH_EVENTS.DELETE_DELV_EVENT ['||x_return_status||']',3) ;
964: END IF;
965:
966: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
967: RAISE Invalid_Arg_Exc_Dlv ;

Line 1172: IF nvl(PA_BILLING_WRKBNCH_EVENTS.CHECK_DELV_EVENT_PROCESSED(p_project_id,p_dlv_version_id,p_action_ver_id),'N') = 'Y' THEN

1168: --This change has been done by avaithia on Apr 1st,2004 (This is not a part of actual resolution for the bug.This is just an
1169: --additional fix included as a part of Bug 3512346
1170:
1171: IF p_function_code = g_billing THEN
1172: IF nvl(PA_BILLING_WRKBNCH_EVENTS.CHECK_DELV_EVENT_PROCESSED(p_project_id,p_dlv_version_id,p_action_ver_id),'N') = 'Y' THEN
1173: l_err_message := 'PA_BILLING_ACTION_DEL_ERR' ;
1174: END IF ;
1175: pa_debug.g_err_stage := 'Exiting IS_DELETE_ACTION_ALLOWED' ;
1176: pa_debug.write(g_module_name,pa_debug.g_err_stage,5);