DBA Data[Home] [Help]

APPS.PON_PROJECTS_INTEGRATION_GRP dependencies on FND_API

Line 46: IF NOT FND_API.COMPATIBLE_API_CALL ( l_api_version,

42:
43: --
44: -- Standard call to check for call compatibility
45: --
46: IF NOT FND_API.COMPATIBLE_API_CALL ( l_api_version,
47: p_api_version,
48: l_api_name,
49: 'PON_PROJECTS_INTEGRATION_GRP' )
50: THEN

Line 51: RAISE FND_API.G_EXC_ERROR;

47: p_api_version,
48: l_api_name,
49: 'PON_PROJECTS_INTEGRATION_GRP' )
50: THEN
51: RAISE FND_API.G_EXC_ERROR;
52: END IF;
53:
54: --
55: -- Initialize message list if p_init_msg_list is set to TRUE

Line 60: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN

56: -- We initialize the list by default. User should pass proper
57: -- value to p_init_msg_list in case this initialization is not
58: -- wanted
59: --
60: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
61: FND_MSG_PUB.INITIALIZE;
62: END IF;
63:
64: --

Line 66: x_return_status := FND_API.G_RET_STS_SUCCESS;

62: END IF;
63:
64: --
65: -- Initialize API to return the status as success initially
66: x_return_status := FND_API.G_RET_STS_SUCCESS;
67: l_delete_ok := 'Y';
68:
69: -- The below query looks for project_id reference at aution header, line
70: -- and payment level

Line 95: x_return_status := FND_API.G_RET_STS_ERROR;

91: -- if control reaches here , that means passed in project_id was found in
92: -- some table and should not be deleted
93: IF ( l_delete_ok = 'N')
94: THEN
95: x_return_status := FND_API.G_RET_STS_ERROR;
96:
97: -- add message in queue
98: FND_MESSAGE.set_name('PON', 'PON_PROJECT_USED_NO_DELETE');
99: FND_MSG_PUB.Add;

Line 119: x_return_status := FND_API.G_RET_STS_SUCCESS;

115: END IF;
116: End IF;
117: EXCEPTION
118: WHEN NO_DATA_FOUND THEN
119: x_return_status := FND_API.G_RET_STS_SUCCESS;
120: IF g_fnd_debug = 'Y' then
121: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_EXCEPTION) THEN
122: FND_LOG.string(LOG_LEVEL=>FND_LOG.LEVEL_EXCEPTION,
123: MODULE =>g_module_prefix||l_api_name,

Line 129: WHEN FND_API.G_EXC_ERROR then

125: END IF;
126: END IF;
127:
128:
129: WHEN FND_API.G_EXC_ERROR then
130: x_return_status := FND_API.G_RET_STS_ERROR;
131: FND_MSG_PUB.Count_And_Get
132: (p_count => x_msg_count,
133: p_data => x_msg_data );

Line 130: x_return_status := FND_API.G_RET_STS_ERROR;

126: END IF;
127:
128:
129: WHEN FND_API.G_EXC_ERROR then
130: x_return_status := FND_API.G_RET_STS_ERROR;
131: FND_MSG_PUB.Count_And_Get
132: (p_count => x_msg_count,
133: p_data => x_msg_data );
134:

Line 149: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

145: END IF;
146:
147:
148: WHEN OTHERS THEN
149: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
150: IF FND_MSG_PUB.Check_Msg_Level
151: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
152: THEN
153: FND_MSG_PUB.Add_Exc_Msg