‎2007 Jun 21 4:02 PM
Hi
How can i use the fields-symbols in Abap Object (class)?: The program <b>SAPLMIGO</b> have a table <b>oref_detail->t_goserial</b>. I would get this table in my program (not object) by using field-symbol
What can i do?
it's urgent
thanks a lot
‎2007 Jun 21 6:35 PM
Hi,
You can try this
field-symbols: <tab> type table.
create object o ...
assign o->t_values to <tab>.
You need to create the object.
‎2007 Jun 21 6:54 PM
Hi
You will have to include LMIGOKE1.
assign ty_t_goserial to <table>.
Regards
Navneet
‎2011 Feb 08 9:13 PM