|
不能上你们的环境(开玩笑),只能猜着做了,先假定你的设置没有问题(你们也用了这么久了),如果是刚上线的,也许要考虑设置的问题。
这个问题有可能是因为在GL_BALANCES table 有重复记录,如果你们系统中用到summary accounts就会有这样的问题。 这样.你先run下面的SQL
SELECT set_of_books_id, code_combination_id, currency_code, period_name,
actual_flag, budget_version_id, encumbrance_type_id, template_id,
decode(translated_flag, 'Y', 'Y', 'N', 'Y', 'R', 'R', 'X'), count(*)
FROM gl_balances
GROUP BY set_of_books_id, code_combination_id, currency_code, period_name,
actual_flag, budget_version_id, encumbrance_type_id, template_id,
decode(translated_flag, 'Y', 'Y', 'N', 'Y', 'R', 'R', 'X')
HAVING count(*) > 1
回复结果 我们再下一步处理 |
|