DBA Data[Home] [Help]

APPS.GL_JE_LINES_PKG dependencies on FND_FLEX_KEYVAL

Line 295: IF (fnd_flex_keyval.validate_ccid(

291: x_id_flex_code => 'GL#',
292: x_id_flex_num => x_coa_id);
293: END IF;
294:
295: IF (fnd_flex_keyval.validate_ccid(
296: appl_short_name => 'SQLGL',
297: key_flex_code => 'GL#',
298: structure_number => x_coa_id,
299: combination_id => x_ccid,

Line 302: x_account_num := replace(fnd_flex_keyval.concatenated_values,

298: structure_number => x_coa_id,
299: combination_id => x_ccid,
300: displayable => 'GL_ACCOUNT')
301: ) THEN
302: x_account_num := replace(fnd_flex_keyval.concatenated_values,
303: '
304: ', delim);
305: x_account_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');
306:

Line 305: x_account_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');

301: ) THEN
302: x_account_num := replace(fnd_flex_keyval.concatenated_values,
303: '
304: ', delim);
305: x_account_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');
306:
307: IF (x_tax_code_id IS NOT NULL) THEN
308:
309: temp_return_status :=null;

Line 352: fnd_message.set_encoded(fnd_flex_keyval.encoded_error_message);

348: x_unit_of_measure => x_unit_of_measure,
349: x_jgzz_recon_flag => x_jgzz_recon_flag);
350:
351: ELSE
352: fnd_message.set_encoded(fnd_flex_keyval.encoded_error_message);
353: app_exception.raise_exception;
354: END IF;
355:
356: END populate_fields;

Line 519: IF (fnd_flex_keyval.validate_segs(

515: WHEN NO_DATA_FOUND THEN
516: x_jgzz_recon_flag := null;
517: END;
518: ELSE
519: IF (fnd_flex_keyval.validate_segs(
520: operation => 'CHECK_SEGMENTS',
521: appl_short_name => 'SQLGL',
522: key_flex_code => 'GL#',
523: structure_number=> coa_id,

Line 529: x_jgzz_recon_flag := fnd_flex_keyval.qualifier_value('RECONCILIATION FLAG');

525: displayable => 'GL_ACCOUNT',
526: validation_date => NULL,
527: allow_nulls => TRUE,
528: allow_orphans => TRUE)) THEN
529: x_jgzz_recon_flag := fnd_flex_keyval.qualifier_value('RECONCILIATION FLAG');
530: ELSE
531: x_jgzz_recon_flag := 'Y';
532: END IF;
533: END IF;