DBA Data[Home] [Help]

APPS.GR_TOXIC_CALCULATIONS dependencies on GR_TOXIC_CALCULATIONS

Line 1: PACKAGE BODY gr_toxic_calculations AS

1: PACKAGE BODY gr_toxic_calculations AS
2: /* $Header: GRTXCALB.pls 120.1 2005/09/06 14:45:12 pbamb noship $ */
3:
4: /*===========================================================================
5: -- FUNCTION:

Line 16: -- x_ingred_value_tbl OUT GR_TOXIC_CALCULATIONS.t_ingredient_values

12: -- PARAMETERS:
13: -- p_item_code IN VARCHAR2 - Item code of product
14: -- p_rollup_type IN NUMBER - The type of toxic calculation
15: -- p_label_code IN VARCHAR2 - The toxicity calculation label code
16: -- x_ingred_value_tbl OUT GR_TOXIC_CALCULATIONS.t_ingredient_values
17: -- - Table of values used in calculation
18: -- x_error_message OUT VARCHAR2 - If there is an error, send back the approriate message
19: -- x_return_status OUT VARCHAR2 - 'S'uccess, 'E'rror, 'U'nexpected Error
20: --

Line 39: x_ingred_value_tbl OUT NOCOPY GR_TOXIC_CALCULATIONS.t_ingredient_values,

35: --=========================================================================== */
36: FUNCTION calculate_toxic_value (p_item_code IN VARCHAR2,
37: p_rollup_type IN NUMBER,
38: p_label_code IN VARCHAR2,
39: x_ingred_value_tbl OUT NOCOPY GR_TOXIC_CALCULATIONS.t_ingredient_values,
40: x_error_message OUT NOCOPY VARCHAR2,
41: x_return_status OUT NOCOPY VARCHAR2
42: ) RETURN NUMBER IS
43: BEGIN

Line 60: END gr_toxic_calculations;

56: END calculate_toxic_value;
57:
58:
59:
60: END gr_toxic_calculations;
61: