DBA Data[Home] [Help]

APPS.PO_ACCOUNTING_GRP dependencies on FND_FLEX_KEYVAL

Line 128: l_result := FND_FLEX_KEYVAL.validate_ccid (

124: RETURN;
125: END IF;
126:
127: -- Validate the base account.
128: l_result := FND_FLEX_KEYVAL.validate_ccid (
129: appl_short_name => 'SQLGL',
130: key_flex_code => 'GL#',
131: structure_number => l_coa_id,
132: combination_id => p_base_ccid );

Line 135: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);

131: structure_number => l_coa_id,
132: combination_id => p_base_ccid );
133: IF (NOT l_result) THEN
134: -- Add the error to the standard API message list.
135: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);
136: FND_MSG_PUB.add;
137: RAISE FND_API.G_EXC_ERROR;
138: END IF;
139:

Line 142: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;

138: END IF;
139:
140: -- validate_ccid retrieved the base account segments into the package
141: -- variable segment_value. Copy them into l_base_segments.
142: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;
143: FOR i in 1..l_num_of_segments LOOP
144: l_base_segments(i) := FND_FLEX_KEYVAL.segment_value(i);
145: END LOOP;
146:

Line 144: l_base_segments(i) := FND_FLEX_KEYVAL.segment_value(i);

140: -- validate_ccid retrieved the base account segments into the package
141: -- variable segment_value. Copy them into l_base_segments.
142: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;
143: FOR i in 1..l_num_of_segments LOOP
144: l_base_segments(i) := FND_FLEX_KEYVAL.segment_value(i);
145: END LOOP;
146:
147: -- Validate the overlay account.
148: l_result := FND_FLEX_KEYVAL.validate_ccid (

Line 148: l_result := FND_FLEX_KEYVAL.validate_ccid (

144: l_base_segments(i) := FND_FLEX_KEYVAL.segment_value(i);
145: END LOOP;
146:
147: -- Validate the overlay account.
148: l_result := FND_FLEX_KEYVAL.validate_ccid (
149: appl_short_name => 'SQLGL',
150: key_flex_code => 'GL#',
151: structure_number => l_coa_id,
152: combination_id => p_overlay_ccid );

Line 155: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);

151: structure_number => l_coa_id,
152: combination_id => p_overlay_ccid );
153: IF (NOT l_result) THEN
154: -- Add the error to the standard API message list.
155: FND_MESSAGE.set_encoded(FND_FLEX_KEYVAL.encoded_error_message);
156: FND_MSG_PUB.add;
157: RAISE FND_API.G_EXC_ERROR;
158: END IF;
159:

Line 162: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;

158: END IF;
159:
160: -- validate_ccid retrieved the overlay account segments into the package
161: -- variable segment_value. Copy them into l_overlay_segments.
162: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;
163: FOR i in 1..l_num_of_segments LOOP
164: l_overlay_segments(i) := FND_FLEX_KEYVAL.segment_value(i);
165: END LOOP;
166:

Line 164: l_overlay_segments(i) := FND_FLEX_KEYVAL.segment_value(i);

160: -- validate_ccid retrieved the overlay account segments into the package
161: -- variable segment_value. Copy them into l_overlay_segments.
162: l_num_of_segments := FND_FLEX_KEYVAL.segment_count;
163: FOR i in 1..l_num_of_segments LOOP
164: l_overlay_segments(i) := FND_FLEX_KEYVAL.segment_value(i);
165: END LOOP;
166:
167: -- Get the qualifier segment number for the Automatic Offset Method.
168: l_result := FND_FLEX_APIS.get_qualifier_segnum (