DBA Data[Home] [Help]

APPS.BSC_IM_UTILS dependencies on BSC_MO_HELPER_PKG

Line 3040: l_num_fields := BSC_MO_HELPER_PKG.DecomposeString(l_formula, ' ', l_fields);

3036: l_reserved_functions(l_reserved_functions.count+1) := l_reserved;
3037: END LOOP;
3038: close cReservedFunctions ;
3039: --Break down the expression which is separated by ' '
3040: l_num_fields := BSC_MO_HELPER_PKG.DecomposeString(l_formula, ' ', l_fields);
3041: l_num_fields := l_fields.count;
3042: p_num_measures := 0;
3043: i:= l_fields.first;
3044: LOOP

Line 3051: If Not BSC_MO_HELPER_PKG.IsNumber(l_fields(i)) Then

3047: If in_array(l_Reserved_Functions, l_Reserved_Functions.count, l_fields(i)) = false Then
3048: --The word l_fields(i) is not a reserved function
3049: If UPPER(l_fields(i)) <> 'NULL' Then
3050: --the word is not 'NULL'
3051: If Not BSC_MO_HELPER_PKG.IsNumber(l_fields(i)) Then
3052: --the word is not a constant
3053: p_num_measures := p_num_measures + 1;
3054: p_measures(p_num_measures) := l_fields(i);
3055: END IF;