DBA Data[Home] [Help]

APPS.BOM_UTIL dependencies on FND_API

Line 264: l_return_status := Fnd_Api.G_RET_STS_ERROR;

260: -- It means that the reference designator does not exist on the
261: -- revised component or it is probably not implemented yet.
262:
263: x_return_status := 'BOM_DISABLE_DESG_NOT_FOUND';
264: l_return_status := Fnd_Api.G_RET_STS_ERROR;
265: RETURN;
266: END;
267:
268: END IF;

Line 281: l_return_status := Fnd_Api.G_RET_STS_ERROR;

277: --
278: IF acd.acd_type = 1 /* ADD */ AND
279: p_acd_type <> 1
280: THEN
281: l_return_status := Fnd_Api.G_RET_STS_ERROR;
282: x_return_status := 'BOM_RFD_ACD_NOT_COMPATIBLE';
283: RETURN;
284: END IF;
285: END LOOP;

Line 306: l_return_status := Fnd_Api.G_RET_STS_ERROR;

302:
303: -- If no exception is raised then
304: -- Generate an error saying that the component is non-standard.
305:
306: l_return_status := Fnd_Api.G_RET_STS_ERROR;
307: x_return_status := 'BOM_RFD_NON_STD_PARENT';
308: RETURN;
309:
310: EXCEPTION

Line 337: l_return_status := Fnd_Api.G_RET_STS_ERROR;

333: );
334:
335: -- If a record is found, then log an error because of the above
336: -- mentioned comment.
337: l_return_status := Fnd_Api.G_RET_STS_ERROR;
338: x_return_status := 'BOM_RFD_PLANNING_BILL';
339: RETURN;
340:
341: EXCEPTION