DBA Data[Home] [Help]

APPS.IGS_RU_GEN_001 dependencies on IGS_GE_NUMBER

Line 1970: IF IGS_GE_NUMBER.TO_NUM(p_val1) = IGS_GE_NUMBER.TO_NUM(p_val2)

1966: IF p_val1 IS NULL AND p_val2 IS NULL
1967: THEN
1968: RETURN ('true');
1969: END IF;
1970: IF IGS_GE_NUMBER.TO_NUM(p_val1) = IGS_GE_NUMBER.TO_NUM(p_val2)
1971: THEN
1972: RETURN ('true');
1973: ELSE
1974: RETURN ('false');

Line 2001: IF IGS_GE_NUMBER.TO_NUM(p_val1) <> IGS_GE_NUMBER.TO_NUM(p_val2)

1997: OR p_val1 IS NOT NULL AND p_val2 IS NULL
1998: THEN
1999: RETURN ('true');
2000: END IF;
2001: IF IGS_GE_NUMBER.TO_NUM(p_val1) <> IGS_GE_NUMBER.TO_NUM(p_val2)
2002: THEN
2003: RETURN ('true');
2004: ELSE
2005: RETURN ('false');

Line 2681: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),

2677: WHERE person_id = p_person_id
2678: AND course_cd = p_course_cd
2679: AND (p_param_8 IS NULL OR p_param_8 <> uoo_id)
2680: -- AND sup_unit_cd IS NULL 99/05/04 hrt
2681: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),
2682: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )
2683: LOOP
2684: gv_sua_set := add_member(gv_sua_set,
2685: student_unit_attempts.unit_cd,

Line 2682: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )

2678: AND course_cd = p_course_cd
2679: AND (p_param_8 IS NULL OR p_param_8 <> uoo_id)
2680: -- AND sup_unit_cd IS NULL 99/05/04 hrt
2681: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),
2682: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )
2683: LOOP
2684: gv_sua_set := add_member(gv_sua_set,
2685: student_unit_attempts.unit_cd,
2686: student_unit_attempts.version_number,

Line 2787: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number) )

2783: AND s_adv_stnd_granting_status IN ('APPROVED','GRANTED')
2784: AND s_adv_stnd_recognition_type = 'CREDIT'
2785: AND (igs_av_val_asu.granted_adv_standing(person_id,as_course_cd,as_version_number,
2786: unit_cd,version_number,'BOTH',NULL) ='TRUE')
2787: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number) )
2788: LOOP
2789: /*
2790: get ONE earliest calander for student to use in advanced standing set
2791: modified this logic to be based on program offering options instead of unit attempts,bug#4283221

Line 2957: v_lower := IGS_GE_NUMBER.TO_NUM(v_sub_str);

2953: v_prev_comma := v_curr_comma + 1;
2954: v_dash := INSTR(v_sub_str, '-');
2955: IF v_dash = 0
2956: THEN
2957: v_lower := IGS_GE_NUMBER.TO_NUM(v_sub_str);
2958: v_upper := v_lower;
2959: ELSE
2960: /*
2961: dash in sub-string, split lower and upper

Line 2963: v_lower := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, 1, v_dash - 1));

2959: ELSE
2960: /*
2961: dash in sub-string, split lower and upper
2962: */
2963: v_lower := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, 1, v_dash - 1));
2964: v_upper := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, v_dash + 1));
2965: END IF;
2966: IF (p_version_number >= v_lower OR v_lower IS NULL) AND
2967: (p_version_number <= v_upper OR v_upper IS NULL)

Line 2964: v_upper := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, v_dash + 1));

2960: /*
2961: dash in sub-string, split lower and upper
2962: */
2963: v_lower := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, 1, v_dash - 1));
2964: v_upper := IGS_GE_NUMBER.TO_NUM(SUBSTR(v_sub_str, v_dash + 1));
2965: END IF;
2966: IF (p_version_number >= v_lower OR v_lower IS NULL) AND
2967: (p_version_number <= v_upper OR v_upper IS NULL)
2968: THEN

