2010 Aug 25 10:29 PM
I understand this is probably going to be the stupidest question ever posted here. But I wanted to know how to manually add values to an internal table without doing a select statement.
TYPES: BEGIN OF ty_ext,
param(32) type c,
row type i,
field(30) type c,
value(255) type c,
type(4) type c,
length(6) type n,
END OF ty_ext,
DATA: it_ext TYPE TABLE OF ty_ext.
I just want to fill it_ext with data without doing select, I have the data stored in variables.
Thanks,
Risad
2010 Aug 25 10:36 PM
2010 Aug 25 10:37 PM
TYPES: BEGIN OF ty_ext,
param(32) type c,
row type i,
field(30) type c,
value(255) type c,
type(4) type c,
length(6) type n,
END OF ty_ext,
DATA: it_ext TYPE TABLE OF ty_ext,
wa_ext type ty_ext.
wa_ext-param = '123'.
..
..
append wa_ext to it_text.
2010 Aug 25 10:42 PM
Moderator message - Not stupid, but extremely basic. Please search and use the help files before posting here. Thread locked. Rob