DBA Data[Home] [Help]

APPS.INV_LOT_SEL_ATTR dependencies on FND_FLEX_DESCVAL

Line 1984: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(j),

1980: x_inv_serial_attributes(substr(l_segments_dr.application_column_name(j),
1981: instr(l_segments_dr.application_column_name(j),'ATTRIBUTE')+9)).column_value :=
1982: l_inv_serial_attr(substr(l_segments_dr.application_column_name(j),
1983: instr(l_segments_dr.application_column_name(j),'ATTRIBUTE')+9));
1984: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(j),
1985: l_inv_serial_attr(substr(l_segments_dr.application_column_name(j),
1986: instr(l_segments_dr.application_column_name(j), 'ATTRIBUTE')+9)));
1987: END LOOP;
1988: l_context := NULL;

Line 1995: fnd_flex_descval.set_context_value(l_context);

1991: IF p_attribute_category IS NOT NULL THEN
1992: debug('getting context specific segments', 'GET_INV_SERIAL_ATTR', 9);
1993: l_context := p_attribute_category;
1994: debug('setting context value ' || l_context, 'GET_INV_SERIAL_ATTR', 9);
1995: fnd_flex_descval.set_context_value(l_context);
1996:
1997: /* Prepare the context_r type for getting the segments associated with the input context */
1998:
1999: l_context_r.flexfield := l_dflex_r;

Line 2024: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i),

2020: x_inv_serial_attributes(substr(l_segments_dr.application_column_name(i),
2021: instr(l_segments_dr.application_column_name(i),'ATTRIBUTE')+9)).column_value :=
2022: l_inv_serial_attr(substr(l_segments_dr.application_column_name(i),
2023: instr(l_segments_dr.application_column_name(i),'ATTRIBUTE')+9));
2024: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i),
2025: l_inv_serial_attr(substr(l_segments_dr.application_column_name(i),
2026: instr(l_segments_dr.application_column_name(i), 'ATTRIBUTE')+9)));
2027: END LOOP;
2028: END IF;

Line 2032: fnd_flex_descval.set_context_value(l_context);

2028: END IF;
2029:
2030: IF ( p_attribute_Category IS NULL ) then
2031: l_context := l_contexts_dr.context_code(l_global_context);
2032: fnd_flex_descval.set_context_value(l_context);
2033: end if;
2034: debug('calling fnd_flex_descval.concatenated_values', 'GET_INV_SERIAL_ATTR', 9);
2035: IF fnd_flex_descval.validate_desccols(appl_short_name => 'INV',
2036: desc_flex_name => 'MTL_SERIAL_NUMBERS', values_or_ids => 'I' , validation_date => SYSDATE) THEN

Line 2034: debug('calling fnd_flex_descval.concatenated_values', 'GET_INV_SERIAL_ATTR', 9);

2030: IF ( p_attribute_Category IS NULL ) then
2031: l_context := l_contexts_dr.context_code(l_global_context);
2032: fnd_flex_descval.set_context_value(l_context);
2033: end if;
2034: debug('calling fnd_flex_descval.concatenated_values', 'GET_INV_SERIAL_ATTR', 9);
2035: IF fnd_flex_descval.validate_desccols(appl_short_name => 'INV',
2036: desc_flex_name => 'MTL_SERIAL_NUMBERS', values_or_ids => 'I' , validation_date => SYSDATE) THEN
2037: x_concatenated_values := fnd_flex_descval.concatenated_values;
2038: ELSE

Line 2035: IF fnd_flex_descval.validate_desccols(appl_short_name => 'INV',

2031: l_context := l_contexts_dr.context_code(l_global_context);
2032: fnd_flex_descval.set_context_value(l_context);
2033: end if;
2034: debug('calling fnd_flex_descval.concatenated_values', 'GET_INV_SERIAL_ATTR', 9);
2035: IF fnd_flex_descval.validate_desccols(appl_short_name => 'INV',
2036: desc_flex_name => 'MTL_SERIAL_NUMBERS', values_or_ids => 'I' , validation_date => SYSDATE) THEN
2037: x_concatenated_values := fnd_flex_descval.concatenated_values;
2038: ELSE
2039:

Line 2037: x_concatenated_values := fnd_flex_descval.concatenated_values;

2033: end if;
2034: debug('calling fnd_flex_descval.concatenated_values', 'GET_INV_SERIAL_ATTR', 9);
2035: IF fnd_flex_descval.validate_desccols(appl_short_name => 'INV',
2036: desc_flex_name => 'MTL_SERIAL_NUMBERS', values_or_ids => 'I' , validation_date => SYSDATE) THEN
2037: x_concatenated_values := fnd_flex_descval.concatenated_values;
2038: ELSE
2039:
2040: x_concatenated_values := null;
2041: FND_MESSAGE.SET_NAME('INV', 'INV_FND_GENERIC_MSG');

Line 2042: FND_MESSAGE.SET_TOKEN('MSG', fnd_flex_descval.error_message);

2038: ELSE
2039:
2040: x_concatenated_values := null;
2041: FND_MESSAGE.SET_NAME('INV', 'INV_FND_GENERIC_MSG');
2042: FND_MESSAGE.SET_TOKEN('MSG', fnd_flex_descval.error_message);
2043: FND_MSG_PUB.ADD;
2044: raise fnd_api.g_exc_unexpected_error;
2045: END IF;
2046: debug('after getting x_concatenated_values ' || x_concatenated_values, 'GET_INV_SERIAL_ATTR', 9);