cancel
Showing results for 
Search instead for 
Did you mean: 

Changing Obligatory Fields default info message when not entered

Former Member
0 Kudos

Hi Guys,

how can I change the default message "make an entry on all required fields" for an obligatory fields? Thanks!

regards,

mike

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Try the following..

Remove the OBLIGATORY addition..

Then in AT SELECTION-SCREEN event check if the field is blank and then give your own message.

Ex..

PARAMETERS: P_MATNR TYPE MATNR.

AT SELECTION-SCREEN.

IF P_MATNR IS INITIAL.

MESSAGE E208(00) WITH 'Please enter the material number'.

ENDIF.

Thanks

Naren

Former Member
0 Kudos

> Hi,

>

> Try the following..

>

> Remove the OBLIGATORY addition..

>

> Then in AT SELECTION-SCREEN event check if the field

> is blank and then give your own message.

>

> Ex..

>

> PARAMETERS: P_MATNR TYPE MATNR.

>

> AT SELECTION-SCREEN.

>

> IF P_MATNR IS INITIAL.

>

> MESSAGE E208(00) WITH 'Please enter the material

> number'.

>

> ENDIF.

>

>

> Thanks

> Naren

Hi Narendran,

I've tried this option but they want to mark the parameter as obligatory to see the check icon on the selection screen which shows that the field is an obligatory.

Is there any other way for this? thanks!

Regards,

Mike

Former Member
0 Kudos

Hi Mike,

Thats why I said I don't think there is any other option with the obligatory symbol.

Regards,

Atish

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

yes..Try that option..

Thanks

Naren

Former Member
0 Kudos

Hi,

There is no other way...

But you can group the mandatory fields in a block and have the title MANDATORY fields..

This way you will let the user know which are the mandatory fields..

Thanks

naren

Former Member
0 Kudos

hi Narendran,

I see... anyway I will try to suggest that... thanks!

Regards,

Mike

Former Member
0 Kudos

Hi Mike,

It is standard SAP message and I don't think you can change the same.

Regards,

Atish