‎2007 May 04 3:55 PM
HI,
how should I write the code when I want a field to be entered, if not entered then a constant field has to be filled in automatically?
thanks!
‎2007 May 04 3:57 PM
report ychatest.
parameters : p_matnr like mara-matnr default '1000000'.
default value will be given , if u want u can change that
‎2007 May 04 3:58 PM
Hi Raj,
declara that field like this :
Parameters : d_matnr like mara-mater value '000000000000001'.
Reward points if helpful.
Regards,
Hemant
‎2007 May 04 3:59 PM
Hi,'
if u r using parameters then their is addition for that : default ....
and if u r using select-options then the same applies to it.
Reward points if useful..
Regards
Nilesh
‎2007 May 04 4:00 PM
Hi!
Required:
Parameters : p_matnr like mara-matnr OBLIGATORY.
Required with default value:
Parameters : p_matnr like mara-matnr DEFAULT '1001' OBLIGATORY.
Regards
Tamá
‎2007 May 04 4:04 PM
Hi Raj,
declara that field like this :
Parameters : d_matnr like mara-mater default '000000000000001'.
if user donot enter any value .default value will be taken into consideration.
Reward points if helpful.
Regards,
Hemant