cancel
Showing results for 
Search instead for 
Did you mean: 

Change the default value of a radio button in SRM

Former Member
0 Kudos

Hi there,

When you create a limit item in SRM the 'Follow-Up Actions' field radio buttons default to 'Confirmation and Invoice' but should default to 'Invoice only'.

Does anyone know how to change the default value to 'Invoice only'?

Thank you very much in advance.

Jens

Message was edited by:

Jens Kramer

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello, in LBBP_SC_UI_ITSF40 ( form init_limit in SRM server 5.0, the include may be different in other release ) there is the code that sets the default for limit items in a shopping cart

FORM limit_init changing is_limit_item TYPE t_sc_ui_scr_limit.

CHECK: is_limit_item IS INITIAL.

*.. set default value for radio 'invoice'-> NO GR.

*{ REPLACE 1

*\ is_limit_item-conf_inv = gc_no.

*\ is_limit_item-only_inv = gc_yes.

*} REPLACE

is_limit_item-conf_inv = gc_yes.

is_limit_item-only_inv = gc_no.

Regards, Luciano.

Former Member
0 Kudos

Hi Luciano,

Thank you very much for your help.

Ciao

Jens

Answers (0)