Hello Riyas,
To get Upgrading from value in subscription , you need to work on subscription detail app.
Do the changes in following file : rootplugins//payplans/subscriptiondetail/subscriptiondetail/app/subscriptiondetail/subscriptiondetail.php (see attached screen shot.)
To get previous subscription detail use below mentioned code
$order = $subscription->getOrder(PAYPLANS_INSTANCE_REQUIRE);
$upgrading_from = $order->getParam('upgrading_from',0);
if ($upgrading_from) {
$oldSubscription = PayplansSubscription::getInstance($upgrading_from);
$subDetails = $oldSubscription->getParams();
}
You need to work on this to assign previous values to new subscription.