Application Development 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: 

How to get data from maintaince view into internal table

Former Member
0 Kudos

Hi,

I want to get the all data from v_t179 (maintanence view) into intrenal table.

if i write select stmt , it is giving error.

I want all data into internal table.

regards,

Ajay

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Try using view H_T179 instead.

Sorry - this won't work either.

Rob

Edited by: Rob Burbank on Jan 7, 2008 2:18 PM

3 REPLIES 3

Former Member
0 Kudos

Try using view H_T179 instead.

Sorry - this won't work either.

Rob

Edited by: Rob Burbank on Jan 7, 2008 2:18 PM

0 Kudos

Hi Rob,

I need STUFE field also.

H_T179 in this only 2 fiedls are there.

can i join what ever tables(t179,t179t) are used in v_t179?

regards,

AJay

0 Kudos

I think this is what you want:

TABLES: t179, t179t.

DATA: v_t179_int TYPE TABLE OF v_t179.

SELECT * FROM t179
  JOIN t179t ON
    t179~prodh = t179t~prodh
  INTO CORRESPONDING FIELDS OF TABLE v_t179_int.

Rob