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

issue on a maintenance view

Former Member
0 Likes
1,563

I want to fetch the data from a maintenance view: V_001_B.

I used the select statement to retrieve the data.But, I got a message saying that "it's not a table or a database view or a projection view".

Any body please help me, how to retrieve data from a maintenance view.

9 REPLIES 9
Read only

Former Member
0 Likes
1,412

just refer rich answer.

Read only

0 Likes
1,412

How can I know what is the base table for the view V_001_B?

Read only

0 Likes
1,412

Hello,

You can just select from the table you used for generating the maintainence view.

Manoj

Read only

0 Likes
1,412

HI

use the following tables...

T001

T004

T009

T004T

T009T

T880

T014

T014T

regards,

balaji

Read only

0 Likes
1,412

We need a field OPVAR which is present in the table T001.So, can't we use only T001 table, instead of using the view V_001_B or instead of making use of all the tables in the view.

Read only

0 Likes
1,412

depend upon condition.

just 1st check table t001 have the same value as it have the value in view using se11.if it is same take it only fro t001

Read only

0 Likes
1,412

these r the 3 tables which r connected to ur view - T882,T001,T001Z

if u want data based on some join on these 3 tables then put a join in ur code on these 3 tables and then fetch ur record..if u want datra specific to one table only then u can directly select tht frm a single table..

amit

Read only

Former Member
0 Likes
1,412

use tables T882,T001,T001Z to read ur concerned data...instead of using the view..

reward if helpfull

amit

Read only

0 Likes
1,412

go to se11- put ur view name there>dislay-->check tab stript table/condition join

u get all table associate with perticular view.