Hi Venkathesh,
for mTable I think this way it will work.
in the controller onSelection function you can go like this.
var path= oEvent.getParameter('listItem').getBindingContext().getPath();
now you can use this path reference to locate any particular property values in your table model.
var selectedRow= this.byId('Table_ID').getModel().getProperty(path);
now as per your question to access the property "Status" just you need to do this..
selectedRow.Status
Hope it will help !!
Regard,
Kuntal Sarkar