cancel
Showing results for 
Search instead for 
Did you mean: 

Description of ATNAM field in CABN table

Former Member
0 Kudos
5,076

Hello experts,

How can I know the description of ATNAM field in CABN table? I havent tried this,

Example:

If the value of ATNAM is 'IH_VC_FOD_M', how can I know that this is "Roll outside diameter"

Thanks and Regards,

Chris

View Entire Topic
Former Member
0 Kudos

Hi Chris,

you can use transaction CT04 to look up the description of the characteristic.

Regards,

Andreas

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Check the sample code.



report zrich_0001.

data: begin of xcab,
      atnam  type cabn-atnam,
      atinn  type cabn-atinn,
      atbez  type cabnt-atbez,
      end of xcab.

parameters: p_atnam type cabn-atnam.


select single cabn~atnam cabn~atinn cabnt~atbez
       into corresponding fields of xcab
          from cabn
             inner join cabnt
                on cabn~atinn = cabnt~atinn
                    where cabn~atnam = p_atnam
                      and cabnt~spras = sy-langu.




write:/ xcab-atnam, xcab-atbez.

Regards,

Rich Heilman