ORACLE ERP中POINVAPGL流程对应那些关键基表、接口表?

ORACLE ERP中POINVAPGL流程对应那些关键基表、接口表?,第1张

这个要看你用的哪一种ERP,如果是EBS,接口表参考如下信息:

AP接口表:

AP_INVOICES_INTERFACE

AP_INVOICE_LINES_INTERFACE

涉及的请求:

应付款管理系统开放接口导入

涉及案例: 运费导AP、费用导AP

PO接口表:

申请:

PO_REQUISITIONS_INTERFACE_ALL

涉及请求:

导入申请

采购

po_headers_interface

po_lines_interface

po_distributions_interface

涉及的请求:

Import Standard Purchase Orders

接收:

rcv_headers_interface

rcv_transactions_interface

mtl_transaction_lots_interface

涉及请求:

接收事务处理处理器

涉及案例:运费导采购、MRP导申请、POP导申请

GL接口表:

gl_interface

涉及案例:ADI导日记账、返利导日记账

FA接口表:

fa_mass_additions

FA API:

增加fa_addition_pub.do_addition

修改:fa_adjustment_pub.do_adjustment

fa_asset_desc_pub.update_desc

涉及案例:电子资产清理

库存事务接口:mtl_transactions_interface

1)一般用来做各类杂收发、Cost Update,对于和业务有关的事务一般不建议使用,比如SO发货,如果自己发会导致Workflow没有往下走

2)成功导入之后运行Cost Manager生成会计分录

3)平均成本更新也通过此接口;如果该Item没有交易,则成本数据不会进入cst_item_costs

固定资产接口:fa_mass_additions

1)fa_mass_additions这个表有几个Trigger需要注意;会自动去插其他表,删除的时候也是

2)折旧方法接口表无法给,而是自动从Category继承下来,所以导入之后需要Update表

3)不是通过AP引过来的FA,是没有Source Lines信息的;如果需要,可以通过插表来实现

4)数据进接口之后从Navigator:Mass Additions/Post Mass Additions提交请求集,这样会有个报表显示导入结果。不过我的测试程序可以直接提交请求集。

总账分录接口:gl_interface

1)最简单的接口,不说了

应付发票接口:ap_invoices_interface/ap_invoice_lines_interface

1)Profile AP: Use Invoice Batch Controls定义是否使用批控制

2)仅支持CREDIT/STANDARD;注意金额正负,小于零用CREDIT,大于零用STANDARD

3)PREPAYMENT/DEBIT/EXPENSE REPORT/MIXED不支持,先用CREDIT或者STANDARD,进去之后再Update正式表ap_invoices_all

4)导入之后可再调用请求Invoice Validation自动Validate发票

应收发票接口:ra_interface_lines_all/ra_interface_salescredits_all

1)几个接口表之间的关系和其他接口不同,不是通过ID关联,而是通过描述性d性域Line Transaction Flexfield定义

2)接口给ID还是Name,要根据Transaction Source上的定义,不能随便给

3)ra_interface_distributions_all这个表可以不插,让系统自动生成分配行

4)如果没有销售员,可以提供一条ID=-3的No Sales Person记录给接口。这个要看AR System Option Miscellaneous上的设置是否要求销售员

应收收据接口:ar_interim_cash_receipts_all

1)AR Receipt标准接口是Lockbox,需要预先定义Format;Oracle根据Format定义把接口数据写到ar_interim_cash_receipts_all;我们可以跳过第一步,直接把数据插入到ar_interim_cash_receipts_all,不过Batch需要我们直接插表

2)在Batch界面查看:数据在ar_interim_cash_receipts_all的Batch Type为 Mannual Quick

3)Batch的Currency取本位币即可,收据用需要的货币

客户导入接口:ra_customers_interface_all/ra_customer_profiles_int_all/ra_contact_phones_int_all

1)要导Customer,ra_customer_profiles_int_all需要有记录

2)orig_system_party_ref相同的话,Customer_Number不同,可以在一个Party下建多个Customer

3)ship to的bill_to_orig_address_ref可用bill to的orig_system_address_ref,这样可以自动关联

