‎2008 May 07 4:13 PM
Hi,
Is there Function Module that converts Alphbet into number .. for example..
If we pass A , it should return 1
B = 2, C = 3.....Z= 26.
Waiting to hear,
Thanks
Kisu
Edited by: kisu kr on May 7, 2008 11:13 AM
‎2008 May 07 4:17 PM
Write your own.
Case v_alpha.
when 'A'.
v_num = 1.
when 'B'.
v_num = 2.
when 'C'.
v_num = 3.
.
.
.
.
endcase.