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

characterstic value description

Former Member
0 Likes
1,368

Hi,

I would like to ask regarding characterstic value.

Actually I have internal characterstic(CABN-ATINN). Now I am getting the characterstic value (AUSP-ATWRT).

Now I wanted to get the characterstic value description.

For this we will use table CAWNT. But I am not getting proper data.

Could anybody will suggest me other database table to get the characterstic value description??

Please reply me asap.

Hi,

I would like to ask regarding characterstic value.

Actually I have internal characterstic(CABN-ATINN). Now I am getting the characterstic value (AUSP-ATWRT).

Now I wanted to get the characterstic value description.

For this we will use table CAWNT. But I am not getting proper data.

Could anybody will suggest me other database table to get the characterstic value description??

Please reply me asap.

6 REPLIES 6
Read only

Former Member
0 Likes
1,244

Hello Neha,

Class Decription is available in the table SWOR.

Check this code:

    SELECT CLINT KSCHL
      FROM SWOR
      INTO CORRESPONDING FIELDS OF TABLE G_T_CLASSDESC
       FOR ALL ENTRIES IN G_T_OBJECTS
     WHERE CLINT EQ G_T_OBJECTS-CLINT AND
           KLPOS EQ '01'              AND
           SPRAS EQ SY-LANGU.

Vasanth

Read only

Former Member
0 Likes
1,244

make use of conversion exits CONVERSION_EXIT_ATINN_INPUT or <b>CONVERSION_EXIT_ATINN_OUTPUT</b> to get the correct value of char value

e.g

DATA: L_ATINN LIKE CABN-ATINN.

CONSTANTS: C_ATWRT_16015 TYPE ATWRT VALUE '16015',

C_ATNAM_C16000 TYPE ATNAM VALUE 'C16000' .

CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'

EXPORTING

INPUT = C_ATNAM_C16000

IMPORTING

OUTPUT = L_ATINN .

READ TABLE VIT_ALLAUSP WITH KEY ATINN = L_ATINN ATWRT = C_ATWRT_16015.

*reward if useful.

Read only

0 Likes
1,244

THAT CONVERSION EXITS U CAN FIND FROM THE DOMAIN 'ATINN'...

double click on convers. routine 'ATINN' ...

Read only

0 Likes
1,244

Hi,

Actually I am looking for characteristic value description(ATWTB).

I have already ATINN field is there.

Could you please tell me the dbtable name other than CAWNT.

Please reply me asap.

Read only

0 Likes
1,244

Hi Neha,

Why do you think that the description from CAWNT is wrong?

REgards,

Ravi

Read only

Former Member
0 Likes
1,244

Hi,

Just check in Table CABNT and T241B for the Descriptions.

Regards,

Anji