Skip to Content
Author's profile photo Mohamed Rafi

Using Validations in Project System with Examples

Purpose

The purpose of this blog is to help the beginners in creating validation in Project system, also it lists some examples of the commonly used validations with prerequsities and checks.

Validation

SAP Help explains validation as a check of values or combination of values in the SAP environment. In the Std SAP System almost all data’s are validated against some tables or master datas. In addition to SAP defined validation, a user can define his own set of validation to carry out project specific checks. 

A validation has three areas, Pre-requisites, Checks & Messages.

Pre-requisites:

It is the statement which determines whether validation should be carried out or not. If the statement is true, then system proceeds to check area otherwise allows the transaction.

Check:

This is the condition which is to be validated. If the statement is true, then the transaction continues, but if the statement is false, the system displays the message.

Message:

This is the message which is to be displayed if the check statement fails.

Validation in Project system:

You can create the validations for Project systems using Tcode OPSI or from the following menu path:

SPRO >Project system> Structures> Operative Structures> Work Breakdown Structure/Network> Maintain Validation.

Once you create the validation, this validation should be maintained in Project profile (for Project Definition and WBS element) or in Network Profile (for Network header and Network Activity) Make sure to tick the check box automatic validation in project profile, so that system performs validation automatically whenever you save the project. 

You can assign only one validation name per object, say project definition or WBS Element, in project profile. But you can create 999 validation steps for a single validation name.

Examples of Commonly used Validation:

 

Purpose

Pre-requisite

Check

Action

To allow specific project codes for specific project profiles

PROJ-PSPID like A*

PROJ-PROFL = ‘1000’

System checks if the project code starts with A, then project profile 1000 has been used or not.

To check 1st level WBSE code is same as project code

PRPS-STUFE = ‘1’

PRPS-POSID =

PROJ-PSPID

System checks First level WBSE and Project definition number are same or not

To check project code and WBSE code are same

PROJ-PROFL = ‘00001’

PRPS-POSID :1-X: =

 PROJ-PSPID

System allows to have different WBSE code under a project code, in order to avoid this, you can perform this check. Here, X denotes the length of the project without special characters.

To check specific characters in the WBSE code

PROJ-PROFL = ‘00001’

PRPS-POSID :X-X: = ‘A’

System checks whether the ‘X’ th position of WBSE code is ‘A’ for the project profile 00001

To allow only certain user to enter a value in certain fields

PRPS-PRCTR <> ‘ ‘

SYST-UNAME  = ‘ABC’

System allows only user ABC to enter the value for Profit center for all WBSE

To make project type mandatory for particular project profile and for 1st level WBSE

PROJ-PROFL = ‘001’

AND

PRPS-STUFE = ‘1’

PRPS-PRART <> ‘ ‘

System checks whether the project type has been entered for 1st level WBSE of the project with profile 001

To make resp cost center as madatory field for a particular network type and profile.

CAUFVD-PROFID = ‘0001’

AND

CAUFVD-AUART = ‘PS02’

CAUFVD-KOSTV

<> ‘ ‘

System makes sure that resp. cost center is filled for a particular network profile and network type.

 

Useful link:

http://help.sap.com/erp2005_ehp_04/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm

You can read more about validations in this help section.

Assigned Tags

      10 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Hi Rafi,

      Project validations is being asked very often in our forum. This document will give basic information and guidance how to proceed if some one wanted to set up validations in system.

      Keep it up and good work indeed.

      Regards,

      Sudhakar

      Author's profile photo Former Member
      Former Member

      Hi Mohamed,

      Great work. This is crystal clear and very informative. Will give the beginners a good idea on how Validations actually work in SAP PS.

      Keep it up.

      Best Regards,

      Gokul

      Author's profile photo NAG A C
      NAG A C

      Thanks Rafi for knowledge sharing and excellent guideline to beginners.

      Author's profile photo sanjeev chauhan
      sanjeev chauhan

      Great job Rafi and hope you will keep it Continue, you have how to use validation in PS scenarios wise.

      Regards,

      Sanjeev

      Author's profile photo Nelson Hernández Manso
      Nelson Hernández Manso

      Good explanation! very clear. Thanks.

      Author's profile photo Former Member
      Former Member

      Very Much informative for beginners.

      Keep it up.

      Regards,

      Vinay

      Author's profile photo Dnyaneshwar Gund
      Dnyaneshwar Gund

      very informative..thanks.

      Author's profile photo VINAY REDDY
      VINAY REDDY

      very useful information,

      thanks..

      Author's profile photo Former Member
      Former Member

      Dear Mohamed Rafi,

      i do highly appreciate your hard work and wonderful explanation, but i found "Examples of Commonly used Validation" was mixed up as at first example "Examples of Commonly used Validation:" as PROJ-PSPID like A* needs to be in check column and PROJ-PROFL = ‘1000’ needs to be in PROJ-PSPID like A*

      Correction:

      Exactly like below picture:

       

      However i would like to thank you for your Clearly explanation.

      sincerely,

       

      Author's profile photo Former Member
      Former Member

      Hi Mohamed, thanks very much for your contribution. I have doubt, is there any user exit to make validations between WBS in the same project?