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

Problem while retrving data from a view

Former Member
0 Likes
1,053

Hi Friends

i have a problem while retriving data from a view <b>v_t685a</b>.

the error message is :""" "V_T685A" is not defined in the ABAP Dictionary as a table, projection view or database view."""

i wrote : select single VTEXT1 from V_T685A into w_cst_jin1 where

KSCHL = 'JIN1' and

KAPPL = 'V'.

how to retrive the data.

waiting for quick response

Regards

Mukesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
693

Hi Mukesh,

You can't retrieve data from this view as it is a maintainance view.

regards,

Atish

4 REPLIES 4
Read only

Former Member
0 Likes
693

Hi

This is a Maintenance View, not a Database View

SO can't fetch data using select statement.

You can use the Table <b>T685</b> directly to fetch the condition Types data straight away instead of the view. write the same select for this table and use.

Regards

Anji

Message was edited by:

Anji Reddy Vangala

Read only

Former Member
0 Likes
694

Hi Mukesh,

You can't retrieve data from this view as it is a maintainance view.

regards,

Atish

Read only

former_member404244
Active Contributor
0 Likes
693

Hi,

u can use table t685a and t685 ...kindly retirieve it by using these tables.

Rewrad if helpful.

Reagrds,

nagaraj

Read only

Former Member
0 Likes
693

Thanks,, My Query is solved