Application Development 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: 

ABAP read table - free key

yang_aiolos
Active Participant
410

can anyone tell me what's the sentense talking about? could you give me a demo?

2 REPLIES 2

Sandra_Rossi
Active Contributor

Sandra_Rossi
Active Contributor
321

Link: READ TABLE itab - WITH KEY keyname COMPONENTS ...

This sentence:

- If the primary table key is specified in keyname using its name primary_key, the behavior is the same as in the variant without key specifications.

just means that

- READ TABLE itab WITH KEY primary_key COMPONENTS xxxxxxxxxxx

works the same way as

- READ TABLE itab WITH KEY xxxxxxxxxxx