DBA Data[Home] [Help]

APPS.ARRX_COGS_REP_INNER dependencies on FND_FLEX_KEYVAL

Line 81: -- fnd_flex_keyval.concatenated_descriptions however this will only

77:
78: -- Bug # 3840430
79: -- The description in gl_code_combinations is not the right one.
80: -- To get the description we need to call the function
81: -- fnd_flex_keyval.concatenated_descriptions however this will only
82: -- work if the cc id was validated just before that. To do that
83: -- we need the code_combination_id which is not stored in the
84: -- ar_cogs_rev_itf table. So, we are overloading the description
85: -- column temporariliy to store the code_combination_id and here

Line 92: l_dummy := fnd_flex_keyval.validate_ccid(

88: fnd_file.put_line(fnd_file.log, 'populate_description');
89:
90: FOR rec IN getdesc LOOP
91:
92: l_dummy := fnd_flex_keyval.validate_ccid(
93: 'SQLGL',
94: 'GL#',
95: rec.chart_of_accounts_id,
96: rec.code_combination_id);

Line 97: l_description := fnd_flex_keyval.concatenated_descriptions;

93: 'SQLGL',
94: 'GL#',
95: rec.chart_of_accounts_id,
96: rec.code_combination_id);
97: l_description := fnd_flex_keyval.concatenated_descriptions;
98:
99: fnd_file.put_line(fnd_file.log, 'CC ID: ' || rec.code_combination_id);
100: fnd_file.put_line(fnd_file.log, 'Description: ' || l_description);
101: