DBA Data[Home] [Help]

APPS.EAM_RES_INST_DEFAULT_PVT dependencies on EAM_ERROR_MESSAGE_PVT

Line 38: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type

34:
35: PROCEDURE Attribute_Defaulting
36: ( p_eam_res_inst_rec IN EAM_PROCESS_WO_PUB.eam_res_inst_rec_type
37: , x_eam_res_inst_rec OUT NOCOPY EAM_PROCESS_WO_PUB.eam_res_inst_rec_type
38: , x_mesg_token_tbl OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
39: , x_return_status OUT NOCOPY VARCHAR2
40: )
41: IS
42: BEGIN

Line 82: EAM_ERROR_MESSAGE_PVT.Add_Error_Token

78: END IF;
79:
80: EXCEPTION
81: WHEN OTHERS THEN
82: EAM_ERROR_MESSAGE_PVT.Add_Error_Token
83: ( p_message_name => NULL
84: , p_message_text => G_PKG_NAME || SQLERRM
85: , x_mesg_token_Tbl => x_mesg_token_tbl
86: );

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

109: BEGIN
110: x_eam_res_inst_rec := p_eam_res_inst_rec;
111: x_eam_res_inst_rec := p_eam_res_inst_rec;
112:
113: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Processing null columns prior update'); END IF;
114:
115: IF p_eam_res_inst_rec.serial_number IS NULL OR
116: p_eam_res_inst_rec.serial_number = FND_API.G_MISS_CHAR
117: THEN

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

137: END IF;
138:
139:
140:
141: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Done processing null columns prior update'); END IF;
142:
143: END Populate_Null_Columns;
144:
145: END EAM_RES_INST_DEFAULT_PVT;