‎2007 Feb 09 4:20 AM
Hi,
m using ATINN field of CABNT, in debugg mode it is showing different value than in COXE transaction, y it is so?
‎2007 Feb 09 4:22 AM
there are conversion exits available for this field, CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT, use them.
amit
‎2007 Feb 09 4:22 AM
there are conversion exits available for this field, CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT, use them.
amit
‎2007 Feb 09 4:26 AM
The problem might be with the format of ATINN field. Try using..
ex---
DATA: atinn LIKE ausp-atinn.
CONVERSION_EXIT_ATTIN_INPUT
EXPORTING
input = 'C02000' "used for material category
IMPORTING
output = atinn.
and then..
select atwrt "Characteristic value
into table lit_ausp from ausp
for all entries in lit_inob1
where objek = lit_inob1-objek
and atinn = atinn
and klart = 'Z01'
and atwrt ne '00001'.
kishan negi
‎2007 Feb 09 4:28 AM
use FMs CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT