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: 

TVARVC Table - How to find out associated Variant

Former Member
0 Kudos

Hello,

How we can find out which Report and Variant the TVARVC Name is associated with ? For example, there are 5 records in TVARVC with Name 'ABC' and LOW Values as 1,2,3,4 & 5.

So how we can determine which Program's Varinat is having value as 'ABC' ?

Thanks in advance,

Jigar.

7 REPLIES 7

Former Member

HI,

Check the tables:

VARIDESC

VARIDESCCI

Regards

former_member182387
Active Participant

Hi,

From table VARI, you can find the relation between program name and variant name.

ThomasZloch
Active Contributor
0 Kudos

I don't think there is a simple where-used-list for TVARVC variable name, as it is stored compressed together with the other selection values in table VARI. You could loop through the variants in VARI (or VARID) and read the variables with function module RS_VARIANT_VARIABLES, building a list that way.

Thomas

0 Kudos

So, in this vain, See:

https://scn.sap.com/docs/DOC-46936

Neal

kiran_k8
Active Contributor
0 Kudos

Jigar,

Usually we create TVARVC entries with the respective Prog names.If TVARVC is maintained just with the variant names then you can follow the suggested options in the earlier replies.If possible,better maintain these entries again with Program name so that later they can be related with easily.

K.Kiran.

meenakshi_raina
Advisor
Advisor
0 Kudos

Hi Jigar,

You can find the where-used list of any variable using report  -   RS_ABAP_SOURCE_SCAN.

Thanks

Meenakshi

0 Kudos

How to find the tables/transformations/programs which are using the variable in SAP BI-TVARVC table ? Please advise,.

Thanks