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

ABAP Query using SQVI

Former Member
0 Likes
674

I've created a query to identify approver from linking several tables. The result data show several duplicate record because I only want to retrieve the User ID. Is there a way to select only Unique Record?

Regards,

Thomas

I've created a query to identify approver from linking several tables. The result data show several duplicate record because I only want to retrieve the User ID. Is there a way to select only Unique Record?

Regards,

Thomas

2 REPLIES 2
Read only

Former Member
0 Likes
515

hi,

try a SELECT SINGLE [FIELDS/*].... or a SELECT * INTO ITAB FROM XTABLE UP TO 1 ROWS.

Regards

Read only

Former Member
0 Likes
515

You might be able to write additional code in the infoset Component of SQL Query, Of course nothing beats the suggestion of using a select single or select up to 1 rows