DBA Data[Home] [Help]

APPS.IGS_AD_TRANSCRIPT_PKG dependencies on IGS_GE_NUMBER

Line 213: new_references.percentile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

209:
210: IF column_name IS NULL THEN
211: NULL;
212: ELSIF UPPER(column_name) = 'PERCENTILE_RANK' THEN
213: new_references.percentile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
214: ELSIF UPPER(column_name) = 'QUARTILE_RANK' THEN
215: new_references.quartile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
216: ELSIF UPPER(column_name) = 'QUINTILE_RANK' THEN
217: new_references.quintile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

Line 215: new_references.quartile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

211: NULL;
212: ELSIF UPPER(column_name) = 'PERCENTILE_RANK' THEN
213: new_references.percentile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
214: ELSIF UPPER(column_name) = 'QUARTILE_RANK' THEN
215: new_references.quartile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
216: ELSIF UPPER(column_name) = 'QUINTILE_RANK' THEN
217: new_references.quintile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
218: ELSIF UPPER(column_name) = 'DECILE_RANK' THEN
219: new_references.decile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

Line 217: new_references.quintile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

213: new_references.percentile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
214: ELSIF UPPER(column_name) = 'QUARTILE_RANK' THEN
215: new_references.quartile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
216: ELSIF UPPER(column_name) = 'QUINTILE_RANK' THEN
217: new_references.quintile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
218: ELSIF UPPER(column_name) = 'DECILE_RANK' THEN
219: new_references.decile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
220: ELSIF UPPER(column_name) = 'APPROXIMATE_RANK' THEN
221: new_references.approximate_rank := column_value;

Line 219: new_references.decile_rank := IGS_GE_NUMBER.TO_NUM(column_value);

215: new_references.quartile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
216: ELSIF UPPER(column_name) = 'QUINTILE_RANK' THEN
217: new_references.quintile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
218: ELSIF UPPER(column_name) = 'DECILE_RANK' THEN
219: new_references.decile_rank := IGS_GE_NUMBER.TO_NUM(column_value);
220: ELSIF UPPER(column_name) = 'APPROXIMATE_RANK' THEN
221: new_references.approximate_rank := column_value;
222: ELSIF UPPER(column_name) = 'WEIGHTED_RANK' THEN
223: new_references.weighted_rank := column_value;

Line 225: new_references.rank_in_class := IGS_GE_NUMBER.TO_NUM(column_value);

221: new_references.approximate_rank := column_value;
222: ELSIF UPPER(column_name) = 'WEIGHTED_RANK' THEN
223: new_references.weighted_rank := column_value;
224: ELSIF UPPER(column_name) = 'RANK_IN_CLASS' THEN
225: new_references.rank_in_class := IGS_GE_NUMBER.TO_NUM(column_value);
226: ELSIF UPPER(column_name) = 'CLASS_SIZE' THEN
227: new_references.class_size := IGS_GE_NUMBER.TO_NUM(column_value);
228: ELSIF UPPER(column_name) = 'TRANSCRIPT_TYPE' THEN
229: new_references.transcript_type := column_value;

Line 227: new_references.class_size := IGS_GE_NUMBER.TO_NUM(column_value);

223: new_references.weighted_rank := column_value;
224: ELSIF UPPER(column_name) = 'RANK_IN_CLASS' THEN
225: new_references.rank_in_class := IGS_GE_NUMBER.TO_NUM(column_value);
226: ELSIF UPPER(column_name) = 'CLASS_SIZE' THEN
227: new_references.class_size := IGS_GE_NUMBER.TO_NUM(column_value);
228: ELSIF UPPER(column_name) = 'TRANSCRIPT_TYPE' THEN
229: new_references.transcript_type := column_value;
230: END IF;
231: