‎2007 Mar 29 5:22 PM
wen i created a databaseview for lips and ekpo table
giving following warning does it matter data is not coming, plz let me know the solution
Type conflict in join LIPS-VGPOS = EKPO-EBELP
i gave the following join conditions .
ekpo-ebeln = lips-vgbel .
ekpo-ebelp = lips-vgpos .
fields of view.
ebeln,
ebelp,
lfig(quantity)
verm(unit)
folllowing warning ocured and no data is displayed plz let me know the reason and how i can correct it.
Type conflict in join LIPS-VGPOS = EKPO-EBELP
thnx.
‎2007 Mar 29 5:25 PM
VGPOS is 6 char long and EBELP is 5 characters long.They must be identical in all respects.
But your view join makes no sense to me at all.
Regards,
Ravi
‎2007 Mar 29 5:24 PM
‎2007 Mar 29 5:25 PM
VGPOS is 6 char long and EBELP is 5 characters long.They must be identical in all respects.
But your view join makes no sense to me at all.
Regards,
Ravi
‎2007 Mar 29 5:27 PM
thnx ravi,
dat i have checked wen i put the values from one table to other it displays the result
but view display no data
but its as per requirement ,
let me know dat due to this warning data is not coming
thnx
‎2007 Mar 29 5:30 PM
‎2007 Mar 29 8:33 PM
Of course it matters....As fellow SDN'ers tell you...Fields must have the same lenght in a Join condition....Your not going to be able to make it work....Tried to find another table to join the 3 of them and fix the problem...
Greetings,
Blag.
‎2007 Mar 30 5:38 AM
‎2007 Mar 29 5:26 PM
Hi,
You are getting error because, <b>EKPO-EBELP is of data type <i><u>NUMC with length 5</u></i></b> WHILE <b>LIPS-VGPOS is of data type <i><u>NUMC with length 6</u></i></b>.
In join condition the data type of both the fields shold be same.
Regards,
RS