4)需要打Patch 3606744和3558213,否则Statement和Dunning类型的Site Use导不进去

5)不是所以字段都可以从Interface进去;以HZ_Cust_Site_Uses_all为例,导入之后需要直接Update如下比较重要的字段:payment_term_id、order_type_id、warehouse_id、territory_id、primary_salesrep_id

6)更新HZ_Cust_Site_Uses_all的Primary_flag的时候注意同时更新hz_cust_acct_sites_all的bill_to_flag和ship_to_flag为P(Primary)或者Y

销售订单接口:oe_headers_iface_all/oe_lines_iface_all/oe_actions_iface_all

1)整张Close的订单可以通过接口表;Close的订单,Oracle几乎是直接插表;其他的要做很多验证

2)部分行Close的订单,可以给行Assign一个仅负责Close(Enter/Fulfill/Close/End)的工作流,这样Workflow Back Ground Process起来之后就会Close

3)非Close的订单行号不能重复,所以接口表我们给空;如果有需要待导入后Update Line表即可

4)数量正负要与Line Type的类型一致,正的对Order,负的对Return,否则接口报Inventory Item错误

5)订单号更新需要更新几个表:oe_order_headers_all/wsh_delivery_details/mtl_sales_orders

6)订单行在收货或者发货不足的情况下会拆行,拆行的时候系统几乎是拷贝所有的字段,如果碰到Unique的字段会失败。我碰到的问题是把源系统的line_id记录在d性域上,并给这个d性域建了Unique索引,导致Dropship的订单采购部分收货老是报错

采购订单接口:po_headers_interface/po_lines_interface/po_distributions_interface

1)PO接口有问题可察看错误信息表po_interface_errors,可以解决大部分问题

2)本位币导入之后,头上的Rate Date为空,需要Update表

3)quantity_billed也可以事后更新,这样AP不会再Match过来

4)审批记录可以直接插入表po_action_history

5)注意采购的Valdiate ORG

6)如果Item没有Assign给Ship_to_org,会报No data found错误

采购接收接口:rcv_shipment_headers/rcv_transactions_interface

1)收据头直接写表;收据行和收货事务通过接口

2)注意parent_transaction_id,Receive需要放空

3)PO接口有问题可察看错误信息表po_interface_errors,可以解决大部分问题

4)如果要再现原来的Receiving Transaction,可按如下顺序分批进入接口RECEIVE、TRANSFER、ACCEPT、REJECT、DELIVER、RETURN TO RECEIVING、RETURN TO VENDOR、CORRECT

库存项目接口:mtl_system_items_interface

1)在Master Org新增Item比较简单,给足需要的字段即可

2)在其他组织增加Item(相当于从Master Assign后再Update),需要注意Master Org Conctrol的字段需要保持主组织的值(比较多,看mtl_item_attributes的Conctrol_level = 1)

3)在其他组织增加Item还需要注意一些字段需要保持主组织的值,否则接口会报错,它们是create_supply_flag、dual_uom_control、buyer_id、allowed_units_lookup_code、purchasing_item_flag、internal_order_flag、inventory_item_flag

4)如果要给Item Assign Category,可以通过mtl_item_categories_interface,对应的请求是Item Category Assignment Open Interface

purchase order 和 sales confirmation 有什么不同呢

purchase order购买订单

sales confirmation销售确认

procurement 和 purchase 有什么不同

二者在用作采购时没区别!可以互换!

procurement 采购;获得;促成

This is the government procurement not mercial.

这是 *** 采购,不是商业采购。

Obtain project resources in aordance with a procurement plan.

按采购计划获得项目资源。

Procurement is the process of obtaining goods by the OCOG through purchase or VIK.

采购是奥组委通过购买或实物赞助形式获得物资的过程。

purchase 采购

The receipt is your proof of purchase.

这张发票是你购物的凭据.

The house is the most expensive purchase I have ever made.

房子是我买过的最贵的东西。

buy和purchase有什么不同?

若指用金钱去购买东西的话, 两者意思是一样的.

(1) buy 是最为普遍的用词, purchase 有时在较为官式的场合出现,比较上来得文化意味较重,而且似乎经过"深思熟虑"才决定的:

