select only contact and adress from the table where you saved this details or variant.
SELECT adress contact FROM tablename INTO TABLE It
LOOP AT IT INTO WA.
WA_FINAL-contact = WA-contact.
WA_FINAL-address = WA-address.
READ TABLE IT INTO WA WITH KEY .
APPEND WA_FINAL TO IT_FINAL.
ENDLOOP.