cancel
Showing results for 
Search instead for 
Did you mean: 

conversion exit.

Former Member
0 Kudos

Hi All,

Please provide me the conversion exit to validate the input and output has exactly 8 characters.

Thanx in advance,

Amruta.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Nothing to do with the length. Depend upon the field length the following FM will add the zeros .

ONVERSION_EXIT_ALPHA_INPUT

REWARD POINTS IF USEFUL.

Regards,

Nageswar

Former Member
0 Kudos

types:begin of tw_vbrk,

vbeln type vbeln,

end of tw_vbrk,

tt_vbrk type standard table of tw_vbrk.

data: dat(10) type c,

it_vbrk type tt_vbrk with header line.

parameters:pa_vbe type vbrk-vbeln.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'

EXPORTING

INPUT = pa_vbe

IMPORTING

OUTPUT = dat

.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'

EXPORTING

INPUT = dat

IMPORTING

OUTPUT = adv

.

write:/ 'adv is', adv.

If helpful give me the points

Former Member
0 Kudos

Hi ,

Try Conversion_exit_alpha_output or Conversion_exit_alpha_input

Regards

Neetesh