马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
总结的一点SQL资料,R12总帐科目余额表,共享一下:
---科目余额表 select fnd_flex_ext.get_segs('SQLGL', 'GL#', lgr.chart_of_accounts_id, gl.code_combination_id) account, xla_oa_functions_pkg.get_ccid_description(lgr.chart_of_accounts_id, gl.code_combination_id) account_description, lgr.chart_of_accounts_id, lgr.ledger_id, gl.code_combination_id, lgr.name, lgr.short_name, gl.period_name 期间, gl.currency_code 币种, gl.actual_flag, --A:表示实际金额 B 表示预算金额 E表示保留金额 gl.period_net_dr, gl.period_net_cr, --发生数 gl.begin_balance_dr, --期初发生额 gl.begin_balance_cr, -- gl.period_net_dr - gl.period_net_cr 期初至今PTD, gl.BEGIN_BALANCE_DR - gl.BEGIN_BALANCE_CR + gl.PERIOD_NET_DR - gl.PERIOD_NET_CR 年初至今YTD from gl_balances gl, gl_ledgers lgr, gl_code_combinations glc WHERE lgr.object_type_code = 'L' and nvl(lgr.complete_flag, 'Y') = 'Y' and gl.ledger_id = lgr.ledger_id and gl.code_combination_id = glc.code_combination_id and gl.period_name = &P_PNAME and lgr.name = 'XXXXX分类帐' and fnd_flex_ext.get_segs('SQLGL', 'GL#', lgr.chart_of_accounts_id, gl.code_combination_id)='01.00.1002.0000.0000'
|