#$obj (stdClass Object), $obj->products_id = given int value
$product = Mage::getModel("catalog/product")->load($obj->products_id);
$product->setId($obj->products_id); //not working, the session is cancelled
$product->setEntityId($obj->products_id); //not working, the session is cancelled
$product->setProductId($obj->products_id); //working but in "catalog_product_entity" the "entity_id" is created using the auto-increment (from the last registered ID)
//-------------------------------------------------
$product->save();
//-------------------------------------------------
$product->getId(); //loading the "entity_id"
$product->getProductId(); //loads the product id
私がやりたいことは.. $obj->products_id を「entity_id」(「catalog_product_entity」) にロードすることです。
助言がありますか?!同じロジックが「カタログ/カテゴリ」に適用され、機能しましたが、「カタログ/製品」では機能しません..
ありがとうございました