DBA Data[Home] [Help]

APPS.EAM_MAT_REQ_DEFAULT_PVT dependencies on EAM_ERROR_MESSAGE_PVT

Line 121: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type

117:
118: PROCEDURE Attribute_Defaulting
119: ( p_eam_mat_req_rec IN EAM_PROCESS_WO_PUB.eam_mat_req_rec_type
120: , x_eam_mat_req_rec OUT NOCOPY EAM_PROCESS_WO_PUB.eam_mat_req_rec_type
121: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
122: , x_return_status OUT NOCOPY VARCHAR2
123: )
124: IS
125: l_out_eam_mat_req_rec EAM_PROCESS_WO_PUB.eam_mat_req_rec_type;

Line 199: EAM_ERROR_MESSAGE_PVT.Add_Error_Token

195: x_eam_mat_req_rec := l_out_eam_mat_req_rec;
196:
197: EXCEPTION
198: WHEN OTHERS THEN
199: EAM_ERROR_MESSAGE_PVT.Add_Error_Token
200: ( p_message_name => NULL
201: , p_message_text => G_PKG_NAME || SQLERRM
202: , x_mesg_token_Tbl => x_mesg_token_tbl
203: );

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

226: BEGIN
227: x_eam_mat_req_rec := p_eam_mat_req_rec;
228: -- x_eam_mat_req_rec := p_eam_mat_req_rec;
229:
230: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Processing null columns prior update'); END IF;
231:
232: IF p_eam_mat_req_rec.quantity_per_assembly IS NULL OR
233: p_eam_mat_req_rec.quantity_per_assembly = FND_API.G_MISS_NUM
234: THEN

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

503: THEN
504: x_eam_mat_req_rec.vendor_id := p_old_eam_mat_req_rec.vendor_id;
505: END IF;
506:
507: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Done processing null columns prior update'); END IF;
508:
509:
510: END Populate_Null_Columns;
511: