‎2008 Dec 02 9:36 AM
I want to know about the following setting...
SE16 -->settings --> User Parameters --> check conversion exit (check box)
what is this? how it is useful?
‎2008 Dec 02 9:43 AM
Hi,
This option will come into picture while viewing the entries in the table.
While showing the results, it will execute the conversion routines.
eg for table MARA ( With Conversion exit option )
Matnr will appear like 000000000000011 ( only Nummeric MATNR )
With out Conversion exit, same MATNR will apper as 11
Hope this helps,
Regards,
Raj
‎2008 Dec 02 9:38 AM
Hello,
It will help u removing leading zeros.
Thank u
santhosh
Edited by: santhosh kumar on Dec 2, 2008 10:47 AM
‎2008 Dec 02 9:42 AM
hi
We use a conversion exit to define a jump to a conversion routine for a column of your output table. As the exit we specify the <conv> part of a function module called CONVERSION_EXIT_ <conv> _OUTPUT .
For example, you can use conversion exit ALPHA (see function module CONVERSION_EXIT_ALPHA_OUTPUT ) to suppress leading zeros of account numbers.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
EXPORTING
input = '00000123'
IMPORTING
OUTPUT = data
.
Dta will contain 123 as output .
hope this helps
regards
Aakash Banga
‎2008 Dec 02 9:43 AM
Hi,
This option will come into picture while viewing the entries in the table.
While showing the results, it will execute the conversion routines.
eg for table MARA ( With Conversion exit option )
Matnr will appear like 000000000000011 ( only Nummeric MATNR )
With out Conversion exit, same MATNR will apper as 11
Hope this helps,
Regards,
Raj
‎2008 Dec 02 9:53 AM
>
> eg for table MARA ( With Conversion exit option )
> Matnr will appear like 000000000000011 ( only Nummeric MATNR )
> With out Conversion exit, same MATNR will apper as 11
actually it will be the opposite:
with conversion exit: 11
without conversion exit: 000000000000011 (==> this is the format the data is stored in the table)
‎2008 Dec 02 9:46 AM