DBA Data[Home] [Help]

APPS.CTO_PUBLIC_UTILITY_PK dependencies on FND_API

Line 36: x_return_status : Return status of the API. Returns FND_API.G_RET_STS_ERROR if others exception is raised.

32: x_unit_selling_price : Unit Selling Price of the model. Calculated.
33: x_qty_selling_price : Total Selling Price of the model for quantity 'p_quantity'. Calculated.
34: x_currency_code : Currencty Code of the order line.
35:
36: x_return_status : Return status of the API. Returns FND_API.G_RET_STS_ERROR if others exception is raised.
37: Otherwise G_RET_STS_SUCCESS
38: x_error_code : Return error code. 0 if success. 1 if error.
39:
40: Note:

Line 42: and x_return_status will be set to FND_API.G_RET_STS_ERROR

38: x_error_code : Return error code. 0 if success. 1 if error.
39:
40: Note:
41: In case of hard-error, x_error_code will be set to 1
42: and x_return_status will be set to FND_API.G_RET_STS_ERROR
43: In case of soft-error, x_error_code will be set to 1
44: but x_return_status will be G_RET_STS_SUCCESS
45:
46: *************************************************************************************/

Line 63: x_return_status := FND_API.G_RET_STS_SUCCESS;

59: config_ato_line_id NUMBER;
60: config_ordered_qty NUMBER;
61: begin
62:
63: x_return_status := FND_API.G_RET_STS_SUCCESS;
64: x_error_code := 0;
65:
66: x_unit_selling_price := 0;
67: x_qty_selling_price := 0;

Line 107: x_return_status := FND_API.G_RET_STS_ERROR;

103: x_error_code := 1; -- Set the error code
104:
105: when others then
106: -- We will set the return_status here since it will be a hard-error.
107: x_return_status := FND_API.G_RET_STS_ERROR;
108: x_error_code := 1; -- Set the error code
109: end;
110:
111: END CTO_PUBLIC_UTILITY_PK;