Can not convert Object type value to decimal: Variable does not exist: Decimal

First we need to convert object value into String then to decimal

Object obj = '10000';
String strObjVal = String.valueOf(obj);
Decimal decimalStrObjVal = Decimal.valueOf(strObjVal);

Counters