Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP B1 AP invoice Contents Table query

4,361
  • SAP Managed Tags

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?

2 REPLIES 2
Read only

AlexGourdet
Product and Topic Expert
Product and Topic Expert
0 Likes
3,744
  • SAP Managed Tags

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

Read only

mgregur
Active Contributor
0 Likes
3,744
  • SAP Managed Tags

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