總賬GL中常用的資料表

2021-09-01 13:12:18 字數 847 閱讀 9286

gl_je_batches 日記賬批資訊(當年)

gl_archive_batches 日記賬歸檔

gl_je_headers 日記賬頭資訊

gl_je_lines 日記賬明細資訊

其中gl_je_batches和gl_je_headers通過je_batch_id相關聯,並且是一對多的關係

其中gl_je_headers和gl_je_lines通過je_header_id相關聯,並且是一對多的關係

gl_sets_of_books 賬套資訊,每套賬有一行記錄

gl_periods 會計期資訊

gl_code_combinations **組合資訊

gl_balance 總賬餘額表

gl_daily_rates 每天匯率

gl_translation_rates_v 每月匯率——期間的平均匯率

gl_budegets 總賬預算資訊

gl_budget_types 預算型別表——僅支援一種預算型別,所以僅有一條記錄

gl_budget_versions 預算版本資訊,通過budget_version_id與gl_budegets對應

gl_inte***ce 總賬介面表

gl_budget_assignment_ranges 預算分配範圍

gl_budget_assignments 預算帳戶資訊

gl_budget_period_ranges 預算歷期資訊

gl_budget_inte***ce 預算匯入介面表

gl_budget_frozen_ranges 預算凍結資訊

gl_budget_entities 預算部門資訊

ABAP常用資料表

基礎表 名稱 描述 t001w 工廠 分支機構 t001l 倉儲地點 kna1 客戶主檔案的一般資料 mara 常規物料資料 mean 物料的國際商品號 makt 物料描述 t156 移動型別 t134 物料型別 dost bom 鏈結文件 mast bom 鏈結物料 stpo bom 專案 dd0...

MySQL資料表的管理,資料表的常用語法

一 建表 語法 create table if not exists 表名 欄位名 資料型別 上面語法的意思是如果表不存在則建立,小括號裡面的是欄位名和資料型別,也可以增加一些表約束 例 create table if not exists studb stuid char 10 comment 學...

MySQL資料表常用操作

一 建立資料庫 建立之前先判斷資料庫存在不存在,如果存在的話先刪除在建立,以建立school資料庫為例 語法 drop database if exists school create database school 二 建立表 建立之前先判斷表存在不存在,如果存在的話先刪除在建立,以建立books...