DBA Data[Home] [Help]

APPS.PJI_EV_UTIL dependencies on FND_API

Line 74: x_return_status := Fnd_Api.G_RET_STS_SUCCESS;

70: AND project_id = p_project_id ;
71:
72:
73: BEGIN
74: x_return_status := Fnd_Api.G_RET_STS_SUCCESS;
75:
76: OPEN object_type;
77: FETCH object_type INTO l_object_type;
78: CLOSE object_type;

Line 136: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;

132:
133:
134: EXCEPTION
135: WHEN OTHERS THEN
136: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
137: x_msg_count := x_msg_count + 1;
138: RAISE;
139:
140: END populate_percent_complete;