2022 Aug 19 2:25 PM
Hi all
i'm using SAP B1
by the way i can extract All AP invoice now
but i don't know how to get information line item each Invoice
i need decription line by line. maybe whole contents line ltem
" not only 1 invoice. at least bunch of invoices" at once
do you guys know any Query code or how to do that?

Hi all
i'm using SAP B1
by the way i can extract All AP invoice now
but i don't know how to get information line item each Invoice
i need decription line by line. maybe whole contents line ltem
" not only 1 invoice. at least bunch of invoices" at once
do you guys know any Query code or how to do that?

2022 Aug 19 2:26 PM
Thank you for visiting SAP Community to get answers to your questions.
As you're looking to get most out of your community membership, please consider include a profile picture to increase user engagement & additional resources to your reference that can really benefit you:
I hope you find this advice useful, and we're happy to have you as part of SAP Community!
All the best,
-Alex
2022 Aug 22 9:55 AM
Hi,
all you need is to join OINV and INV1:
SELECT *
FROM OINV T0
INNER JOIN INV1 T1 ON T0."DocEntry" = T1."DocEntry"BR,
Matija