Dear Sriram,
Work Area is a buffer or temporary memory area used to store a record retrieved from Internal Table.
TABLES spfli.
data : wa_flight type spfli. t_flight type table of spfli.
loop at t_flight into wa_flight.
write : wa_flight-carrid,
wa_flight-connid.
endloop.