DBA Data[Home] [Help]

APPS.CS_CALCULATE_CREDIT dependencies on FND_API

Line 164: p_init_msg_list => FND_API.G_TRUE,

160: IF l_customer_id IS NOT NULL THEN
161:
162: CS_Interaction_PVT.Create_Interaction
163: (p_api_version => 1.0,
164: p_init_msg_list => FND_API.G_TRUE,
165: p_commit => FND_API.G_FALSE,
166: p_validation_level => FND_API.G_VALID_LEVEL_NONE,
167: x_return_status => l_ret_status,
168: x_msg_count => l_msg_count,

Line 165: p_commit => FND_API.G_FALSE,

161:
162: CS_Interaction_PVT.Create_Interaction
163: (p_api_version => 1.0,
164: p_init_msg_list => FND_API.G_TRUE,
165: p_commit => FND_API.G_FALSE,
166: p_validation_level => FND_API.G_VALID_LEVEL_NONE,
167: x_return_status => l_ret_status,
168: x_msg_count => l_msg_count,
169: x_msg_data => l_msg_data,

Line 166: p_validation_level => FND_API.G_VALID_LEVEL_NONE,

162: CS_Interaction_PVT.Create_Interaction
163: (p_api_version => 1.0,
164: p_init_msg_list => FND_API.G_TRUE,
165: p_commit => FND_API.G_FALSE,
166: p_validation_level => FND_API.G_VALID_LEVEL_NONE,
167: x_return_status => l_ret_status,
168: x_msg_count => l_msg_count,
169: x_msg_data => l_msg_data,
170: p_resp_appl_id => NULL,

Line 220: IF (return_status = FND_API.G_RET_STS_ERROR OR

216: return_status := l_ret_status;
217: return_msg := l_msg_data;
218: END IF;
219:
220: IF (return_status = FND_API.G_RET_STS_ERROR OR
221: return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
222: -- 1 meaning error, 0 meaning OK
223: return_status := '1';
224: END IF;

Line 221: return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

217: return_msg := l_msg_data;
218: END IF;
219:
220: IF (return_status = FND_API.G_RET_STS_ERROR OR
221: return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
222: -- 1 meaning error, 0 meaning OK
223: return_status := '1';
224: END IF;
225: