I would create in Abap a dynamic progressive select in a db table.
Es:
(1) my table has 4 key field;
(2) the first select is with all 4 key;
(3) if i don't find a record -> second select with first 3 key fields;
(4) if i don't find a record -> third select with first 2 key fields;
(5) if i don't find a record -> fourth select with only first key field;
(6) if i don't find a record -> raise error.
I must use field symbols, but how? Can you help me about implementation of selects?
Thanks