DBA Data[Home] [Help]

APPS.MSC_ATP_CUSTOM dependencies on FND_API

Line 42: x_return_status := FND_API.G_RET_STS_SUCCESS;

38: IF PG_DEBUG in ('Y', 'C') THEN
39: msc_sch_wb.atp_debug('Enter Custom_Post_ATP_API');
40: END IF;
41: -- initialize API return status to success
42: x_return_status := FND_API.G_RET_STS_SUCCESS;
43: x_modify_flag := 2;
44:
45: --- Add code below to modify information generated by ATP engine.
46:

Line 54: x_return_status := FND_API.G_RET_STS_ERROR;

50: END IF;
51:
52: EXCEPTION
53: WHEN OTHERS THEN
54: x_return_status := FND_API.G_RET_STS_ERROR;
55: x_modify_flag := 2;
56: END Custom_Post_ATP_API;
57:
58: