Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

fields-symbol

Former Member
0 Likes
529

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

3 REPLIES 3
Read only

rodrigo_paisante3
Active Contributor
0 Likes
491

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.

Read only

Former Member
0 Likes
491

Hi

You will have to include LMIGOKE1.

assign ty_t_goserial to <table>.

Regards

Navneet

Read only

Former Member
0 Likes
491

This message was moderated.