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

material number suffix

Former Member
0 Likes
584

hi gurus ,

i have a join which fetches material number but i also want those material numbers with suffixes attached to it e.g thersa

material 100678 ,100678T ,100678UYT ,

my select query should return all three material

so what should be the where condition for my join

hi gurus ,

i have a join which fetches material number but i also want those material numbers with suffixes attached to it e.g thersa

material 100678 ,100678T ,100678UYT ,

my select query should return all three material

so what should be the where condition for my join

1 REPLY 1
Read only

Former Member
0 Likes
441

You can use LIKE option in where condition.

where matnr like '100678%'.