Skip to Content
0
Oct 19, 2018 at 05:46 PM

relation of PRCD_ELEMENTS to billing

2912 Views

Scenario is as below, I have to access some sap file to get value:

VBRK (assuming it is billing document and I am getting all billing information, it also have doc condition)

VBRP (a billing document number VBELN has n number of items in it, so this table shows for each VBELN i.e. billing number various item numbers i.e. POSNR )

now i want to get the price for this billing, so I want to access PRCD_elements which have price details i.e. KWERT.

VBRK

doc number: 11122, doc condition: AABB

VBRK

doc number: 11122, item: 1

doc number: 11122, item: 2

PRCD_elements

doc condition: AABB, item: 1, value(price): $

doc condition: AABB, item: 1, value(price): $

doc condition: AABB, item: 1, value(price): $

doc condition: AABB, item: 2, value(price): $

doc condition: AABB, item: 2, value(price): $

doc condition: AABB, item: 2, value(price): $

Ques: why prcd_elements has multiple row, it should be having rows equal to VBRK so i can get there value. Is document condition number is generic number?