DBA Data[Home] [Help]

APPS.EAM_RES_DEFAULT_PVT dependencies on EAM_ERROR_MESSAGE_PVT

Line 120: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type

116:
117: PROCEDURE Attribute_Defaulting
118: ( p_eam_res_rec IN EAM_PROCESS_WO_PUB.eam_res_rec_type
119: , x_eam_res_rec OUT NOCOPY EAM_PROCESS_WO_PUB.eam_res_rec_type
120: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
121: , x_return_status OUT NOCOPY VARCHAR2
122: )
123: IS
124: l_eam_res_rec EAM_PROCESS_WO_PUB.eam_res_rec_type;

Line 209: EAM_ERROR_MESSAGE_PVT.Add_Error_Token

205: x_eam_res_rec := l_eam_res_rec;
206:
207: EXCEPTION
208: WHEN OTHERS THEN
209: EAM_ERROR_MESSAGE_PVT.Add_Error_Token
210: ( p_message_name => NULL
211: , p_message_text => G_PKG_NAME || SQLERRM
212: , x_mesg_token_Tbl => x_mesg_token_tbl
213: );

Line 241: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Processing null columns prior update'); END IF;

237: BEGIN
238: x_eam_res_rec := p_eam_res_rec;
239: x_eam_res_rec := p_eam_res_rec;
240:
241: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Processing null columns prior update'); END IF;
242:
243: IF p_eam_res_rec.resource_id IS NULL OR
244: p_eam_res_rec.resource_id = FND_API.G_MISS_NUM
245: THEN

Line 458: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Done processing null columns prior update'); END IF;

454: x_eam_res_rec.department_id := p_old_eam_res_rec.department_id;
455: END IF;
456:
457:
458: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Done processing null columns prior update'); END IF;
459:
460: END Populate_Null_Columns;
461:
462: END EAM_RES_DEFAULT_PVT;