DBA Data[Home] [Help]

APPS.GL_FLEXFIELDS_PKG dependencies on FND_FLEX_KEYVAL

Line 109: IF (fnd_flex_keyval.validate_segs(

105: last_qual_text := x_qual_text;
106: END IF;
107:
108: -- Get the description
109: IF (fnd_flex_keyval.validate_segs(
110: operation => 'CHECK_SEGMENTS',
111: appl_short_name => 'SQLGL',
112: key_flex_code => 'GL#',
113: structure_number => x_coa_id,

Line 121: RETURN(fnd_flex_keyval.segment_description(seg_num));

117: allow_orphans => TRUE)) THEN
118: null;
119: END IF;
120:
121: RETURN(fnd_flex_keyval.segment_description(seg_num));
122: END get_description;
123:
124: FUNCTION get_any_seg_description(
125: x_coa_id NUMBER,

Line 133: IF (fnd_flex_keyval.validate_segs(

129: ) RETURN VARCHAR2 IS
130: BEGIN
131:
132: -- Get the description
133: IF (fnd_flex_keyval.validate_segs(
134: operation => 'CHECK_SEGMENTS',
135: appl_short_name => 'SQLGL',
136: key_flex_code => 'GL#',
137: structure_number => x_coa_id,

Line 145: RETURN(fnd_flex_keyval.segment_description(x_seg_num));

141: allow_orphans => TRUE)) THEN
142: null;
143: END IF;
144:
145: RETURN(fnd_flex_keyval.segment_description(x_seg_num));
146: END get_any_seg_description;
147:
148: FUNCTION get_coa_name(coa_id NUMBER) RETURN VARCHAR2 IS
149: coa_name VARCHAR2(30) ;

Line 572: IF (NOT fnd_flex_keyval.validate_ccid(

568: ELSE
569: l_security_code := 'ENFORCE';
570: END IF;
571:
572: IF (NOT fnd_flex_keyval.validate_ccid(
573: appl_short_name => 'SQLGL',
574: key_flex_code => 'GL#',
575: structure_number => x_coa_id,
576: combination_id => x_ccid,

Line 583: l_delimiter := fnd_flex_keyval.segment_delimiter;

579: -- return something unlikely to be valid that the caller can check
580: return ('=====#####=====');
581: END IF;
582:
583: l_delimiter := fnd_flex_keyval.segment_delimiter;
584: l_num_segs := fnd_flex_keyval.segment_count;
585: l_descp := '';
586:
587: FOR i IN 1..l_num_segs LOOP

Line 584: l_num_segs := fnd_flex_keyval.segment_count;

580: return ('=====#####=====');
581: END IF;
582:
583: l_delimiter := fnd_flex_keyval.segment_delimiter;
584: l_num_segs := fnd_flex_keyval.segment_count;
585: l_descp := '';
586:
587: FOR i IN 1..l_num_segs LOOP
588: IF i <> 1 THEN

Line 591: l_descp := l_descp || fnd_flex_keyval.segment_description(i);

587: FOR i IN 1..l_num_segs LOOP
588: IF i <> 1 THEN
589: l_descp := l_descp || l_delimiter;
590: END IF;
591: l_descp := l_descp || fnd_flex_keyval.segment_description(i);
592: END LOOP;
593:
594: return(l_descp);
595:

Line 626: IF (NOT fnd_flex_keyval.validate_ccid(

622:
623: FUNCTION get_validation_error_message(x_coa_id NUMBER,
624: x_ccid NUMBER) RETURN VARCHAR IS
625: BEGIN
626: IF (NOT fnd_flex_keyval.validate_ccid(
627: appl_short_name => 'SQLGL',
628: key_flex_code => 'GL#',
629: structure_number => x_coa_id,
630: combination_id => x_ccid,

Line 633: RETURN fnd_flex_keyval.error_message;

629: structure_number => x_coa_id,
630: combination_id => x_ccid,
631: security => 'ENFORCE')) THEN
632: -- return the error message
633: RETURN fnd_flex_keyval.error_message;
634: END IF;
635:
636: RETURN NULL;
637: