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

Regarding TVARVC Table

Former Member
0 Likes
6,860

Hi all,

I am using the entry of TVARVC Table in my program.Can anyone tell me the standard Function module used to read these entry from the TVARVC so that i dont have to write a select query..

Regards,

Arun

Hi all,

I am using the entry of TVARVC Table in my program.Can anyone tell me the standard Function module used to read these entry from the TVARVC so that i dont have to write a select query..

Regards,

Arun

4 REPLIES 4
Read only

matt
Active Contributor
0 Likes
2,542

As far as I am aware, there is NO standard function module to read this table.

matt

Read only

0 Likes
2,542

Hi,

Have you tried with VARI_USER_VARS_GET? There are some more standard function modules (VARI_USER_VARS_*) to work with values saved in this table.

Regards,

Read only

Former Member
0 Likes
2,542

Hi Arun,

If you want read entry from TVARVC table, you can get like this

without using FM.


 SELECT SINGLE low INTO g_mno
                               FROM tvarvc
                               WHERE name = 'zxxx'
                                 AND type = 'P'
                                 AND numb = '0000'.

If not useful, ignore it.

Regards,

Vishvesh

<REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>

Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 4:34 PM

Read only

Former Member
0 Likes
2,542

thanks..