DBA Data[Home] [Help]

APPS.INV_UI_RCV_LOVS dependencies on FND_FLEX_DESCVAL

Line 9597: fnd_flex_descval.set_column_value(

9593: print_debug('Actual Value is ' ||
9594: l_attributes_tbl(SUBSTR(l_segments_dr.application_column_name(i)
9595: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9)), 4);
9596:
9597: fnd_flex_descval.set_column_value(
9598: l_segments_dr.application_column_name(i)
9599: , l_attributes_tbl(SUBSTR(l_segments_dr.application_column_name(i)
9600: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9))
9601: );

Line 9603: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i), l_null_char_val);

9599: , l_attributes_tbl(SUBSTR(l_segments_dr.application_column_name(i)
9600: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9))
9601: );
9602: ELSE
9603: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i), l_null_char_val);
9604: END IF;
9605: v_index := v_index + 1;
9606: END LOOP;
9607:

Line 9622: fnd_flex_descval.set_context_value(l_context);

9618: /*Get the context for the item passed */
9619: IF x_attribute_category IS NOT NULL THEN
9620: l_context := x_attribute_category;
9621: /* Set flex context for validation of the value set */
9622: fnd_flex_descval.set_context_value(l_context);
9623: print_debug('The value of INV context is ' || l_context, 4);
9624:
9625: /* Prepare the context_r type */
9626: l_context_r.flexfield := l_dflex_r;

Line 9646: fnd_flex_descval.set_column_value(

9642:
9643: IF l_attributes_tbl.EXISTS(SUBSTR(l_segments_dr.application_column_name(i)
9644: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9)) THEN
9645:
9646: fnd_flex_descval.set_column_value(
9647: l_segments_dr.application_column_name(i)
9648: , l_attributes_tbl(SUBSTR(l_segments_dr.application_column_name(i)
9649: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9))
9650: );

Line 9652: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i), l_null_char_val);

9648: , l_attributes_tbl(SUBSTR(l_segments_dr.application_column_name(i)
9649: , INSTR(l_segments_dr.application_column_name(i), 'ATTRIBUTE') + 9))
9650: );
9651: ELSE
9652: fnd_flex_descval.set_column_value(l_segments_dr.application_column_name(i), l_null_char_val);
9653: END IF;
9654: v_index := v_index + 1;
9655: END LOOP;
9656: END IF;

Line 9661: fnd_flex_descval.set_context_value(l_context);

9657:
9658: IF (l_global_nsegments > 0 AND x_attribute_Category IS NULL ) THEN
9659: print_debug('global segments > 0', 4);
9660: l_context := l_contexts_dr.context_code(l_global_context);
9661: fnd_flex_descval.set_context_value(l_context);
9662: End if;
9663:
9664: IF fnd_flex_descval.validate_desccols(appl_short_name => 'PO',
9665: desc_flex_name => 'RCV_SHIPMENT_HEADERS', values_or_ids => 'I'

Line 9664: IF fnd_flex_descval.validate_desccols(appl_short_name => 'PO',

9660: l_context := l_contexts_dr.context_code(l_global_context);
9661: fnd_flex_descval.set_context_value(l_context);
9662: End if;
9663:
9664: IF fnd_flex_descval.validate_desccols(appl_short_name => 'PO',
9665: desc_flex_name => 'RCV_SHIPMENT_HEADERS', values_or_ids => 'I'
9666: , validation_date => SYSDATE) THEN
9667: print_debug('Value set validation successful', 4);
9668: ELSE

Line 9669: error_segment := fnd_flex_descval.error_segment;

9665: desc_flex_name => 'RCV_SHIPMENT_HEADERS', values_or_ids => 'I'
9666: , validation_date => SYSDATE) THEN
9667: print_debug('Value set validation successful', 4);
9668: ELSE
9669: error_segment := fnd_flex_descval.error_segment;
9670: print_debug('The error segment is : ' || fnd_flex_descval.error_segment, 4);
9671: RAISE errors_received;
9672: END IF;
9673:

Line 9670: print_debug('The error segment is : ' || fnd_flex_descval.error_segment, 4);

9666: , validation_date => SYSDATE) THEN
9667: print_debug('Value set validation successful', 4);
9668: ELSE
9669: error_segment := fnd_flex_descval.error_segment;
9670: print_debug('The error segment is : ' || fnd_flex_descval.error_segment, 4);
9671: RAISE errors_received;
9672: END IF;
9673:
9674: x_concatenated_val := fnd_flex_descval.concatenated_values;

Line 9674: x_concatenated_val := fnd_flex_descval.concatenated_values;

9670: print_debug('The error segment is : ' || fnd_flex_descval.error_segment, 4);
9671: RAISE errors_received;
9672: END IF;
9673:
9674: x_concatenated_val := fnd_flex_descval.concatenated_values;
9675: print_debug('The concatenated values is : ' || x_concatenated_val , 4);
9676:
9677: /** Retrun the VALUES to java */
9678: /** This Part of code is kept for future Use **********

Line 9687: x_val_attribute1 := fnd_flex_descval.Segment_Value(i);

9683: l_attrib_num := SUBSTR(l_enabled_seg_name(i)
9684: , INSTR(l_enabled_seg_name(i), 'ATTRIBUTE') + 9);
9685:
9686: if l_attrib_num = 1 then
9687: x_val_attribute1 := fnd_flex_descval.Segment_Value(i);
9688: End if;
9689: if l_attrib_num = 2 then
9690: x_val_attribute2 := fnd_flex_descval.Segment_Value(i);
9691: End if;

Line 9690: x_val_attribute2 := fnd_flex_descval.Segment_Value(i);

9686: if l_attrib_num = 1 then
9687: x_val_attribute1 := fnd_flex_descval.Segment_Value(i);
9688: End if;
9689: if l_attrib_num = 2 then
9690: x_val_attribute2 := fnd_flex_descval.Segment_Value(i);
9691: End if;
9692: if l_attrib_num = 3 then
9693: x_val_attribute3 := fnd_flex_descval.Segment_Value(i);
9694: End if;

Line 9693: x_val_attribute3 := fnd_flex_descval.Segment_Value(i);

9689: if l_attrib_num = 2 then
9690: x_val_attribute2 := fnd_flex_descval.Segment_Value(i);
9691: End if;
9692: if l_attrib_num = 3 then
9693: x_val_attribute3 := fnd_flex_descval.Segment_Value(i);
9694: End if;
9695: if l_attrib_num = 4 then
9696: x_val_attribute4 := fnd_flex_descval.Segment_Value(i);
9697: End if;

Line 9696: x_val_attribute4 := fnd_flex_descval.Segment_Value(i);

9692: if l_attrib_num = 3 then
9693: x_val_attribute3 := fnd_flex_descval.Segment_Value(i);
9694: End if;
9695: if l_attrib_num = 4 then
9696: x_val_attribute4 := fnd_flex_descval.Segment_Value(i);
9697: End if;
9698: if l_attrib_num = 5 then
9699: x_val_attribute5 := fnd_flex_descval.Segment_Value(i);
9700: End if;

Line 9699: x_val_attribute5 := fnd_flex_descval.Segment_Value(i);

9695: if l_attrib_num = 4 then
9696: x_val_attribute4 := fnd_flex_descval.Segment_Value(i);
9697: End if;
9698: if l_attrib_num = 5 then
9699: x_val_attribute5 := fnd_flex_descval.Segment_Value(i);
9700: End if;
9701: if l_attrib_num =6 then
9702: x_val_attribute6 := fnd_flex_descval.Segment_Value(i);
9703: End if;

Line 9702: x_val_attribute6 := fnd_flex_descval.Segment_Value(i);

9698: if l_attrib_num = 5 then
9699: x_val_attribute5 := fnd_flex_descval.Segment_Value(i);
9700: End if;
9701: if l_attrib_num =6 then
9702: x_val_attribute6 := fnd_flex_descval.Segment_Value(i);
9703: End if;
9704: if l_attrib_num = 7 then
9705: x_val_attribute7 := fnd_flex_descval.Segment_Value(i);
9706: End if;

Line 9705: x_val_attribute7 := fnd_flex_descval.Segment_Value(i);

9701: if l_attrib_num =6 then
9702: x_val_attribute6 := fnd_flex_descval.Segment_Value(i);
9703: End if;
9704: if l_attrib_num = 7 then
9705: x_val_attribute7 := fnd_flex_descval.Segment_Value(i);
9706: End if;
9707: if l_attrib_num =8 then
9708: x_val_attribute8 := fnd_flex_descval.Segment_Value(i);
9709: End if;

Line 9708: x_val_attribute8 := fnd_flex_descval.Segment_Value(i);

9704: if l_attrib_num = 7 then
9705: x_val_attribute7 := fnd_flex_descval.Segment_Value(i);
9706: End if;
9707: if l_attrib_num =8 then
9708: x_val_attribute8 := fnd_flex_descval.Segment_Value(i);
9709: End if;
9710: if l_attrib_num = 9 then
9711: x_val_attribute9 := fnd_flex_descval.Segment_Value(i);
9712: End if;

Line 9711: x_val_attribute9 := fnd_flex_descval.Segment_Value(i);

9707: if l_attrib_num =8 then
9708: x_val_attribute8 := fnd_flex_descval.Segment_Value(i);
9709: End if;
9710: if l_attrib_num = 9 then
9711: x_val_attribute9 := fnd_flex_descval.Segment_Value(i);
9712: End if;
9713: if l_attrib_num = 10 then
9714: x_val_attribute10 := fnd_flex_descval.Segment_Value(i);
9715: End if;

Line 9714: x_val_attribute10 := fnd_flex_descval.Segment_Value(i);

9710: if l_attrib_num = 9 then
9711: x_val_attribute9 := fnd_flex_descval.Segment_Value(i);
9712: End if;
9713: if l_attrib_num = 10 then
9714: x_val_attribute10 := fnd_flex_descval.Segment_Value(i);
9715: End if;
9716: if l_attrib_num = 11 then
9717: x_val_attribute11 := fnd_flex_descval.Segment_Value(i);
9718: End if;

Line 9717: x_val_attribute11 := fnd_flex_descval.Segment_Value(i);

9713: if l_attrib_num = 10 then
9714: x_val_attribute10 := fnd_flex_descval.Segment_Value(i);
9715: End if;
9716: if l_attrib_num = 11 then
9717: x_val_attribute11 := fnd_flex_descval.Segment_Value(i);
9718: End if;
9719: if l_attrib_num = 12 then
9720: x_val_attribute12 := fnd_flex_descval.Segment_Value(i);
9721: End if;

Line 9720: x_val_attribute12 := fnd_flex_descval.Segment_Value(i);

9716: if l_attrib_num = 11 then
9717: x_val_attribute11 := fnd_flex_descval.Segment_Value(i);
9718: End if;
9719: if l_attrib_num = 12 then
9720: x_val_attribute12 := fnd_flex_descval.Segment_Value(i);
9721: End if;
9722: if l_attrib_num = 13 then
9723: x_val_attribute13 := fnd_flex_descval.Segment_Value(i);
9724: End if;

Line 9723: x_val_attribute13 := fnd_flex_descval.Segment_Value(i);

9719: if l_attrib_num = 12 then
9720: x_val_attribute12 := fnd_flex_descval.Segment_Value(i);
9721: End if;
9722: if l_attrib_num = 13 then
9723: x_val_attribute13 := fnd_flex_descval.Segment_Value(i);
9724: End if;
9725: if l_attrib_num = 14 then
9726: x_val_attribute14 := fnd_flex_descval.Segment_Value(i);
9727: End if;

Line 9726: x_val_attribute14 := fnd_flex_descval.Segment_Value(i);

9722: if l_attrib_num = 13 then
9723: x_val_attribute13 := fnd_flex_descval.Segment_Value(i);
9724: End if;
9725: if l_attrib_num = 14 then
9726: x_val_attribute14 := fnd_flex_descval.Segment_Value(i);
9727: End if;
9728: if l_attrib_num = 15 then
9729: x_val_attribute15 := fnd_flex_descval.Segment_Value(i);
9730: End if;

Line 9729: x_val_attribute15 := fnd_flex_descval.Segment_Value(i);

9725: if l_attrib_num = 14 then
9726: x_val_attribute14 := fnd_flex_descval.Segment_Value(i);
9727: End if;
9728: if l_attrib_num = 15 then
9729: x_val_attribute15 := fnd_flex_descval.Segment_Value(i);
9730: End if;
9731: EXCEPTION
9732: WHEN OTHERS THEN NULL;
9733: END;