cancel
Showing results for 
Search instead for 
Did you mean: 

Purchase order in configuration

Former Member
0 Kudos

Dear all,

i have the following scenary:

FG (Configurated material with configuration profile )

    

Super Bom of FG is as structured:

PF

     SG ( purchasing material with own configuration profile )  

When i create a sales order for the FG con the following configuration:

Char a =  value 1

Char b = value 2

the system create after mrp run a purchase order for the SG , but into it there is the configuration of the FG and is not able to configure the purchase material SG.

Are there some setting to do in order to can configure the SG with the owm chars?

Thanks a lot

Daniele

Accepted Solutions (0)

Answers (1)

Answers (1)

Ritz
Active Contributor
0 Kudos

Daniele Pistilli,

Seems link to pass value from FG to SG is missing. Can you share what more
ypu did to make this link?

When you simulate in CU50 does it shows both the level in result and does it
shows value passed to SG?

First just try to assign same characteristic to both the class if it doesn't work use
below. you can use dependency type procedure to inherit these values from
parent to child.

Create dependencies with syntax like below and assign it top both the
configuration profile. FG & SG.

$SELF.CHAR = $PARENT.CHAR

Try it may help you.

Thanks

Ritesh

Former Member
0 Kudos

Dear Ritesh,

i try describe better my problem.

I have the following product structure:

FG ( class 1 ) and configuration profile Profile 1 :

     Class 1

          Char a

          Char b

SG (class 2 )  and configuration profile Profile 2 :

   Class 2

          Char d

          Char e

Bom

FG

     SG

After MRP run the system create a purchase requisition for SG material with configuration  :

Class 1

          Char a

          Char b

and not

   Class 2

          Char d

          Char e

The system seem read the configuration profile of the ROOT and not of the SELF for it.

Scenary MTO Strategy 25 in both material , i don't know if the probably problem can be this.

Thanks a lot

Daniele

Ritz
Active Contributor
0 Kudos

Daniele Pistilli,

While creating sales order you are assigning values to first level only so how come you expect second level to have values populated.

If characterstics in parent and child have some relation between characterstic values you need to maintain those rule using dependency and that will setup values for lower level.

Other wise add lower class characterstic in higher class too. i am modifying your example

FG ( class 1 ) and configuration profile Profile 1 :

     Class 1

          Char a

          Char b

          Char d

          Char e

SG (class 2 )  and configuration profile Profile 2 :

   Class 2

          Char d

          Char e

so now while assigning values to top level you will assign values for both the level.

Please check and reply.

Also , please mark replies helpful if it helps you.

Thanks

Ritesh