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 in database view

former_member189410
Participant
0 Likes
1,018

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
928

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

7 REPLIES 7
Read only

former_member189410
Participant
0 Likes
928

its urgent plz let me know

Read only

Former Member
0 Likes
929

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

Read only

0 Likes
928

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

Read only

0 Likes
928

thnx,

i want to know dis only .

is this warning matters

Read only

0 Likes
928

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.

Read only

0 Likes
928

thnx blag

Read only

Former Member
0 Likes
928

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