DBA Data[Home] [Help]

APPS.GL_COA_SEG_VAL_IMP_PKG dependencies on FND_FLEX_VALIDATION_QUALIFIERS

Line 262: cp_id_flex_code IN fnd_flex_validation_qualifiers.id_flex_code%TYPE,

258: rec_roll_up_group c_roll_up_group%ROWTYPE;
259:
260: -- Cursor to validate the flex qualifiers and to form appropriate compiled_value_attribute
261: CURSOR c_flex_val_qual ( cp_flex_value_set_id IN fnd_flex_hierarchies.flex_value_set_id%TYPE,
262: cp_id_flex_code IN fnd_flex_validation_qualifiers.id_flex_code%TYPE,
263: cp_id_flex_application_id IN fnd_flex_validation_qualifiers.id_flex_application_id%TYPE) IS
264: SELECT segment_attribute_type,value_attribute_type
265: FROM fnd_flex_validation_qualifiers
266: WHERE id_flex_code = cp_id_flex_code

Line 263: cp_id_flex_application_id IN fnd_flex_validation_qualifiers.id_flex_application_id%TYPE) IS

259:
260: -- Cursor to validate the flex qualifiers and to form appropriate compiled_value_attribute
261: CURSOR c_flex_val_qual ( cp_flex_value_set_id IN fnd_flex_hierarchies.flex_value_set_id%TYPE,
262: cp_id_flex_code IN fnd_flex_validation_qualifiers.id_flex_code%TYPE,
263: cp_id_flex_application_id IN fnd_flex_validation_qualifiers.id_flex_application_id%TYPE) IS
264: SELECT segment_attribute_type,value_attribute_type
265: FROM fnd_flex_validation_qualifiers
266: WHERE id_flex_code = cp_id_flex_code
267: AND id_flex_application_id = cp_id_flex_application_id

Line 265: FROM fnd_flex_validation_qualifiers

261: CURSOR c_flex_val_qual ( cp_flex_value_set_id IN fnd_flex_hierarchies.flex_value_set_id%TYPE,
262: cp_id_flex_code IN fnd_flex_validation_qualifiers.id_flex_code%TYPE,
263: cp_id_flex_application_id IN fnd_flex_validation_qualifiers.id_flex_application_id%TYPE) IS
264: SELECT segment_attribute_type,value_attribute_type
265: FROM fnd_flex_validation_qualifiers
266: WHERE id_flex_code = cp_id_flex_code
267: AND id_flex_application_id = cp_id_flex_application_id
268: AND flex_value_set_id = cp_flex_value_set_id
269: ORDER BY assignment_date, value_attribute_type;