cancel
Showing results for 
Search instead for 
Did you mean: 

how can I add the bom header in header of the query report in sap?

former_member328595
Active Participant
0 Kudos

Hi everybody

I created Query bye FM ' CS_BOM_EXPL_MAT_V2 ' for multi material.

report of that like this :

I want to add BOM first header in top of the report for every material like CS13 :

can anyone help to me? how can I do that?

Accepted Solutions (1)

Accepted Solutions (1)

former_member328595
Active Participant
0 Kudos

Solved.

I created the another additional field and wrote this code:

result :

Answers (1)

Answers (1)

former_member328595
Active Participant
0 Kudos

Hi every body

I wrote the this code for additional field to displayed the BOM Header:

select single matnr
from mast
into BOMHEADER
where stlnr EQ stpox-stlnr
AND werks EQ stpox-werks
AND stlan EQ stpox-stlan
AND stlal EQ stpox-stlal.

another way of the may question is like this:

I want to display first level of BOM header for all material . please help to me.