Application Development 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: 

for description of VRGNG

Former Member
0 Kudos

Hi all,

i want to print the VRGNG, TXT from TJ01 . VRGNG is available in table TJ01.

but TXT is not available. So, which table i have refer for TXT of VRGNG.

Note: TXT is the description of VRGNG.

Thanks in Advance

Sri..

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

In table TJ01T you will get TXt field

Regards,

Anji

5 REPLIES 5

Former Member
0 Kudos

Hi,

In table TJ01T you will get TXt field

Regards,

Anji

Former Member
0 Kudos

Hi,

Use read_text function module for getting text.

and you can get texttable name by checking goto-->texttable in the top of the table.

Thanks,

Sarala.

Message was edited by:

Sarala

Simha_
Employee
Employee
0 Kudos

Hi,

Check this table <b>TJ01T</b>,

U have TXT field...

Cheers,

Simha.

Former Member
0 Kudos

Hi Krshna,

TJ01 - Business Transactions

TJ01T - Business Transaction Texts, get the required text depending on the language (SPRAS) U want from TJO1T using field "VRGNG" from TJ01.

Regards

Avi

Former Member
0 Kudos

Hi U can find text for the VRGNG field in TJ01T table.

U just pass the VRGNG and SPRAS to this table.

DATA:IT_TJ01 TYPE TABLE OF IT_TJ01 .

SELECT VRGNG TXT FROM TJ01T INTO IT_TJ01

WHERE VRGNG IN P_VRGNG

AND SPRAS EQ 'EN'.