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 KNMT table custom field

santosh_kumarm
Participant
0 Likes
2,692

Dear All,

There is a custom field ZZSKU in the table KNMT table.   in se16 if i enter correct value in ZZSKU field.  it does not return any rows.

Request you to kindly help .

Thanks & Regards

Santosh


1 ACCEPTED SOLUTION
Read only

JL23
Active Contributor
0 Likes
2,494

Can you share some evidence?

e.g. a screenshot from SE16 where the field is visible with value 

then a screenshot from your entry in the selection screen.

Is it a num- field or a char- field?

Can you share some evidence?

e.g. a screenshot from SE16 where the field is visible with value 

then a screenshot from your entry in the selection screen.

Is it a num- field or a char- field?

5 REPLIES 5
Read only

JL23
Active Contributor
0 Likes
2,495

Can you share some evidence?

e.g. a screenshot from SE16 where the field is visible with value 

then a screenshot from your entry in the selection screen.

Is it a num- field or a char- field?

Read only

0 Likes
2,494

Hi Jurgen

the value 1234567 exists in the KNMT table

Now without value for the ZZSKU field.

Hope this might be useful.

Thanks & Regards

Santosh

Read only

JL23
Active Contributor
0 Likes
2,494

go again into SE16

select from menu Settings > user parameter

remove the flag in the box " Check conversion exits"

then do your steps again and see how this 12345 is shown in that ZZSKU field

Read only

0 Likes
2,494

Thank you for the useful information.  it was helpful.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,494

How was this field filled in database, does it carry a conversion-exit, and did the loader program respect this conversion-exit.

Often some (young, distracted or in a hurry) programmers forget to convert data to internal format and use some open-sql statement to update the database, genrating some wrong data which cannot be selected. For example the field is a CHAR field of length 10 and the program put value '1234     ' (trailing spaces) in the field, correct programs (like SE16/SE16N) will convert a selection of 1234 to '0000001234' (leading zeroes) so '1234      ' will not be selected...

Regards,

Raymond