--資產主表:
select * from fa_additions_v fa where fa.asset_id = 10014;
--資產賬簿
select *
from fa_books_v
where date_ineffective is null
and (book_type_code = 'mewbg fa new-b')
and (asset_id = 10014);
--資產**行
select *
from fa_invoice_details_v
where asset_id = 10014
order by invoice_number
,ap_distribution_line_number;
--資產分配
select *
from fa_distribution_history
where book_type_code = 'mewbg fa new-b'
and asset_id = 10014;
--資產財務資訊主表
select * from fa_books_book_controls_v where asset_id = 10014;
--資產折舊資訊
select *
from fa_financial_inquiry_deprn_v
where (book_type_code = 'mewbg fa new-b')
and (asset_id = 10014)
order by period_counter desc;
--資產成本歷史記錄
select *
from fa_financial_inquiry_cost_v
where (book_type_code = 'mewbg fa new-b')
and (asset_id = 10014)
order by transaction_header_id_in desc;
--fa傳到總賬的會計分錄
select *
from gl_je_headers_v gjh
,gl_je_lines_v gjl
where gjh.je_header_id = gjl.je_header_id
and gjh.actual_flag = 'a'
and gjh.period_name = 'sep-11'
and gjh.set_of_books_id = 2
--fa事務處理分錄
select * from xla_ael_sl_v ;
TCP互動資料流 成塊資料流
tcp資料流分類 基於tcp的各類解決方案,可以根據資料吞吐量來大致分成兩大類 1 互動資料型別,例如telnet,ssh,這種型別的協議在大多數情況下只是做小流量的資料交換,比如說按一下鍵盤,回顯一些文字等等。2 資料成塊型別,例如ftp,這種型別的協議要求tcp能盡量的運載資料,把資料的吞吐量做...
Python3 I O 資料流 模組
原文 coding utf 8 io.py i o i o三種主要型別 文字i o,二進位制i o,原始i o 流物件具有的能力 1.讀寫,2.任意隨機訪問,3.順序訪問 套接字 管道 字元編碼 unicode 16位 2位元組 全球字元 ascii 8位 1位元組 數字字母 utf 8 英文8位,...
資料流測試
回顧 路徑測試將程式 看做是一種有向圖,根據有向圖的拓撲結構結合某些覆蓋指標來設計測試用例。然而程式中不同語句之間往往會有依賴關係,使得拓撲結構上可行的路徑,在邏輯上並不可行,資料流測試可以解決上述問題。資料流測試指關注變數接收值的點和使用 或引用 這些值的點的結構性測試形式 資料流測試用作路徑測試...