Dear All,
I have made mandatory for "PRPS-USR01" field from CJ20N transaction
by using field exit. But mandatory field (usr01) is working for all wbs elements. I want to make this usr01 field mandatory for LEVEL 1(prps-stufe), WBS ELEMENTS(prps-posid) only. Not for level 2 and level 3 wbs elements. Please let me know how to fix it.
urgent.
Regards,
Karthik.
hi,
try in your exit:
IF prps-stufe = 1 and PRPS-USR01 = space.
message e001(00)...
ENDIF
Message was edited by:
Andreas Mann
You could envisage the use of validation rules in PS.
Transaction OPSI or SPRO
Create a validation with a message ID (Z)
Create a step
- prerequisite : PRPS-STUFE = '001'
- Check : PRPS-USR01 <> ' '
affect a message number
Regards.
Add a comment