"The board of directors has decided to purchase the land lot no.231 from xxx"

在此例子里, 用 buy 完全不会影响其原意.

(2) buy 和 purchase 其他解释, 例如你可 buy time (争取时间), I don't buy Tom's ida.我不采纳汤姆的意见。这时便不能换作purchase了。

(3) buy 和 purchase 虽然都可作名词. 但若是指一项「购入」则多用 purchase. buy 作名词用时多数作「抵到烂/执到宝...」解.

We made the purchase last year (我们在上年达成这项购物/入的)

It was a real buy at that price! (以那价钱来说真是抵到烂啦!!)

至于deal with则多指安排, 处理, 涉及, 做生意。可以用(make bussiness)、(cope with )、(manage)、(handle)、(see to)、(take care)、(sort out)、(content with)、(take in hand)等作同义词用。

sales 和marketing有什么不同?

sales单纯指“销售”,就是“卖”东西。

marketing指“市场”,不光有“销售”,还包括“市场培育”、“公关”等 内容。

quickbooks中invoices,sales receipts,和credit memos有什么不同

要看用哪种ERPEBS接口表参考信息: AP接口表: AP_INVOICES_INTERFACE AP_INVOICE_LINES_INTERFACE 涉及请求: 应付款管理系统放接口导入 涉及案例: 运费导AP、费用导AP PO接口表: 申请: PO_REQUISITIONS_INTERFACE_ALL 涉及请求: 导入申请 采购: po_headers_interface po_lines_interface po_distributions_interface 涉及请求: Import Standard Purchase Orders 接收: rcv_headers_interface rcv_transactions_interface mtl_transaction_lots_interface 涉及请求: 接收事务处理处理器 涉及案例:运费导采购、MRP导申请、POP导申请 GL接口表: gl_interface 涉及案例:ADI导记账、返利导记账 FA接口表: fa_mass_additions FA API: 增加fa_addition_pub.do_addition 修改:fa_adjustment_pub.do_adjustment fa_asset_desc_pub.update_desc 涉及案例:电资产清理 库存事务接口:mtl_transactions_interface 1)般用做各类杂收发、Cost Update于业务关事务般建议使用比SO发货自发导致Workflow没往走 2)功导入运行Cost Manager计录 3)平均本更新通接口;该Item没交易则本数据进入cst_item_costs 固定资产接口:fa_mass_additions 1)fa_mass_additions表几Trigger需要注意;自插其表删除候 2)折旧接口表给自Category继承所导入需要Update表 3)通AP引FA没Source Lines信息;需要通插表实现 4)数据进接口Navigator:Mass Additions/Post Mass Additions提交请求集报表显示导入结我测试程序直接提交请求集 总账录接口:gl_interface 1)简单接口说 应付发票接口:ap_invoices_interface/ap_invoice_lines_interface 1)Profile AP: Use Invoice Batch Controls定义否使用批控制 2)仅支持CREDIT/STANDARD;注意金额负于零用CREDIT于零用STANDARD 3)PREPAYMENT/DEBIT/EXPENSE REPORT/MIXED支持先用CREDIT或者STANDARD进再Update式表ap_invoices_all 4)导入再调用请求Invoice Validation自Validate发票 应收发票接口:ra_interface_lines_all/ra_interface_salescredits_all 1)几接口表间关系其接口同通ID关联通描述性d性域Line Transaction Flexfield定义 2)接口给IDName要根据Transaction Source定义能随便给 3)ra_interface_distributions_all表插让系统自配行 4)没销售员提供条ID=-3No Sales Person记录给接口要看AR System Option Miscellaneous设置否要求销售员 应收收据接口:ar_interim_cash_receipts_all 1)AR Receipt标准接口Lockbox需要预先定义Format;Oracle根据Format定义接口数据写ar_interim_cash_receipts_all;我跳第步直接数据插入ar_interim_cash_receipts_allBatch需要我直接插表 2)Batch界面查看:数据ar_interim_cash_receipts_allBatch Type Mannual Quick 3)BatchCurrency取本位币即收据用需要货币 客户导入接口:ra_customers_interface_all/ra_customer_profiles_int_all/ra_contact_phones_int_all 1)要导Customerra_customer_profiles_int_all需要记录 2)orig_system_party_ref相同Customer_Number同Party建Customer 3)ship tobill_to_orig_address_ref用bill toorig_system_address_ref自关联 4)需要打Patch 36067443558213否则StatementDunning类型Site Use导进 5)所字段都Interface进;HZ_Cust_Site_Uses_all例导入需要直接Update比较重要字段:payment_term_id、order_type_id、warehouse_id、territory_id、primary_salesrep_id 6)更新HZ_Cust_Site_Uses_allPrimary_flag候注意同更新hz_cust_at_sites_allbill_to_flagship_to_flagP(Primary)或者Y 销售订单接口:oe_headers_iface_all/oe_lines_iface_all/oe_actions_iface_all 1)整张Close订单通接口表;Close订单Oracle几乎直接插表;其要做验证 2)部行Close订单给行Assign仅负责Close(Enter/Fulfill/Close/End)工作流Workflow Back Ground Process起Close 3)非Close订单行号能重复所接口表我给空;需要待导入Update Line表即 4)数量负要与Line Type类型致Order负Return否则接口报Inventory Item错误 5)订单号更新需要更新几表:oe_order_headers_all/wsh_delivery_details/mtl_sales_orders 6)订单行收货或者发货足情况拆行拆行候系统几乎拷贝所字段碰Unique字段失败我碰问题源系统line_id记录d性域并给d性域建Unique索引导致Dropship订单采购部收货报错 采购订单接口:po_headers_interface/po_lines_interface/po_distributions_interface 1)PO接口问题察看错误信息表po_interface_errors解决部问题 2)本位币导入Rate Date空需要Update表 3)quantity_billed事更新AP再Match 4)审批记录直接插入表po_action_history 5)注意采购Valdiate ORG 6)Item没Assign给Ship_to_报No data found错误 采购接收接口:rcv_shipment_headers/rcv_transactions_interface 1)收据直接写表;收据行收货事务通接口 2)注意parent_transaction_idReceive需要放空 3)PO接口问题察看错误信息表po_interface_errors解决部问题 4)要再现原Receiving Transaction按顺序批进入接口RECEIVE、TRANSFER、ACCEPT、REJECT、DELIVER、RETURN TO RECEIVING、RETURN TO VENDOR、CORRECT 库存项目接口:mtl_system_items_interface 1)Master Org新增Item比较简单给足需要字段即 2)其组织增加Item(相于Master Assign再Update)需要注意Master Org Conctrol字段需要保持主组织值(比较看mtl_item_attributesConctrol_level = 1) 3)其组织增加Item需要注意些字段需要保持主组织值否则接口报错create_supply_flag、dual_uom_control、buyer_id、allowed_units_lookup_code、purchasing_item_flag、internal_order_flag、inventory_item_flag 4)要给Item Assign Category通mtl_item_categories_interface应请求Item Category Assignment Open Interfac

SQL中 \'group by\'和\'order by \'有什么不同呢

一个是对处理的数据进行分组,一个是对处理的数据进行排序

CFR和CNF有什么不同呢?

CFR是COST FREIGHT的缩写,CNF是COST AND FREIGHT。没什么不同,国际贸易通则版本不一样,称呼不同。

fastener和button有什么不同呢

fastener你可以理解为紧固件,比如销,定位销. Rivet 铆接,铆钉,扣件;锁定器;紧固件

button就很广了,钮扣按钮都可以用

refuse 和reject有什么不同呢?

refuse 可接不定式,表示拒绝做某事,也可接名词,表示不接受。reject 语气比 refuse 强,表示断然拒绝。如果不同意一种意见或信仰,要用 reject。

比较:

1. I refused to take part in anything that is illegal.

我拒绝参加任何非法的活动。

2. The army doctors rejected several recruits as unfit.

军医拒绝了几名新兵,认为他们身体不合格。

Swede和Swedish有什么不同呢

swede只是名词,是瑞典人的意思。

而Swedish既可以作名词,有瑞典语和瑞典人的意思,还可以作形容词,意思是:

瑞典的

瑞典语的


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7877332.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存