Line 3317: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number) )

3313: SELECT unit_cd,
3314: version_number
3315: FROM IGS_PS_UNIT_VER
3316: WHERE unit_cd LIKE (p_unit_cd)
3317: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number) )
3318: LOOP
3319: IF in_versions(uv.version_number,
3320: p_versions) = TRUE
3321: THEN

Line 3346: ORDER BY unt_oo.cal_type, IGS_GE_NUMBER.TO_CANN(unt_oo.ci_sequence_number)

3342: SELECT unt_oo.cal_type,unt_oo.ci_sequence_number,unt_oo.uoo_id
3343: FROM IGS_PS_UNIT_OFR_OPT unt_oo
3344: WHERE unt_oo.unit_cd = uv.unit_cd AND
3345: unt_oo.version_number = uv.version_number
3346: ORDER BY unt_oo.cal_type, IGS_GE_NUMBER.TO_CANN(unt_oo.ci_sequence_number)
3347: )
3348: LOOP
3349: v_set1 := add_member(p_set1,
3350: uv.unit_cd,

Line 3385: ORDER BY uvr.unit_cd,IGS_GE_NUMBER.TO_CANN(uvr.version_number) )

3381: WHERE rsm.unit_cd = p_unit_cd
3382: AND uvr.s_rule_call_cd = 'TRANS'
3383: AND rui.rul_sequence_number = uvr.rul_sequence_number
3384: AND rsm.rs_sequence_number = rui.set_number
3385: ORDER BY uvr.unit_cd,IGS_GE_NUMBER.TO_CANN(uvr.version_number) )
3386: LOOP
3387: IF in_versions(p_unit_version,SNART.rms_versions)
3388: THEN
3389: FOR UOO IN (

Line 3399: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),

3395: uoo_id
3396: FROM IGS_PS_UNIT_OFR_OPT
3397: WHERE unit_cd = SNART.uvr_unit_cd
3398: AND version_number = SNART.uvr_version_number
3399: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),
3400: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )
3401: LOOP
3402: v_set1 := add_member(v_set1,
3403: UOO.unit_cd,

Line 3400: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )

3396: FROM IGS_PS_UNIT_OFR_OPT
3397: WHERE unit_cd = SNART.uvr_unit_cd
3398: AND version_number = SNART.uvr_version_number
3399: ORDER BY unit_cd,IGS_GE_NUMBER.TO_CANN(version_number),
3400: cal_type,IGS_GE_NUMBER.TO_CANN(ci_sequence_number) )
3401: LOOP
3402: v_set1 := add_member(v_set1,
3403: UOO.unit_cd,
3404: UOO.version_number,

Line 3459: ORDER BY unit_set_cd,IGS_GE_NUMBER.TO_CANN(version_number) )

3455: SELECT unit_set_cd,
3456: version_number
3457: FROM IGS_EN_UNIT_SET
3458: WHERE unit_set_cd LIKE (set_members.unit_cd)
3459: ORDER BY unit_set_cd,IGS_GE_NUMBER.TO_CANN(version_number) )
3460: LOOP
3461: IF in_versions(US.version_number,
3462: set_members.versions) = TRUE
3463: THEN

Line 3497: ORDER BY course_cd,IGS_GE_NUMBER.TO_CANN(version_number) )

3493: SELECT course_cd,
3494: version_number
3495: FROM IGS_PS_VER
3496: WHERE course_cd LIKE (set_members.unit_cd)
3497: ORDER BY course_cd,IGS_GE_NUMBER.TO_CANN(version_number) )
3498: LOOP
3499: IF in_versions(CRS.version_number,
3500: set_members.versions) = TRUE
3501: THEN

