oracle,EBS常用数据表

inv库存 organization 两个含义: 1. 经营单位,a/b/c分公司,a下面有a1,a2等工厂,主题目标是为了独立核算此组织 org,org_id; 2. 库存组织,例如制造商的仓库,例如a1,a2等工厂 organization_id; hr_organization_units - org_organization_definitions mtl_subinventory_ 库存组织单位 mtl_parameters -库存组织参数(没有用id,直接用name) mtl_system_items_b -物料信息(同上,应用了库存组织name) mtl_secondary_inventories -子库存组织 - mtl_item_locattions -货位 - subinventroy_code mtl_material_transactions - (库存)物料事物表 成本 mtl_transaction_accounts transaction_cost是事物成本; actual_cost是通过成本算法计算出来的实际成本,主计量单位 现有量 汇总历史记录(正负合计) mtl_material_transactions mtl_onhand_quantities现有量表,组织/子库存/货位/物品 summary可能按照挑库先进先出统计,如果设置了"不允许负库存",这样就不可能出现负数 po 请购单头表 po_requisition_headers_all 行表 po_requisition_lines_all 采购订单 po_header_all po_lines_all 采购接收-退货/组织间转移/正常状态 都需要使用这个模块 rcv_transactions 1. 接收100单位货物,放入“待质检”货位 2. 接受/拒绝 3. 库存/退回 有三个不同的状态!例如:接收100个,80个接受入库,20个退回,那么有80个接受事务/20个退回事物 select transaction_type,destination_type_code from rcv_transactions 可以看出以下阶段: a1.receive – receiving a2.accept – receiving a3.deliery – invetory(影响库存现有量) 如果按照正常模式,最后会触发产生mtl_material_transactions 销售订单 oe_order_headers_all sold_from_org_id sold_to_org_id 就是客户层 ship_from_org_id ship_to_org_id 就是客户收货层 invoice_to_org_id 就是客户收单层 deliver_to_org_id 和客户结构有关 客户 ra_customers 客户address ra_addresses address 货品抵达 site ra_site_uses_all address 发票抵达 site oe_order_lines_all gl凭证 gl_je_batches 凭证日期: default_effective_date 会计期间: default_period_name 原币种凭证批借贷方汇总: running_total_dr/cr 比如美元 本位币凭证批借贷方汇总: running_total_accounted_dr/cr gl_je_headers日记账头信息 批号: je_batch_id 会计期间: period_name 币种: currency_code 汇率类型: currency_conversion_type 汇率日期: currency_conversion_date 帐套: set_of_books_id 参考 gl_sets_of_books 凭证类型: je_category 参考 gl_je_sources 凭证来源: je_source gl_je_lines日记账体信息 code_combination_id 科目组合编号 gl_balances 总帐余额 period_net_dr/cr 净值 begin_balance_dr/cr 期初额 ar应收发票 ra_customer_trx_all customer_trx_id 发票编号 bill_to_site_use_id 客户收单方编号 primary_sales_id销售员 reference是oracle提供的外部编号输入框,但是由于版本问题和长度(<=30),不建议用户使用,如果要使用外部编号,请使用说明性弹性域 ra_customer_trx_lines_all line_id 行号 inventory_item_id 可以为空,比如非物料的服务,只在description中出现 /税行 description quantity_invoice 开票数量 line_type 行类型 (一般/税) extend_price 本行金额 注意:税行是隐藏行,所以至少会有两行 收款情况 ar_cash_receipts_all(还包含了非收款信息) cash_receipt_id 内部code receipt_number 收款号 receipt_date 收款日期 amount 总额 receipt_type 现金/杂项 cash/misc functional_amount 本位币计量金额 ui上为receipts 核销关系不是一一对应,也不是一次核销100%,ui上右下方的application 按钮 ar_receivable_applications_all applied_customer_trx_id 发票编号 applied_customer_trx_line_id 发票行编号 status app表示核销 /unapp表示未核销 amount_applied 匹配金额 注意:红冲收款报表时间跨月的问题;必须联查 ar_cash_receipts_all和 ar_cash_receipt_history_all ap 应付帐款(是我方人员按照供应商提供的纸张发票信息录入)ui 上的invoice ap_invoices_all 实际付款payment ap_checks_all 核销关系 同ar,右下方的payment 按钮 ap_invoice_payments_all客户余额表,情况比较复杂:比如两个用户合并,应收应付差额,预付款 资产信息 fa_additions 资产类别 fa_categories 资产帐簿 fa_book_controls 和会计帐簿有什么关系? fa_books ui中的inquiry mothed是折旧方法(直线法/产量法) fa_distribution_history分配assignment,给什么部门使用多少 location_id 部门 联查fa_locations 折旧信息(分摊方法) fa_deprn_detail period_counter 折旧期间编号 折旧事务(新增、重建、转移、报废) fa_transaction_headers select fnd_profile.value('org_id') from dual select * from hr_operating_units hou where hou.organization_id=204 --fnd select * from fnd_application select * from fnd_application_tl where application_id=101 select * from fnd_application_vl where application_id = 101 ----值集 select * from fnd_flex_value_sets select * from fnd_flex_values select * from fnd_flex_values_vl ----弹性域 select * from fnd_id_flexs select * from fnd_id_flex_structures where id_flex_code='gl#' select * from fnd_id_flex_segments where id_flex_code='gl#' and id_flex_num=50671 select * from fnd_profile_options_vl select * from fnd_concurrent_programs 程序表 select * from fnd_concurrent_requests 请求表 select * from fnd_concurrent_processes 进程表 --inv select * from org_organization_definitions 库存组织 select * from mtl_parameters 组织参数 select * from mtl_system_items_b where inventory_item_id = 171 and organization_id=204 物料表 select * from mtl_secondary_inventories 子库存 select * from mtl_item_locations 货位 select * from mtl_lot_numbers 批次 select * from mtl_onhand_quantities 现有量表 select * from mtl_serial_numbers 序列 select * from mtl_material_transactions 物料事务记录 select * from mtl_transaction_accounts 会计分录 select * from mtl_transaction_types 事务类型 select * from mtl_txn_source_types 事务来源类型 select * from mfg_lookups ml where ml.lookup_type = 'mtl_transaction_action' --po select * from po_requisition_headers_all 请求头 select * from po_requisition_lines_all 请求行 select * from po_headers_all 订单头 select * from po_lines_all 订单行 select * from po_line_locations_all select * from po_distributions_all 分配 select * from po_releases_all 发送 select * from rcv_shipment_headers 采购接收头 select * from rcv_shipment_lines 采购接收行 select * from rcv_transactions 接收事务处理 select * from po_agents select * from po_vendors 订单 select * from po_vendor_sites_all --oe select * from ra_customers 客户 select * from ra_addresses_all 地址 select * from ra_site_uses_all 用户 select * from oe_order_headers_all 销售头 select * from oe_order_lines_all 销售行 select * from wsh_new_deliveries 发送 select * from wsh_delivery_details select * from wsh_delivery_assignments --gl select * from gl_sets_of_books 总帐 select * from gl_code_combinations gcc where gcc.summary_flag='y' 科目组合 select * from gl_balances 科目余额 select * from gl_je_batches 凭证批 select * from gl_je_headers 凭证头 select * from gl_je_lines 凭证行 select * from gl_je_categories 凭证分类 select * from gl_je_sources 凭证来源 select * from gl_summary_templates 科目汇总模板 select * from gl_account_hierarchies 科目汇总模板层次 --ar select * from ar_batches_all 事务处理批 select * from ra_customer_trx_all 发票头 select * from ra_customer_trx_lines_all 发票行 select * from ra_cust_trx_line_gl_dist_all 发票分配 select * from ar_cash_receipts_all 收款 select * from ar_receivable_applications_all 核销 select * from ar_payment_schedules_all 发票调整 select * from ar_adjustments_all 会计分录 select * from ar_distributions_all 付款计划 --ap select * from ap_invoices_all 发票头 select * from ap_invoice_distributions_all 发票行 select * from ap_payment_schedules_all 付款计划 select * from ap_check_stocks_all 单据 select * from ap_checks_all 付款 select * from ap_bank_branches 银行 select * from ap_bank_accounts_all 银行帐号 select * from ap_invoice_payments_all 核
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值