DBA Data[Home] [Help]

APPS.PO_TAX_SV dependencies on FND_API

Line 76: -- FND_API.G_RET_STS_SUCCESS if API succeeds

72: -- prior recoverable tax (from archive)
73: --x_old_non_recoverable_tax
74: -- prior non-recoverable tax (from archive)
75: --x_return_status
76: -- FND_API.G_RET_STS_SUCCESS if API succeeds
77: -- FND_API.G_RET_STS_ERROR if API fails
78: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
79: --x_msg_data
80: -- Contains error msg in case x_return_status returned

Line 77: -- FND_API.G_RET_STS_ERROR if API fails

73: --x_old_non_recoverable_tax
74: -- prior non-recoverable tax (from archive)
75: --x_return_status
76: -- FND_API.G_RET_STS_SUCCESS if API succeeds
77: -- FND_API.G_RET_STS_ERROR if API fails
78: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
79: --x_msg_data
80: -- Contains error msg in case x_return_status returned
81: -- FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR

Line 78: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs

74: -- prior non-recoverable tax (from archive)
75: --x_return_status
76: -- FND_API.G_RET_STS_SUCCESS if API succeeds
77: -- FND_API.G_RET_STS_ERROR if API fails
78: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
79: --x_msg_data
80: -- Contains error msg in case x_return_status returned
81: -- FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR
82: --Testing:

Line 81: -- FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR

77: -- FND_API.G_RET_STS_ERROR if API fails
78: -- FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
79: --x_msg_data
80: -- Contains error msg in case x_return_status returned
81: -- FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR
82: --Testing:
83: --
84: --End of Comments
85: --------------------------------------------------------------------------------

Line 102: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)

98: l_progress VARCHAR2(3);
99: BEGIN
100: l_progress := '000';
101: -- Standard call to check for call compatibility
102: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)
103: THEN
104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
105: END IF;
106:

Line 104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

100: l_progress := '000';
101: -- Standard call to check for call compatibility
102: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)
103: THEN
104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
105: END IF;
106:
107: l_progress := '010';
108: SELECT pd.recoverable_tax new_tax,

Line 123: x_return_status := FND_API.G_RET_STS_SUCCESS;

119: AND pd.po_distribution_id = pda.po_distribution_id (+)
120: AND pda.latest_external_flag (+) = 'Y';
121:
122: l_progress := '020';
123: x_return_status := FND_API.G_RET_STS_SUCCESS;
124: x_msg_data := NULL;
125: EXCEPTION
126: WHEN OTHERS THEN
127: po_message_s.sql_error('Exception of Get_All_PO_Tax()',

Line 132: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

128: l_progress , sqlcode);
129: FND_MSG_PUB.Add;
130: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,
131: p_encoded => 'F');
132: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
133: END;
134:
135: --
136: