DBA Data[Home] [Help]

APPS.FV_BE_INT_PKG dependencies on FND_FLEX_VALUES

Line 776: -- check whether the values exist in fnd_flex_values before cross validation.

772: -------------------------------------------------------------------------------
773: -- Validate segment values where the segment type is 'Y' (need not validate
774: -- segment values where segment type is 'N' since default values are copied
775: -- which already exist in the fv tables and hence have been validated) i.e.,
776: -- check whether the values exist in fnd_flex_values before cross validation.
777: IF ( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
778: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_STATEMENT, l_module_name,'VALIDATING SEGMENT VALUES');
779: END IF;
780:

Line 826: FROM fnd_flex_values

822: ELSE
823:
824: SELECT 'x'
825: INTO v_exists
826: FROM fnd_flex_values
827: WHERE flex_value_set_id = val_set_id_array(substr(app_col_rec.application_column_name,8,2))
828: AND flex_value = segs_array(substr(app_col_rec.application_column_name,8,2))
829: AND enabled_flag = 'Y';
830: END IF;