function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
gaddam rajgaddam raj 

vf page for override the standard object Product

my code is

<apex:page standardController="Product" sidebar="false" showHeader="true">
<apex:form>
<apex:pageBlock Title="Product Edit">
<apex:pageBlockSection title="Product Information" collapsible="false">
<apex:inputField value="{!Product.Name}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

for this one i got error
Error:Product does not exist
RamuRamu (Salesforce Developers) 
See if the below unmanaged package app suits your requirement 

http://www.michaelforce.org/recipeView?id=a0G30000006eVxVEAU
Balaji BondarBalaji Bondar
The API name of product object is Product2.Below code will work:
<apex:page standardController="Product2" sidebar="false" showHeader="true">
<apex:form >
<apex:pageBlock Title="Product Edit">
<apex:pageBlockSection title="Product Information" collapsible="false">
<apex:inputField value="{!Product2.Name}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Important :
If this is what you were looking for then please mark it as a "SOLUTION" or You can Click on the "Like" Button if this was beneficial for you.