DBA Data[Home] [Help]

APPS.IGS_RU_GEN_002 dependencies on FND_GLOBAL

Line 48: cst_space CONSTANT VARCHAR2(1) := fnd_global.local_chr(31);

44:
45: /*
46: CONSTANTS
47: */
48: cst_space CONSTANT VARCHAR2(1) := fnd_global.local_chr(31);
49: cst_spacemod CONSTANT VARCHAR2(1) := fnd_global.local_chr(9);
50: /*
51: GLOBALS
52: */

Line 49: cst_spacemod CONSTANT VARCHAR2(1) := fnd_global.local_chr(9);

45: /*
46: CONSTANTS
47: */
48: cst_space CONSTANT VARCHAR2(1) := fnd_global.local_chr(31);
49: cst_spacemod CONSTANT VARCHAR2(1) := fnd_global.local_chr(9);
50: /*
51: GLOBALS
52: */
53: gv_level NUMBER(3);

Line 137: gt_rule_LOV(gv_LOV_index).select_item := REPLACE(p_string,fnd_global.local_chr(10));

133: END IF;
134: IF v_rule_length = gv_min_rule
135: THEN
136: gv_LOV_index := gv_LOV_index + 1;
137: gt_rule_LOV(gv_LOV_index).select_item := REPLACE(p_string,fnd_global.local_chr(10));
138: gt_rule_LOV(gv_LOV_index).description := p_description;
139: gt_rule_LOV(gv_LOV_index).selectable := p_selectable;
140: END IF;
141: END;

Line 274: IF (fnd_global.user_id = 1) THEN

270: -- Get the sequence as the existing maximum value + 1
271: -- Else
272: -- Get the next value from the database sequence
273: --
274: IF (fnd_global.user_id = 1) THEN
275: OPEN cur_max_plus_one;
276: FETCH cur_max_plus_one INTO v_rule_number;
277: CLOSE cur_max_plus_one;
278: ELSE

Line 335: IF (fnd_global.user_id = 1) THEN

331: -- Get the sequence as the existing maximum value + 1
332: -- Else
333: -- Get the next value from the database sequence
334: --
335: IF (fnd_global.user_id = 1) THEN
336: OPEN cur_max_plus_one;
337: FETCH cur_max_plus_one INTO v_set_number;
338: CLOSE cur_max_plus_one;
339: ELSE

Line 1076: v_string := REPLACE(v_string,fnd_global.local_chr(10));

1072: THEN
1073: RETURN FALSE;
1074: END IF;
1075: v_string := REPLACE(p_string,' ');
1076: v_string := REPLACE(v_string,fnd_global.local_chr(10));
1077: v_string := REPLACE(v_string,' ');
1078: v_string_length := LENGTH(v_string);
1079: FOR v_ii IN v_string_length .. LENGTH(p_rule)
1080: LOOP

Line 1088: v_sub_rule := REPLACE(v_sub_rule,fnd_global.local_chr(10));

1084: v_sub_rule := REPLACE(SUBSTR(p_rule,1,v_ii),cst_space);
1085: /*
1086: remove returns
1087: */
1088: v_sub_rule := REPLACE(v_sub_rule,fnd_global.local_chr(10));
1089: /*
1090: remove tabs
1091: */
1092: v_sub_rule := REPLACE(v_sub_rule,' ');