if (window.name != "content")
document.write("
");
<!-- !chm2web! -->
Find table of Invoice History
Posted By Ralph Klassen On Monday, January 19, 2004 at 11:03 AM from IT-Toolbox http://sap.ittoolbox.com
Q:
Does anyone know of a table holding logistics invoice documents other than the BSEG? I need to extract all invoices against purchase orders and am trying to find the most efficient way. Any help would be greatly appreciated.
A:
Start by selecting from EKBE where EBELN = your PO and EBELP = your PO item (if you have it). This will give you the PO history that you see in ME23N.
The field EKBE-VGABE identifies the type of document. I think you want to look for a '1' in this field for a goods receipt and a '2' for invoice receipts. Verify this by browsing EKBE using SE1/SE16 at the same time you are looking at a PO in ME23N. If all you are concerned with are the vendor postings then you can limit yourself to the invoice receipts. If you need to retrieve the expense side of the G/L coding then you need the goods receipts as well.
For each record that you retrieve from EKBE:
concatenate EKBE-BELNR and EKBE-GJAHR
if EKBE-VGABE = '1'
select from BKPF where AWTYP = 'MKPF' and AWKEY = (EKBE-BELNR and
EKBE-GJAHR)
if EKBE-VGABE = '2'
select from BKPF where AWTYP = 'RMRP' and AWKEY = (EKBE-BELNR and
EKBE-GJAHR)
I'm not sure if this will work for parked documents but my guess is 'yes it will'.
分享到:
相关推荐
资源来自pypi官网。 资源全名:trytond_account_invoice_history-5.0.5.tar.gz
invoice-发票模板-.pdf
invoice-发票模板.pdf
COMMERCIAL INVOICE,商业发票
在IT行业中,"universal invoice making"是一个关键的话题,它涉及到软件开发、数据处理和业务流程优化。这个概念的核心是创建一个通用的发票接口,它能够适应不同用户的需求,只需要进行少量的定制化修改。这样的...
这里我们将深入探讨标题为“JAVA程序 发票(invoice&invoiceitem&refunditem)”的小程序,它包括三个核心类:`invoice.java`、`invoiceitem.java`和`refunditem.java`,以及相关的JUnit测试。 1. **invoice.java**:...
在C++编程中,`Invoice`类通常是一个用于表示发票数据和操作的抽象概念。它可能包含关于商品或服务的详细信息,如商品名称、数量、单价、税率以及总金额等。`Invoice`类的设计是面向对象编程的一个关键部分,因为它...
MM OVERVIEW -PUR 供参考
国际发票模板
Writing a C + + program that calculates the amount of a bill knowing that VAT to apply is 13 and if the gross amount of the invoice is greater than 50, is due to make a discount of 5 .
### SCM515_Invoice_Verification_Part3:发票验证及释放详解 #### 知识点一:发票释放概述 在供应链管理(SCM)领域,发票验证与释放是确保采购到付款流程顺利进行的关键步骤之一。对于企业来说,有效地处理被...
invoice21.03.2022.docx
Proforma invoice.pdf
SAP MM training-Invoice verification SAP MM 系统中的Invoice Verification是指在采购流程中,验证供应商发票的正确性和完整性。该过程是采购流程的重要组成部分,涉及到供应商、采购订单、发票、库存管理等多个...
CI_INVOICE
jar包,官方版本,自测可用
jar包,官方版本,自测可用
('invoice.download', $invoice->id) }}">{{ $invoice->invoiceNo }} <!-- 其他信息展示... --> @endforeach ``` 对应的`download`方法会通过ECPAY API获取PDF发票文件并提供下载: ```php public function ...
Invoice Details. Calculation of total, VAT, Etc. then printing the invoice details, by sending command to printer,.
在这个名为"Invoice-test-case.rar_Invoice-test-case"的压缩包文件中,我们可以推测它包含了一系列针对发票处理功能的测试用例文档或脚本。下面将详细讨论发票测试用例涉及的关键知识点。 1. **发票的基本概念**:...