DBA Data[Home] [Help]

APPS.PA_PLAN_RL_FORMATS_PVT dependencies on FND_MSG_PUB

Line 246: Fnd_Msg_Pub.Add_Exc_Msg(

242: When Others Then
243: X_Return_Status := Fnd_Api.G_Ret_Sts_UnExp_Error;
244: X_Plan_RL_Format_Id := Null;
245: X_Record_Version_Number := Null;
246: Fnd_Msg_Pub.Add_Exc_Msg(
247: P_Pkg_Name => 'Pa_Plan_RL_Formats_Pub',
248: P_Procedure_Name => 'Create_Plan_RL_Format');
249:
250: Raise;

Line 309: Fnd_Msg_Pub.Initialize;

305: -- Checks whether there are any planning resources for this format before it can be deleted.
306: -- Check from pa_resource_list_members where res_format_id = p_res_format_id.
307: -- You need to check if any exists, and if so, raise an error:
308:
309: Fnd_Msg_Pub.Initialize;
310:
311: X_Return_Status := Fnd_Api.G_Ret_Sts_Success;
312: X_Msg_Count := 0;
313: X_Msg_Data := Null;

Line 419: Fnd_Msg_Pub.Add_Exc_Msg(

415: P_Msg_Name => 'PA_PLAN_RL_FORMAT_USED_ERR');
416:
417: When Others Then
418: X_Return_Status := Fnd_Api.G_Ret_Sts_UnExp_Error;
419: Fnd_Msg_Pub.Add_Exc_Msg(
420: P_Pkg_Name => 'Pa_Plan_RL_Formats_Pvt',
421: P_Procedure_Name => 'Delete_Plan_RL_Format');
422:
423: Raise;