DBA Data[Home] [Help]

APPS.FV_BE_INT_PKG dependencies on FND_FLEX_VALUES

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

737: -------------------------------------------------------------------------------
738: -- Validate segment values where the segment type is 'Y' (need not validate
739: -- segment values where segment type is 'N' since default values are copied
740: -- which already exist in the fv tables and hence have been validated) i.e.,
741: -- check whether the values exist in fnd_flex_values before cross validation.
742: IF ( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
743: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_STATEMENT, l_module_name,'VALIDATING SEGMENT VALUES');
744: END IF;
745:

Line 791: FROM fnd_flex_values

787: ELSE
788:
789: SELECT 'x'
790: INTO v_exists
791: FROM fnd_flex_values
792: WHERE flex_value_set_id = val_set_id_array(substr(app_col_rec.application_column_name,8,2))
793: AND flex_value = segs_array(substr(app_col_rec.application_column_name,8,2))
794: AND enabled_flag = 'Y';
795: END IF;