To compare multiple BOMs
Used the BOM Comparison report (CS14). It will compare two Bill of materials for you. Table for BOM fields How to find Table in which the field 'Item ID' in the BOM (T-code cs01/cs02) is maintained? I had tried T-code SE16, but could not found tables for BOM. In technical help I could see that Field Name is 'IDENT' and Data Element is 'ITMID'. <<<
MAST---->Material to BOM Link STKO ---->BOM Header STPO----->BOM item Go and run this tables and you will get the desired detail Pallab <<<
STKO ----BOM - header STPO ----BOM - item STAS ----BOMs - Item Selection STPN ----BOMs - follow-up control STPU ----BOM - sub-item STZU ----Permanent BOM data PLMZ ----Allocation of BOM - items to operations MAST ----Material to BOM link KDST ----Sales order to BOM link Can somebody suggest something different. Most important thing is I could not find any tables linked to BOM in T-Code SE16. Navin <<<
They both refer to the "External identification of an item", which is reserved for the "External system item number" for that BOM (just a guess). In case you are transferring your BOM from an external system. For your information:
That's because, system stores data in a database table, but during transactions it uses temporary data carriers (e.g. structures) until the program finishes. When the program is finished, it writes the temporary data to the actual database table. In your case, the database table is STPO, and the temporary data carrier is the RC29P structure. The field IDENT in RC29P is displayed during CS01/CS02, but when you save the BOM, it's written to the corresponding database table STPO's ITMID field. If you enter a number in this field while you are creating an item in the BOM, it will be written to the field STPO-ITMID. However, if you don't enter a number yourself, system will fill that information itself, with a sequential number. But this time, system writes this number to the STPO-STVKN field. Therefore, system has 2 fields in the database table STPO for this data, but during the BOM editing, it displays only one of these fields. If data entered by user, it's displayed, if not, the system-given automatic number is displayed instead. This information i didn't know before, but i knew before the use of temporary data during transactions. So, i checked the field during CS02, and i saw that field is RC29P-IDENT, and i guessed that it was stored in STPO table. Then i checked the RC29P-IDENT and i saw it was CHAR type with length 8. I looked for the fields in STPO with type CHAR and length 8, the rest was easy to find. Osman Karslioglu <<<
Skywalker <<<
You can also test this information.
STVKN, ITMID
But in transaction CS02, system displays the Item ID
Osman Karslioglu
SAP PP Reference Books:
Goto:
Back to:
Return to :-
(c) www.gotothings.com All material on this site is Copyright.
|