‎2007 Aug 29 4:03 PM
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.
‎2007 Aug 29 4:07 PM
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
‎2007 Aug 29 4:09 PM
‎2007 Sep 06 4:38 AM