DBA Data[Home] [Help]

APPS.GL_RECURRING_RULES_PKG dependencies on FND_FLEX_KEYVAL

Line 450: IF(NOT fnd_flex_keyval.validate_segs(

446:
447: IF (row_count = 0) THEN
448: -- Create a detail account
449: IF ( x_conc_seg IS NOT NULL) THEN
450: IF(NOT fnd_flex_keyval.validate_segs(
451: operation => 'CREATE_COMBINATION',
452: appl_short_name => 'SQLGL',
453: key_flex_code => 'GL#',
454: structure_number => x_coa_id,

Line 461: x_err_msg :=fnd_flex_keyval.error_message;

457: vrule => '\nSUMMARY_FLAG\nI\nAPPL=SQLGL;' ||
458: 'NAME=GL_RJE_NO_NEW_SUMMARY\nN'
459: )) THEN
460: x_templgrid := x_ledger_id;
461: x_err_msg :=fnd_flex_keyval.error_message;
462: dbms_sql.close_cursor(ccid_cursor);
463: RETURN FALSE;
464: ELSE
465: x_ccid := fnd_flex_keyval.combination_id;

Line 465: x_ccid := fnd_flex_keyval.combination_id;

461: x_err_msg :=fnd_flex_keyval.error_message;
462: dbms_sql.close_cursor(ccid_cursor);
463: RETURN FALSE;
464: ELSE
465: x_ccid := fnd_flex_keyval.combination_id;
466: x_templgrid := x_ledger_id;
467: x_acct_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');
468: END IF;
469: END IF;

Line 467: x_acct_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');

463: RETURN FALSE;
464: ELSE
465: x_ccid := fnd_flex_keyval.combination_id;
466: x_templgrid := x_ledger_id;
467: x_acct_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');
468: END IF;
469: END IF;
470: ELSE
471: dbms_sql.column_value(ccid_cursor, 1, c_ccid);

Line 1084: IF(fnd_flex_keyval.validate_segs(

1080: x_conc_seg VARCHAR2,
1081: x_account_type OUT NOCOPY VARCHAR2) IS
1082: BEGIN
1083: IF (x_conc_seg IS NOT NULL) THEN
1084: IF(fnd_flex_keyval.validate_segs(
1085: operation => 'CHECK_COMBINATION',
1086: appl_short_name => 'SQLGL',
1087: key_flex_code => 'GL#',
1088: structure_number => x_coa_id,

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

1087: key_flex_code => 'GL#',
1088: structure_number => x_coa_id,
1089: concat_segments => x_conc_seg,
1090: validation_date => null)) THEN
1091: x_account_type := fnd_flex_keyval.qualifier_value('GL_ACCOUNT_TYPE');
1092: END IF;
1093: END IF;
1094:
1095: END get_account_type;