I am going to get product's enabled/disabled status programmatically. Now, we got product instance by this code.
<?php $_product = $_item->getProduct(); ?>
Also, using following code part, we can get product stock information.
<?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$StockState = $objectManager->get('\Magento\CatalogInventory\Api\StockStateInterface');
$product_is_stock = $StockState->getStockQty($_product->getId(), $_product->getStore()->getWebsiteId()); ?>
But, is there any solution to get status of product from $_product on Magento 2.1?