Application Development and Automation 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: 
Read only

different value in debug mode?

Former Member
0 Likes
608

Hi,

m using ATINN field of CABNT, in debugg mode it is showing different value than in COXE transaction, y it is so?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
560

there are conversion exits available for this field, CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT, use them.

amit

3 REPLIES 3
Read only

Former Member
0 Likes
561

there are conversion exits available for this field, CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT, use them.

amit

Read only

0 Likes
560

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

Read only

Former Member
0 Likes
560

use FMs CONVERSION_EXIT_ATINN_INPUT and CONVERSION_EXIT_ATINN_OUTPUT