cancel
Showing results for 
Search instead for 
Did you mean: 

Validation not Working in WBS Element

Former Member
0 Kudos

Dear Team,

I have created a Validation at WBS element level like this:-

Prerequisite

PROJ-PROFL = 'ZPSSNR'

Check

PRPS-POSID : 1-6 := PROJ-PSPID : 1-6:

Error:

WBS ID doesn't start with Project ID

My Project ID "SN-001"

Now when I tried create 1st Level WBS element ( which is Identical to Project ID), it is working fine but in 2nd level onwards it raised erorr. For example, I tried to create WBS at 2nd Level like "SN-001-CIV" then system throw error.

Kindly help me to resolve the issue.

Regards

Soumen Das

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

To make validation work only at level 1 wbs element you need to put the prerequisite asking to check both the project profile and the level of the WBS as below.

Project profile = " " AND WBS Level = "1"

Regards,

Pradeep

Former Member
0 Kudos

Thanks for your reply. But now my question is how can I assure that level 2 onwards WBS ID should started with Parents Project Defination ID? Kindly help.

Former Member
0 Kudos

Hi,

For your case Use the data as below it would work fine for all the level WBS.

Prerequisitie:

PROJ-PROFL = 'Your project profile' AND PRPS-STUFE >= '1'

Check:

PRPS-POSID :1-5: = PROJ-PSPID :1-5:

Message:

Your required message number.

Note in Check i am asking to use 1:5 because the special symbols should not be considered.

Now your validation should work fine.

Regards,

Pradeep

Former Member
0 Kudos

Dear Soumen,

PSPID & POSID both dont consider special characters.

PROJ - PSPID = "SN-001".

Here :1-6: means "SN001" for 1-5 & "0" for 6 as characters.

PRPS - POSID = "SN-001-CIV"

Here :1-6: means "SN001" for 1-5 & "C" for 6 as characters.

Hope you got the error.

regards

Answers (1)

Answers (1)

Former Member
0 Kudos

solved