on 2006 Apr 04 9:32 AM
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
Request clarification before answering.
Hi Chris,
you can use transaction CT04 to look up the description of the characteristic.
Regards,
Andreas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
User | Count |
---|---|
95 | |
39 | |
8 | |
6 | |
3 | |
3 | |
3 | |
3 | |
2 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.