‎2008 Nov 08 2:24 PM
Hi,
I have One field in a table with name PARTNER with data type CHAR and length 10. This is a non primary key field.And the values are like numbers.
Eg: 00700089
00700098 etc
When i enter data in se11 selection screen with 00700089 it is not displaying any data. Even i try with adding zeros and deleting the zeros still have problem. But when i enter value * 700089 * in selection screen of se11 it is showing the value.
This problem also facing in the report selection screen with the same field. Could any body help me in this Regard?
Thanks in Advance.
‎2008 Nov 08 2:40 PM
Hi Sai,
Chekc the database table might be Conversion Exit iare used in the Database Table.
Thanks,
Chidanand
‎2008 Nov 08 2:40 PM
Hi Sai,
Chekc the database table might be Conversion Exit iare used in the Database Table.
Thanks,
Chidanand
‎2008 Nov 08 2:46 PM
Hi Chauhan,
They have used ALPHA conv. routine for PARTNER field.
‎2008 Nov 08 4:37 PM
Hi,
Use this Conversion routine when ever you pass the value to fetch from database.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = p_partner
IMPORTING
output = p_partner.
SELECT ....
Regards
Bala Krishna