cancel
Showing results for 
Search instead for 
Did you mean: 

KF at diffirent planningin level

0 Kudos

Hi Gurus,

I have 2 KF.

P Lead time @WKPRODLOCSRC

T Lead time @WKPRODLOCLOCFR

I want to build new KF that is sum of both @WKPRODLOC level.

Any guidance will be appreciated.

Thanks

Amit

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hi, Aggregated in same KF and it work out.

P Lead time @WKPRODLOC = P Lead time @WKPRODLOCSRC

It work out.

Answers (5)

Answers (5)

0 Kudos

Aggregated

in same KF.

P Lead time @WKPRODLOC = P Lead time @WKPRODLOCSRC

ayanbishnu1981
Active Contributor
0 Kudos

Try this one

P Lead time @WKPRODLOC = MAX("P Lead time @WKPRODLOCSRC")

T Lead time @WKPRODLOC = MAX("T Lead time @WKPRODLOCLOCFR")

KF3@WKPRODLOC = "P Lead time @WKPRODLOC "+ "T Lead time @WKPRODLOC"

KF3@REQUEST = SUM("KF3@WKPRODLOC")

Let me know the outcome. Hopefully this should work

ankpatel
Contributor
0 Kudos

Hi Amit,

Can you have PLEADTIME and TLEADTIME as below, if yes, then it should work.

PLEADTIME@WKPRODLOC = MAX( "PLEADTIME @WKPRODLOCSRC" )

KF3@REQUEST = MAX("KF3@WKPRODLOC")

KF3@WKPRODLOC = "P Lead time @WKPRODLOC "+ "T Lead time @WKPRODLOC"

Regards

Ankur

0 Kudos

Hi Ankur,

It gives the error "Aggregation at different planning level".

Amit

0 Kudos

Thanks Ayan.

It did not work. Do I need to create new planning level also (WKPRODLOCLOCFRSRC)?

ayanbishnu1981
Active Contributor
0 Kudos

Try this one

P Lead time @WKPRODLOC = MAX("P Lead time @WKPRODLOCSRC")

T Lead time @WKPRODLOC = MAX("T Lead time @WKPRODLOCLOCFR")

KF3@WKPRODLOC = "P Lead time @WKPRODLOC "+ "T Lead time @WKPRODLOC"

KF3@REQUEST = SUM("KF3@WKPRODLOC")

Let me know the outcome. Hopefully this should work

ayanbishnu1981
Active Contributor
0 Kudos

This is very straight forward

KF3@WKPRODLOC = "P Lead time @WKPRODLOCSRC "+ "T Lead time @WKPRODLOCLOCFR"

KF3@REQUEST = SUM("KF3@WKPRODLOC")