cancel
Showing results for 
Search instead for 
Did you mean: 

Remove * sign from fields

Former Member
0 Kudos

Hi Experts,

I am working on Customer Master (BP) scenario  where the few fields during creation of  customer master appears mandatory (field name suffixed by * )

As per requirement we don't want the fields to be mandatory and *sign should not appear.

We changed SPRO configuration for the field .Also in MDG Data model these are not marked required.Also we checked Genil to see if it is marked mandatory there but it is not.

We want to remove the * sign Please help where should I search .One possibility is Feeder class but I also want know which method should I check for the * sign in feeder class

Fields are Street and City.

Regards,

Neethu Joy

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member603451
Participant
0 Kudos

Hello Neethu did you check configurations for customer mandatory fields in the backend? Many a times fields marked as required becomes mandatory. so before you fix/customize anything please check the configurations. that may help you get rid of such fields.

Thanks

Rahul

varun_jain3
Active Participant
0 Kudos

Neethu,

Feeder class method Get_data .

You can change via changing  ct_field_usage .

Read Table  ct_field_usage ASSIGNING ls_field_usage where NAME = Field name .

IF ls_field_usage is assign.

     ls_field_usage-MANDATORY = abap_false.

ev_field_usage_changed = abap_true.

ENDIF.

would solve you issue.

Alternate you also set at Method GET_FIELD_UI_PROP 

Regards,

Varun