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

Problem with Char10 in Data Dictionary

Former Member
0 Likes
606

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
554

Hi Sai,

Chekc the database table might be Conversion Exit iare used in the Database Table.

Thanks,

Chidanand

3 REPLIES 3
Read only

Former Member
0 Likes
555

Hi Sai,

Chekc the database table might be Conversion Exit iare used in the Database Table.

Thanks,

Chidanand

Read only

0 Likes
554

Hi Chauhan,

They have used ALPHA conv. routine for PARTNER field.

Read only

0 Likes
554

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