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

conversion exit - - settings

Former Member
0 Likes
3,203

I want to know about the following setting...

SE16 -->settings --> User Parameters --> check conversion exit (check box)

what is this? how it is useful?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,502

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

5 REPLIES 5
Read only

Former Member
0 Likes
1,502

Hello,

It will help u removing leading zeros.

Thank u

santhosh

Edited by: santhosh kumar on Dec 2, 2008 10:47 AM

Read only

Former Member
0 Likes
1,502

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

Read only

Former Member
0 Likes
1,503

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

Read only

0 Likes
1,502

>

> 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)

Read only

Former Member
0 Likes
1,502

Hi

Refer This Link

Ranga