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: 

System Variant - Where can I find the description ?!

Former Member
0 Kudos

Hi all,

I go into IW59, put in values and save it as a System Variant, with CUS& in the begining. This makes an automatic transport, and is cross-client variant.

I look to find the description of the variant & can't find it in VARI, VARIT, VARIS, VARID and so on.

Any idea in which table I can find the description ?!

Thanks, Amos.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Amos,

can u check in the client '000' in VARI. To my knowledge System variants are always stored in client "000".

as i am not on the system, i am not sure...

if helpful pls reward points.

kiran

3 REPLIES 3

Former Member
0 Kudos

Amos,

can u check in the client '000' in VARI. To my knowledge System variants are always stored in client "000".

as i am not on the system, i am not sure...

if helpful pls reward points.

kiran

Former Member
0 Kudos

Hi

The tables are right (VARID and VARIT) but probably the client is wrong: you should do a query on client 000.

DATA: T_VARID LIKE STANDARD TABLE OF VARID WITH HEADER LINE,
      T_VARIT LIKE STANDARD TABLE OF VARIT WITH HEADER LINE.

SELECT * INTO T_VARID
    FROM VARID CLIENT SPECIFIED
       WHERE  MANDT = '000'
         AND  REPORT = PROGRAM
         AND   ( VARIANT LIKE 'SAP&%'
          OR     VARIANT LIKE 'CUS&%' ).
  APPEND T_VARID.
ENDSELECT.
IF SY-SUBRC = 0.
  LOOP AT T_VARID.
   SELECT SINGLE * INTO T_VARIT 
      FROM VARIT client specified
         WHERE mandt   = '000'           AND 
               LANGU   = SY-LANGU        AND
               REPORT  = T_VARID-PROGRAM AND
               VARIANT = T_VARID-VARIANT.
   IF SY-SUBRC = 0.
     APPENT T_VARIT.
   ENDIF.
  ENDLOOP.
ENDIF.

Max

Former Member
0 Kudos

Thanks a lot guys, you won 10 points each !!!