cancel
Showing results for 
Search instead for 
Did you mean: 

BOM Explosion using Function 'CS_BOM_EXPL_MAT_V2 '

Former Member
0 Kudos

Hi Gurus,

I am working on BOM and exploding the multilevel BOM using function CS_BOM_EXPL_MAT_V2.

I want to know what does 'field-RNDKZ' do in that.

Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Probably that field is used for rounding off the quantity fields......

Former Member
0 Kudos

Hi Lalit,

Thanks for your answer.

I don't know why but I am getting 3 records for every material.

have any idea what can be wrong?

kesavadas_thekkillath
Active Contributor
0 Kudos

May be allernative BOM i guess, check if there is field called VWALT which differs for the three records.

Also check the field POSTP,SUMFG whether it has any diffrence among the three records.

Answers (2)

Answers (2)

gesa_dickert
Member
0 Kudos

Using Function module  CS_BOM_EXPL_MAT_V2

As already has been said, the RNDKZ field is used for rounding. If you fill with '1', it will never round.

Example (the problem I had):

Material A consist of et al. 0.008 piece Material AA.

Material AA consist of 1.0 pice Material AAA,

                              of 7.0 piece Material AAB,

                              of 6.0 piece Material AAC,

                              of 12.0 piece Material AAD.

CASE 1: You fill RNDKZ field with '1':

You get the correct result which is:

You need for producing 1 piece of Material A

0.008 piece Material AA,

0.008 * 1 = 0.008 piece of Material AAA,

0.008 * 7.0 = 0,056 piece of Material AAB,

0.008 * 6.0 = 0,048 piece of Material AAC.

0.008 * 12.0 = 0,096 piece of Material AAD.

CASE 2: You let RNDKZ field blank.

In your user profile for BOM  field "Round of" is set to blank (table field TCSPR-AMEKZ, TA S_ALR_87004496).
You get following result (which is wrong)

You need for producing 1 piece of Material A

1 piece Material AA,

1.0 *1.0 = 1.0 piece of Material AAA,

1.0 * 7.0 = 7.0 piece of Material AAB,

1.0 *  6.0 = 6.0 piece of Material AAC.

1.0 * 12.0 = 12.0 piece of Material AAD.

The number of decimals is seen depends as well from how many decimals is set for unit of measurement. In this case the number of decimals for "piece" was set to zero. (TA CUNI).

If you let the field RNDKZ field blank, the user profile field "Round of" (table field TCSPR-AMEKZ) is used.

Former Member
0 Kudos

Hi,

Field RNDKZ - Adapt to unit of measure by rounding. ( corresponds to TCSPR-AMEKZ ) ( User profile for BOMs)

Field could be blank.

Fields required - Material, Plant, BOM usage, Application , Valid on, Required Quantity / Alternative BOM.

Hope it helps.

Sujay