2008 Feb 18 1:36 PM
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
2008 Feb 18 1:40 PM
As far as I am aware, there is NO standard function module to read this table.
matt
2008 Jun 03 11:56 AM
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,
2008 Jun 03 12:15 PM
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
2009 Jan 08 9:21 PM