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: 

Reading of table KSML

Former Member
0 Kudos

Hi,

I want to read "IMERK" cloumn of KSML table. while doing so I am getting a numeric number however i want the description attached to that numeric number.

Please let me know if we have any function module to do so or any other way to read that field.

Thanks in advance.

4 REPLIES 4

sridhar_k1
Active Contributor
0 Kudos

Get Characteristic Name ATNAM from table CABN using IMERK from KSML.

REgards

Sridhar

0 Kudos

check the view <b>M_CLASA</b>.

regards

Prabhu

former_member181962
Active Contributor
0 Kudos

go to cabn table and get atnam field.

select atinn

atnam

from cabn

into table it_cabn

where atinn = ksml-imerk.

Regards,

ravi

dkle
Participant
0 Kudos

The domain of data element IMERK has a conversion routine.

If you have got the numeric number, use the conversion exit/function module CONV_EXIT_ATINN_OUTPUT to extract it to the description/external presentation form.

Fastest way:

WRITE imerk TO imerk_output USING EDIT MASK '==ATINN'.