‎2007 Oct 13 7:51 AM
how to pass a default value for an internal table field while declaration pls help me
‎2007 Oct 13 7:52 AM
Hi,
data : temp(20) type c <b>value 'ABCDEF'</b>.
When Declaration of Work are also we give like,
Data : Begin of Wa,
Name(20) value 'SEN',
age type I value '25',
End of wa,
Itab like table of wa.
THANKS,
REWARD IF HELPFUL.
‎2007 Oct 13 7:52 AM
Hi,
data : temp(20) type c <b>value 'ABCDEF'</b>.
When Declaration of Work are also we give like,
Data : Begin of Wa,
Name(20) value 'SEN',
age type I value '25',
End of wa,
Itab like table of wa.
THANKS,
REWARD IF HELPFUL.
‎2007 Oct 13 7:56 AM
you can do like this
data : begin of itab occurs 0,
matnr like mara-matnr value '1001',
mtart like mara-mtart,
end of itab.
regards
shiba dutta