马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
再次分享一下EBS R12日记帐凭证SQL select gll.name, lines.period_name 期间, lines.description 说明, fnd_flex_ext.get_segs('SQLGL', 'GL#', glc.chart_of_accounts_id, glc.code_combination_id) account, xla_oa_functions_pkg.get_ccid_description(glc.chart_of_accounts_id, glc.code_combination_id) account_description, lines.entered_dr 输入借项, lines.entered_cr 输入贷项, lines.accounted_dr, lines.accounted_cr from gl_je_lines lines, ---日记帐行信息 gl_je_headers h, ---日记帐头信息 gl_je_batches b, --日记帐批信息 gl_code_combinations glc, --会计科目 gl_ledgers gll ---分类帐 where b.je_batch_id = h.je_batch_id and h.je_header_id = lines.je_header_id and lines.code_combination_id = glc.code_combination_id and lines.ledger_id = gll.ledger_id --- AND b.status || '' = 'P' AND b.actual_flag = 'A' and lines.period_name =&P_PNAME and glc.segment1=&P_LE and fnd_flex_ext.get_segs('SQLGL', 'GL#', glc.chart_of_accounts_id, glc.code_combination_id) = '10.00.1002.0000.0000' |