2007 Feb 21 9:46 AM
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.
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
2007 Feb 21 9:50 AM
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
2007 Feb 21 9:55 AM
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.
2007 Feb 21 10:02 AM
THAT CONVERSION EXITS U CAN FIND FROM THE DOMAIN 'ATINN'...
double click on convers. routine 'ATINN' ...
2007 Feb 21 10:42 AM
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.
2007 Feb 21 10:45 AM
Hi Neha,
Why do you think that the description from CAWNT is wrong?
REgards,
Ravi
2007 Feb 21 9:55 AM
Hi,
Just check in Table CABNT and T241B for the Descriptions.
Regards,
Anji
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |