Application Development 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: 

BOM List

Former Member
0 Kudos

Hi All,

How to find whether material has BOM list or not?

As well is there any Functional Module to display Equipment structure list. (Transaction IE03=>Enter Equiment No=>from display equiment: General Data click structure => structure list).

Thanks

7 REPLIES 7

Former Member
0 Kudos

Hi

If you want to find whether a material is an assembly ( has sub components ) or not , just fire a query to table MAST . If the material is here it menas it has subcomponents .

If you want to find where used list of subcomponents use transaction CS15 .

Cheers.

0 Kudos

Thanks Sanjay for your reply for BOM list Link.

Please suggest me if there is any Function Module to display Equipment Structure list.

Thanks.

0 Kudos

Equipment Structure list

EQUIPMENT_SUCCESSORS

Regards

Raja

0 Kudos

Thanks Raja for your response.

The structure for FM EQUIPMENT_SUCCESSORS is

CALL FUNCTION 'EQUIPMENT_SUCCESSORS'

EXPORTING

equi_no = '10000999'

  • READING_DATE = '99991231'

tables

equi_tab = equi_tab

EXCEPTIONS

NO_SUCCESSORS = 1

SUCC_READ_ERROR = 2

OTHERS = 3.

IF sy-subrc <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

What is equi_tab structure?

Thanks

0 Kudos

data: equi_tab like V_EQUI occurs 0 with header line .

to find the reference structure/ data type go to se 37 enter the fm name and display it.

Regards

Raja

0 Kudos

Hi Raja,

This FM is giving an error.

<i>Only message types A, E, I, W, S and X are allowed</i>

Thanks,

0 Kudos

strange, first test this from se37 and let us know.

Are you sure that this message is from the FM?

Regards

Raja

Reward the helpful answers by clicking the radiobutton