Line 5111: l_message := 'Attempted Cumulative Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5107: p_course_cd,
5108: p_course_version,
5109: p_cal_type,
5110: p_ci_sequence_number);
5111: l_message := 'Attempted Cumulative Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5112: ELSIF p_rule_type = 'APCPM' THEN
5113: l_rule_type := 'APCP' ;
5114: l_gpa_cp_calc := prgp_cal_cp(
5115: l_rule_type,

Line 5121: l_message := 'Attempted Period Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5117: p_course_cd,
5118: p_course_version,
5119: p_cal_type,
5120: p_ci_sequence_number);
5121: l_message := 'Attempted Period Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5122: ELSIF p_rule_type = 'ECCPM' THEN
5123: l_rule_type := 'ECCP' ;
5124: l_gpa_cp_calc := prgp_cal_cp(
5125: l_rule_type,

Line 5131: l_message := 'Earned Cumulative Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5127: p_course_cd,
5128: p_course_version,
5129: p_cal_type,
5130: p_ci_sequence_number);
5131: l_message := 'Earned Cumulative Credit Points is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5132: ELSIF p_rule_type = 'EPCPM' THEN
5133: l_rule_type := 'EPCP' ;
5134: l_gpa_cp_calc := prgp_cal_cp(
5135: l_rule_type,

Line 5141: l_message := 'Earned Period Credit Points is ' || IGS_GE_NUMBER.TO_CANN(l_gpa_cp_calc) ;

5137: p_course_cd,
5138: p_course_version,
5139: p_cal_type,
5140: p_ci_sequence_number);
5141: l_message := 'Earned Period Credit Points is ' || IGS_GE_NUMBER.TO_CANN(l_gpa_cp_calc) ;
5142: ELSIF p_rule_type IN ('MACPGSAPM', 'MACPGSAPM_ST') THEN
5143: l_rule_type := 'ALL_PERD_PM' ;
5144: -- kdande; Changed the following call to include statistic type as part of FA112
5145: l_outcome := prgp_cal_cp_gsch (

Line 5156: l_message := 'Percentage Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5152: g_grad_sch_set_no,
5153: 0,
5154: l_gpa_cp_calc,
5155: NULL);
5156: l_message := 'Percentage Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5157: ELSIF p_rule_type IN ('MACPGSCPM', 'MACPGSCPM_ST') THEN
5158: l_rule_type := 'CUR_PERD_PM' ;
5159: -- kdande; Changed the following call to include statistic type as part of FA112
5160: l_outcome := prgp_cal_cp_gsch (

Line 5171: l_message := 'Percentage Attempted Credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5167: g_grad_sch_set_no,
5168: 0,
5169: l_gpa_cp_calc,
5170: NULL);
5171: l_message := 'Percentage Attempted Credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5172: ELSIF p_rule_type IN ('LACPGSAPM', 'LACPGSAPM_ST') THEN
5173: l_rule_type := 'ALL_PERD_PL' ;
5174: -- kdande; Changed the following call to include statistic type as part of FA112
5175: l_outcome := prgp_cal_cp_gsch (

Line 5186: l_message := 'Percentage Attempted Credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5182: g_grad_sch_set_no,
5183: 0,
5184: l_gpa_cp_calc,
5185: NULL);
5186: l_message := 'Percentage Attempted Credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5187: ELSIF p_rule_type IN ('LACPGSCPM', 'LACPGSCPM_ST') THEN
5188: l_rule_type := 'CUR_PERD_PL' ;
5189: -- kdande; Changed the following call to include statistic type as part of FA112
5190: l_outcome := prgp_cal_cp_gsch (

Line 5201: l_message := 'Percentage Attempted Credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5197: g_grad_sch_set_no,
5198: 0,
5199: l_gpa_cp_calc,
5200: NULL);
5201: l_message := 'Percentage Attempted Credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5202: ELSIF p_rule_type IN ('MACPGSAM', 'MACPGSAM_ST') THEN
5203: l_rule_type := 'ALL_PERDM' ;
5204: -- kdande; Changed the following call to include statistic type as part of FA112
5205: l_outcome := prgp_cal_cp_gsch (

Line 5216: l_message := 'Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5212: g_grad_sch_set_no,
5213: 0,
5214: l_gpa_cp_calc,
5215: NULL);
5216: l_message := 'Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5217: ELSIF p_rule_type IN ('MACPGSCM', 'MACPGSCM_ST') THEN
5218: l_rule_type := 'CUR_PERDM' ;
5219: -- kdande; Changed the following call to include statistic type as part of FA112
5220: l_outcome := prgp_cal_cp_gsch (

Line 5231: l_message := 'Attempted credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5227: g_grad_sch_set_no,
5228: 0,
5229: l_gpa_cp_calc,
5230: NULL);
5231: l_message := 'Attempted credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5232: ELSIF p_rule_type IN ('LACPGSCM', 'LACPGSCM_ST') THEN
5233: l_rule_type := 'CUR_PERDL' ;
5234: -- kdande; Changed the following call to include statistic type as part of FA112
5235: l_outcome := prgp_cal_cp_gsch (

Line 5246: l_message := 'Attempted credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5242: g_grad_sch_set_no,
5243: 0,
5244: l_gpa_cp_calc,
5245: NULL);
5246: l_message := 'Attempted credit Points in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5247: ELSIF p_rule_type IN ('LACPGSAM', 'LACPGSAM_ST') THEN
5248: l_rule_type := 'ALL_PERDL' ;
5249: -- kdande; Changed the following call to include statistic type as part of FA112
5250: l_outcome := prgp_cal_cp_gsch (

Line 5261: l_message := 'Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5257: g_grad_sch_set_no,
5258: 0,
5259: l_gpa_cp_calc,
5260: NULL);
5261: l_message := 'Attempted credit Points in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5262: ELSIF p_rule_type = 'MAUGSAPM' THEN
5263: l_rule_type := 'ALL_PERD_UPM' ;
5264: -- kdande; Changed the following call to include statistic type as part of FA112
5265: l_outcome := prgp_cal_cp_gsch (

Line 5276: l_message := 'Percentage Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5272: g_grad_sch_set_no,
5273: 0,
5274: l_gpa_cp_calc,
5275: NULL);
5276: l_message := 'Percentage Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5277: ELSIF p_rule_type = 'MAUGSCPM' THEN
5278: l_rule_type := 'CUR_PERD_UPM' ;
5279: -- kdande; Changed the following call to include statistic type as part of FA112
5280: l_outcome := prgp_cal_cp_gsch (

Line 5291: l_message := 'Percentage Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5287: g_grad_sch_set_no,
5288: 0,
5289: l_gpa_cp_calc,
5290: NULL);
5291: l_message := 'Percentage Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5292: ELSIF p_rule_type = 'LAUGSAPM' THEN
5293: l_rule_type := 'ALL_PERD_UPL' ;
5294: -- kdande; Changed the following call to include statistic type as part of FA112
5295: l_outcome := prgp_cal_cp_gsch (

Line 5306: l_message := 'Percentage Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5302: g_grad_sch_set_no,
5303: 0,
5304: l_gpa_cp_calc,
5305: NULL);
5306: l_message := 'Percentage Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5307: ELSIF p_rule_type = 'LAUGSCPM' THEN
5308: l_rule_type := 'CUR_PERD_UPL' ;
5309: -- kdande; Changed the following call to include statistic type as part of FA112
5310: l_outcome := prgp_cal_cp_gsch (

Line 5321: l_message := 'Percentage Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5317: g_grad_sch_set_no,
5318: 0,
5319: l_gpa_cp_calc,
5320: NULL);
5321: l_message := 'Percentage Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5322: ELSIF p_rule_type = 'MAUGSAM' THEN
5323: l_rule_type := 'ALL_PERD_UM' ;
5324: -- kdande; Changed the following call to include statistic type as part of FA112
5325: l_outcome := prgp_cal_cp_gsch (

Line 5336: l_message := 'Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5332: g_grad_sch_set_no,
5333: 0,
5334: l_gpa_cp_calc,
5335: NULL);
5336: l_message := 'Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5337: ELSIF p_rule_type = 'MAUGSCM' THEN
5338: l_rule_type := 'CUR_PERD_UM' ;
5339: -- kdande; Changed the following call to include statistic type as part of FA112
5340: l_outcome := prgp_cal_cp_gsch (

Line 5351: l_message := 'Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5347: g_grad_sch_set_no,
5348: 0,
5349: l_gpa_cp_calc,
5350: NULL);
5351: l_message := 'Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5352: ELSIF p_rule_type = 'LAUGSAM' THEN
5353: l_rule_type := 'ALL_PERD_UL' ;
5354: -- kdande; Changed the following call to include statistic type as part of FA112
5355: l_outcome := prgp_cal_cp_gsch (

Line 5366: l_message := 'Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5362: g_grad_sch_set_no,
5363: 0,
5364: l_gpa_cp_calc,
5365: NULL);
5366: l_message := 'Attempted units in grading schemas in ALL Periods is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5367: ELSIF p_rule_type = 'LAUGSCM' THEN
5368: l_rule_type := 'CUR_PERD_UL' ;
5369: -- kdande; Changed the following call to include statistic type as part of FA112
5370: l_outcome := prgp_cal_cp_gsch (

Line 5381: l_message := 'Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;

5377: g_grad_sch_set_no,
5378: 0,
5379: l_gpa_cp_calc,
5380: NULL);
5381: l_message := 'Attempted units in grading schemas in CURRENT Period is ' || IGS_GE_NUMBER.TO_CANN(ROUND(l_gpa_cp_calc)) ;
5382: END IF;
5383:
5384: RETURN l_message ;
5385:

