cancel
Showing results for 
Search instead for 
Did you mean: 

How to make field in personal setting to optional?

Former Member
0 Kudos

Hello,

We want to make this field "Form of address" as optional in the personal settings. The form of address has a drop down for "MR"/ "Mrs" Currently it is mandatory and causes additional unwanted work. We are in SRM 7.0.

Any help is much appreciated.

Thanks

Kartik

Accepted Solutions (1)

Accepted Solutions (1)

konstantin_anikeev
Active Contributor
0 Kudos

Dear Kartik,

I'm afraid it is hardcoded Startdard.

Please check method: /SAPSRM/CL_CH_WD_MOFM_PERSON->/SAPSRM/IF_CLL_MAPPER~UPDATE

* form of address

    IF ls_cll_person-title_key IS INITIAL.

* validation error

      CALL METHOD mo_cll_message_handler->add_validation_error

        EXPORTING

          iv_msgno      = 019

          iv_msgid      = '/SAPSRM/CLL'

          ioe_error     = loe_cll_person

          iv_field_name = 'TITLE_KEY'.

      EXIT.

    ENDIF.

I suppose you need a modification to disable this check...

Best Regards

Konstantin

Answers (0)