‎2008 Jun 21 7:39 PM
Hello,
I have custom table as follows:
KEY-SOLE
K1 - A
K1 - B
K2 - A
K2 - C
K3 - C
K4 - D
Now I want to write a query which will select all unique SAP values in internal
table such that output will be:
A
B
C
D
Regards,
Rajesh.
‎2008 Jun 21 8:41 PM
Hi Rajesh,
hmm.
If it is a database table, you need to SELECT DISTINCT ...
If it is internal table,
you may INSERT all records into an other internal table with UNIQUE KEY <sole?>
Regards,
Clemens
‎2008 Jun 21 8:41 PM
Hi Rajesh,
hmm.
If it is a database table, you need to SELECT DISTINCT ...
If it is internal table,
you may INSERT all records into an other internal table with UNIQUE KEY <sole?>
Regards,
Clemens