DBA Data[Home] [Help]

APPS.GMD_RESULTS_GRP dependencies on GMD_UTILITY_PKG

Line 5908: -- # GMD_UTILITY_PKG.parse, which breaks the expression into its

5904: -- # 1. Start at the 1st record.
5905: -- # 2. For each record after the 1st, loop through records, checking
5906: -- # if they are of type Expression.
5907: -- # 3. If the current test is of type Expression, call the API
5908: -- # GMD_UTILITY_PKG.parse, which breaks the expression into its
5909: -- # components.
5910: -- #
5911: -- #
5912: -- #

Line 6061: l_exptab GMD_UTILITY_PKG.exptab;

6057: AND exclude_ind IS NULL
6058: ;
6059:
6060: l_value NUMBER;
6061: l_exptab GMD_UTILITY_PKG.exptab;
6062: l_boolean BOOLEAN := FALSE;
6063: l_exp_is_null BOOLEAN;
6064:
6065: i PLS_INTEGER;

Line 6141: GMD_UTILITY_PKG.parse (

6137:
6138: l_exptab.DELETE;
6139:
6140: -- Parse the expression
6141: GMD_UTILITY_PKG.parse (
6142: x_exp => l_exp_test.expression,
6143: x_exptab => l_exptab,
6144: x_return_status => l_return_status)
6145: ;

Line 6166: GMD_UTILITY_PKG.variable_value (

6162: -- EXIT;
6163: -- END IF;
6164: -- END BUG#3243631
6165: l_ref_tests := l_ref_tests+1; --Bug#5097709
6166: GMD_UTILITY_PKG.variable_value (
6167: pvar_name => l_all_ref_test.test_code,
6168: pvar_value => l_all_ref_test.data_num ,
6169: p_exptab => l_exptab,
6170: x_return_status => l_return_status);

Line 6181: GMD_UTILITY_PKG.evaluate_exp (

6177: -- Expression can only be calculated if all the reference
6178: -- tests have results entered.
6179: IF (NOT l_exp_is_null AND l_ref_tests = l_ref_count) THEN --Bug#5097709
6180: -- l_exptab is filled-in with values now so evaluate the exp.
6181: GMD_UTILITY_PKG.evaluate_exp (
6182: pexptab => l_exptab,
6183: pexp_test => l_boolean,
6184: x_value => l_value,
6185: x_return_status => x_return_status);