一、建立乙個檢視用於存放現金、銀行相關科目的資訊。為更有擴充套件性,可以在lookup中定義現金、銀行相關科目。
create view cux_gl_cash_account_v as
select gcc.code_combination_id code_combination_id,
ff.flex_value || '.' || ff2.flex_value cash_account,
ff.description || '.' || ff2.description cash_account_desc
from fnd_flex_values_vl ff,
fnd_flex_value_sets ffv,
gl_code_combinations gcc,
fnd_flex_values_vl ff2,
fnd_flex_value_sets ffv2,
fnd_lookup_values_vl flv
where ffv.flex_value_set_name =『科目』
and ff.flex_value_set_id = ffv.flex_value_set_id
and ff.flex_value = gcc.segment3
and ffv2.flex_value_set_name = '子科目'
and ff2.flex_value_set_id = ffv2.flex_value_set_id
and ff2.flex_value = gcc.segment4
and flv.lookup_type = 'cux_gl_cash_account'
and gcc.segment3 like flv.lookup_code || '%';
二、總帳
select gjh.default_effective_date gl_date , --記帳日期
gjh.name doc_name , -- 日記帳名
to_char(gjl.je_line_num) doc_number , -- 行號
gjl.description description , -- 說明
gca.cash_account_desc bank_account , --銀行帳戶
decode(p_currency_code,
l_accounted_currency,
gjl.accounted_dr,
gjl.entered_dr) dr , --借項
decode(p_currency_code,
l_accounted_currency,
gjl.accounted_cr,
gjl.entered_cr) cr , -- 貸項
gjl.attribute2 cash_code --現金流量表項**
from gl_je_headers gjh,
gl_je_lines gjl,
gl_je_categories gjc,
cux_gl_cash_account_v gca
where gjh.je_header_id = gjl.je_header_id
and gjl.code_combination_id = gca.code_combination_id
and gjh.je_source = 'manual' -- 手工
and gjh.status = 'p' -- 過帳
and gjh.je_category = gjc.je_category_name
and gjc.user_je_category_name = '類別' --類別
and gjh.default_effective_date >= p_date_from
and gjh.default_effective_date < p_date_to + 1
三、應收
四、應付
select aah.accounting_date gl_date , ----記帳日期
to_char(ac.check_number) doc_name , -- 付款編號
ac.attribute1 doc_number , -- 付款單據號
ac.current_vendor_name vendor_name , -- **商名稱
ac.description description , -- 說明
gca.cash_account_desc bank_account , -- 銀行帳戶
decode(p_currency_code,
l_accounted_currency,
aal.accounted_dr,
aal.entered_dr) dr , -- 借項
decode(p_currency_code,
l_accounted_currency,
aal.accounted_cr,
aal.entered_cr) cr , -- 貸項
ac.attribute2 cash_code -- 現金流量表項**
from ap_checks_v ac,
ap_ae_lines aal,
ap_ae_headers aah,
cux_gl_cash_account_v gca
where ac.check_id = aal.reference3
and ac.check_number = aal.reference4
and aal.source_table = 'ap_checks'
and aal.ae_line_type_code = 'cash' -- 現金(行型別)
and aal.ae_header_id = aah.ae_header_id
and aah.gl_transfer_flag = 'y'
and aal.code_combination_id = gca.code_combination_id
and aah.accounting_date >= p_date_from
and aah.accounting_date < p_date_to + 1
現金流量表結構分析
現金流量表結構分析 概念 現金流量表結構分析是指通過對現金流量表中不同專案之間的比較,揭示現金流入量和現金流出量結構情況,結構分析包括 1 現金流入結構分析,2 現金流出結構分析,3 淨現金流結構分析,4 各種現金流入流出比分析。對現金流量表進行結構分析一般要編制現金流量的垂直分析表。一 現金流量表...
如何用SAP編制現金流量表
用sap編制現金流量表的具體步驟 第一步 列資產負債表差額,即在期初期末欄後面加一列差額欄,分別填上每個專案的期末減期初數,是的,全部是期末減期初,這樣就不必去擔憂這個數是加是減 是期末減期初還是相反了,原因看下面第二步。第二步 拆未分配利潤專案,即引入利潤表專案,這時按利潤表專案性質 可以看教材公...
KIS現金流量表製作方法!分享
標準現金流量表 的操作方法 1 開啟軟體,點選 報表 標準現金流量表 以前老版本在選單欄 工具 現金流量表 2 點選 系統 報表方案 3 點選 新建 輸入方案名稱 4 選擇新建好的方案,點選確定 5 點選 時間 選擇現金流量表的時間段 6 點選 現金 選擇現金科目,一般現金科目為現金和銀行存款,包括...