DBA Data[Home] [Help]

APPS.GMD_RESULTS_GRP dependencies on GMD_UTILITY_PKG

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

5729: -- # 1. Start at the 1st record.
5730: -- # 2. For each record after the 1st, loop through records, checking
5731: -- # if they are of type Expression.
5732: -- # 3. If the current test is of type Expression, call the API
5733: -- # GMD_UTILITY_PKG.parse, which breaks the expression into its
5734: -- # components.
5735: -- #
5736: -- #
5737: -- #

Line 5858: l_exptab GMD_UTILITY_PKG.exptab;

5854: AND exclude_ind IS NULL
5855: ;
5856:
5857: l_value NUMBER;
5858: l_exptab GMD_UTILITY_PKG.exptab;
5859: l_boolean BOOLEAN := FALSE;
5860: l_exp_is_null BOOLEAN;
5861:
5862: i PLS_INTEGER;

Line 5910: GMD_UTILITY_PKG.parse (

5906:
5907: l_exptab.DELETE;
5908:
5909: -- Parse the expression
5910: GMD_UTILITY_PKG.parse (
5911: x_exp => l_exp_test.expression,
5912: x_exptab => l_exptab,
5913: x_return_status => l_return_status)
5914: ;

Line 5935: GMD_UTILITY_PKG.variable_value (

5931: -- EXIT;
5932: -- END IF;
5933: -- END BUG#3243631
5934: l_ref_tests := l_ref_tests+1; --Bug#5097709
5935: GMD_UTILITY_PKG.variable_value (
5936: pvar_name => l_all_ref_test.test_code,
5937: pvar_value => l_all_ref_test.data_num ,
5938: p_exptab => l_exptab,
5939: x_return_status => l_return_status);

Line 5950: GMD_UTILITY_PKG.evaluate_exp (

5946: -- Expression can only be calculated if all the reference
5947: -- tests have results entered.
5948: IF (NOT l_exp_is_null AND l_ref_tests = l_ref_count) THEN --Bug#5097709
5949: -- l_exptab is filled-in with values now so evaluate the exp.
5950: GMD_UTILITY_PKG.evaluate_exp (
5951: pexptab => l_exptab,
5952: pexp_test => l_boolean,
5953: x_value => l_value,
5954: x_return_status => x_return_status);