DBA Data[Home] [Help]

APPS.PO_ACCOUNTING_GRP dependencies on STANDARD

Line 30: -- If FND_API.G_TRUE, the API will initialize the standard API message list.

26: --IN:
27: --p_api_version
28: -- API version number expected by the caller.
29: --p_init_msg_list
30: -- If FND_API.G_TRUE, the API will initialize the standard API message list.
31: --p_base_ccid
32: -- base account on which the overlaying will be done; ex. receiving inspection
33: -- account.
34: --p_overlay_ccid

Line 47: -- standard API message list.

43: -- FND_API.G_RET_STS_SUCCESS if the API successfully built the offset account.
44: -- FND_API.G_RET_STS_ERROR if the offset account could not be built, for
45: -- example if the base account, overlay account, or offset account fails
46: -- Flexbuilder validation. The error message will be returned on the
47: -- standard API message list.
48: -- FND_API.G_RET_STS_UNEXP_ERROR if an unexpected error occurred.
49: --x_result_ccid
50: -- the resulting offset account, if x_return_status=FND_API.G_RET_STS_SUCCESS.
51: --Notes:

Line 87: -- Standard API initialization:

83: || ' p_accounting_date: ' || p_accounting_date );
84: END IF;
85: END IF;
86:
87: -- Standard API initialization:
88: IF NOT FND_API.compatible_api_call ( l_api_version, p_api_version,
89: l_api_name, G_PKG_NAME ) THEN
90: RAISE FND_API.g_exc_unexpected_error;
91: END IF;

Line 134: -- Add the error to the standard API message list.

130: key_flex_code => 'GL#',
131: structure_number => l_coa_id,
132: combination_id => p_base_ccid );
133: IF (NOT l_result) THEN
134: -- Add the error to the standard API message list.
135: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);
136: FND_MSG_PUB.add;
137: RAISE FND_API.G_EXC_ERROR;
138: END IF;

Line 154: -- Add the error to the standard API message list.

150: key_flex_code => 'GL#',
151: structure_number => l_coa_id,
152: combination_id => p_overlay_ccid );
153: IF (NOT l_result) THEN
154: -- Add the error to the standard API message list.
155: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);
156: FND_MSG_PUB.add;
157: RAISE FND_API.G_EXC_ERROR;
158: END IF;

Line 262: -- Add it to the standard API message list.

258: segments => l_result_segments,
259: combination_id => x_result_ccid );
260: IF (NOT l_result) THEN
261: -- get_combination_id returned the error message on the stack.
262: -- Add it to the standard API message list.
263: FND_MSG_PUB.add;
264: RAISE FND_API.G_EXC_ERROR;
265: END IF;
266: