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

How to select data from Maintance View in Program

Former Member
0 Likes
964

Dear All ,

How to select data from Maintance View V_T052 in abap Program.

Regards,

Archana

Dear All ,

How to select data from Maintance View V_T052 in abap Program.

Regards,

Archana

7 REPLIES 7
Read only

Former Member
0 Likes
902

TABLES: t179, t179t.

DATA: v_t179_int TYPE TABLE OF v_t179.

SELECT * FROM t179

JOIN t179t ON

t179prodh = t179tprodh

INTO CORRESPONDING FIELDS OF TABLE v_t179_int.

Reward points...

Read only

RaymondGiuseppi
Active Contributor
0 Likes
902

Use fonction module VIEWPROC_V_T052. (You cannot use select on maintenance view)

Regards

Read only

0 Likes
902

Hi Raymond ,

You are right , we can use SELECT with maintance view.

can you tell me how to use this function module VIEWPROC_V_T052.

Regards,

Archana.

Read only

0 Likes
902

If found one "old" program i wrote some time ago, it use VIEW_GET_DATA which is easier to use than VIEWPROC function modules.

Regards

Read only

sreelatha_gullapalli
Active Participant
0 Likes
902

hi

check the following link

http://allaboutsap.blogspot.com/2007/04/table-maintenance-in-sap-step-by-step.html

hope it will help you

Regards,

Sreelatha gullapalli

Read only

0 Likes
902

can anyone please help in this .

its urgent.

Regards,

Archana

Read only

sreelatha_gullapalli
Active Participant
0 Likes
902

hi

check the following thread

https://www.sdn.sap.com/irj/sdn/forums

How to get data from maintaince view into internal table

i think it will help you

regards,

sreelatha gullapalli