Multiple choice technology programming languages

Data: itab type table of but000. (BP number is a primary key)

  1. In the itab you can store more than one same BP number

  2. The internal table also treats the primary key in the same way.

  3. All the above

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In ABAP, a standard internal table declared as 'type table of' does NOT enforce primary key uniqueness by default. Unlike database tables where primary keys must be unique, standard internal tables allow duplicate entries. You can indeed store multiple records with the same BP number in such an internal table. Option B is incorrect because internal tables do not enforce primary key constraints the same way database tables do.