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

Report

Former Member
0 Likes
388

Hi Friends,

I am working on reports, here I am passing the bin location to get the related characteristic value and name in the same way I want to pass the characteristic value from AUSP table field ATINN to get the internal characteristic value for this how can I proceed further. can any one give me the solution. How can I use this function module to get that value.

CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'

EXPORTING

input = 'Z_BIN_LOCATION'

IMPORTING

output = v_atin.

Thanks in advance,

Sasi.

3 REPLIES 3
Read only

Former Member
0 Likes
360

Hi Sasi,

Remove the colons for the input parameter and then it will send you the value in the Z_BIN_LOCATION and declare v_atin as DATA V_ATIN(10).

CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'

EXPORTING

<b>input = Z_BIN_LOCATION</b>

IMPORTING

output = v_atin.

Thanks,

Vinay

Read only

Former Member
0 Likes
360

Remove the 'Z_BIN_LOCATION' and put Z_BIN_LOCATION

Sri

Read only

Former Member
0 Likes
360

Thanks for your information