DBA Data[Home] [Help]

APPS.PA_MULTI_CURRENCY_BILLING dependencies on FND_API

Line 65: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

61:
62: WHEN others THEN
63: x_msg_count := 1;
64: x_msg_data := SUBSTR(SQLERRM, 1, 240);
65: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
66: /* Aded the below for NOCOPY Mandate */
67: x_multi_currency_billing_flag := NULL;
68: x_share_bill_rates_across_OU := NULL;
69: x_allow_funding_across_OU := NULL;

Line 233: x_return_status := FND_API.G_RET_STS_ERROR;

229:
230: /*
231: x_msg_count := 1;
232: x_msg_data := 'PA_NO_FUNDING_EXISTS';
233: x_return_status := FND_API.G_RET_STS_ERROR;
234: FND_MSG_PUB.add_Exc_msg(
235: p_pkg_name => 'PA_MULTI_CURRENCY_BILLING',
236: p_procedure_name => 'get_project_defaults');
237:

Line 253: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

249: WHEN others THEN
250:
251: x_msg_count := 1;
252: x_msg_data := SUBSTR(SQLERRM, 1, 240);
253: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
254: /* Added the belog for NOCOPY mandate */
255: x_multi_currency_billing_flag := NULL;
256: x_baseline_funding_flag := NULL;
257: x_revproc_currency_code := NULL;

Line 1657: x_return_status := 'S'; -- FND_API.G_RET_STS_SUCCESS;

1653:
1654: x_funding_exists VARCHAR2(1):= NULL;
1655: BEGIN
1656:
1657: x_return_status := 'S'; -- FND_API.G_RET_STS_SUCCESS;
1658:
1659: IF ( p_cust_contribution = 0 ) THEN
1660:
1661: OPEN C_fund;

Line 1667: x_return_status := 'E'; -- FND_API.G_RET_STS_ERROR;

1663: INTO x_funding_exists;
1664: CLOSE C_fund;
1665:
1666: IF (x_funding_exists IS NOT NULL) THEN
1667: x_return_status := 'E'; -- FND_API.G_RET_STS_ERROR;
1668: x_msg_data := 'PA_BILL_CUST_CONTR_ZERO';
1669: x_msg_count := 1;
1670: ELSE
1671: x_return_status := 'S'; -- FND_API.G_RET_STS_SUCCESS;

Line 1671: x_return_status := 'S'; -- FND_API.G_RET_STS_SUCCESS;

1667: x_return_status := 'E'; -- FND_API.G_RET_STS_ERROR;
1668: x_msg_data := 'PA_BILL_CUST_CONTR_ZERO';
1669: x_msg_count := 1;
1670: ELSE
1671: x_return_status := 'S'; -- FND_API.G_RET_STS_SUCCESS;
1672: END IF;
1673:
1674: END IF;
1675: EXCEPTION

Line 1677: x_return_status := 'U'; -- FND_API.G_RET_STS_UNEXP_ERROR;

1673:
1674: END IF;
1675: EXCEPTION
1676: WHEN OTHERS THEN
1677: x_return_status := 'U'; -- FND_API.G_RET_STS_UNEXP_ERROR;
1678: x_msg_data := SUBSTR(SQLERRM,1,50);
1679: x_msg_count := 1;
1680:
1681: END Check_Cust_Funding_Exists;