DBA Data[Home] [Help]

APPS.AP_AUTOSELECT_PKG dependencies on FND_API

Line 5152: if l_return_status <> FND_API.G_RET_STS_SUCCESS then

5148: x_return_status => l_return_status,
5149: x_msg_count => l_msg_count,
5150: x_msg_data => l_msg_data);
5151:
5152: if l_return_status <> FND_API.G_RET_STS_SUCCESS then
5153: IF l_msg_count > 0 THEN
5154: FOR i in 1..l_msg_count LOOP
5155: FND_MSG_PUB.Get( p_msg_index => i,
5156: p_encoded => 'F',

Line 5979: if l_return_status <> FND_API.G_RET_STS_SUCCESS then

5975: x_return_status => l_return_status,
5976: x_msg_count => l_msg_count,
5977: x_msg_data => l_msg_data);
5978:
5979: if l_return_status <> FND_API.G_RET_STS_SUCCESS then
5980: IF l_msg_count > 0 THEN
5981: FOR i in 1..l_msg_count LOOP
5982: FND_MSG_PUB.Get( p_msg_index => i,
5983: p_encoded => 'F',

Line 6179: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then /* Bug 14336393 */

6175: l_psr_id,
6176: 'TERMINATED',
6177: l_return_status);
6178:
6179: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then /* Bug 14336393 */
6180: l_debug_info := ('The return status from IBY API Terminate PMT Request is:' || l_return_status);
6181: RAISE excp_return_success;
6182: end if;
6183:

Line 6192: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then /* Bug 14336393 */

6188: l_psr_id,
6189: 'TERMINATED',
6190: l_return_status);
6191:
6192: if(l_return_status <> FND_API.G_RET_STS_SUCCESS) then /* Bug 14336393 */
6193: l_debug_info := ('The return status from IBY API Terminate PMT Request is:' || l_return_status);
6194: RAISE excp_return_success;
6195: end if;
6196: end if;

Line 6703: x_return_status := FND_API.G_RET_STS_SUCCESS;

6699:
6700: CLOSE c_sel_invs;
6701:
6702: IF (l_status = true) THEN
6703: x_return_status := FND_API.G_RET_STS_SUCCESS;
6704: ELSE
6705: x_return_status := FND_API.G_RET_STS_ERROR;
6706: END IF ;
6707:

Line 6705: x_return_status := FND_API.G_RET_STS_ERROR;

6701:
6702: IF (l_status = true) THEN
6703: x_return_status := FND_API.G_RET_STS_SUCCESS;
6704: ELSE
6705: x_return_status := FND_API.G_RET_STS_ERROR;
6706: END IF ;
6707:
6708: EXCEPTION
6709: WHEN OTHERS THEN

Line 6714: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

6710: l_debug_info := 'Caught in exception block.' ;
6711: IF (G_LEVEL_PROCEDURE >= G_CURRENT_RUNTIME_LEVEL) THEN
6712: fnd_file.put_line(FND_FILE.LOG,l_debug_info);
6713: END IF;
6714: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
6715:
6716: END check_doc_payable_remove;
6717:
6718: END AP_AUTOSELECT_PKG;