Line 5541: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) < IGS_GE_NUMBER.TO_NUM(pop)));

5537: numeric comparison functions
5538: */
5539: ELSIF rule_items.turin_function = 'lt'
5540: THEN
5541: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) < IGS_GE_NUMBER.TO_NUM(pop)));
5542: ELSIF rule_items.turin_function = 'lte'
5543: THEN
5544: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) <= IGS_GE_NUMBER.TO_NUM(pop)));
5545: ELSIF rule_items.turin_function = 'eq'

Line 5544: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) <= IGS_GE_NUMBER.TO_NUM(pop)));

5540: THEN
5541: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) < IGS_GE_NUMBER.TO_NUM(pop)));
5542: ELSIF rule_items.turin_function = 'lte'
5543: THEN
5544: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) <= IGS_GE_NUMBER.TO_NUM(pop)));
5545: ELSIF rule_items.turin_function = 'eq'
5546: THEN
5547: push(eq(pop,pop));
5548: ELSIF rule_items.turin_function = 'neq'

Line 5553: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) >= IGS_GE_NUMBER.TO_NUM(pop)));

5549: THEN
5550: push(neq(pop,pop));
5551: ELSIF rule_items.turin_function = 'gte'
5552: THEN
5553: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) >= IGS_GE_NUMBER.TO_NUM(pop)));
5554: ELSIF rule_items.turin_function = 'gt'
5555: THEN
5556: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) > IGS_GE_NUMBER.TO_NUM(pop)));
5557: /*

Line 5556: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) > IGS_GE_NUMBER.TO_NUM(pop)));

5552: THEN
5553: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) >= IGS_GE_NUMBER.TO_NUM(pop)));
5554: ELSIF rule_items.turin_function = 'gt'
5555: THEN
5556: push(b_to_t(IGS_GE_NUMBER.TO_NUM(pop) > IGS_GE_NUMBER.TO_NUM(pop)));
5557: /*
5558: string comparisons
5559: */
5560: ELSIF rule_items.turin_function = 'slt'