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
Software EngineSoftware Engine 

Data Missing

HI,
 
I have a custom field defined in Opportunity table and data also populated. But when i tried to pull the value programmatically using the API name of the field, nothing is coming.  Can any body suggest me how to solve this problem.
 
Thanks,
 
DevAngelDevAngel
Can you provide some more details about how you are doing this?  Usually, this would be a case of mistaken identity (wrong login, field level security, etc).  Are you getting an error?
Software EngineSoftware Engine
Hi,
 
Thanks for the immediate reply. I am using the correct loginID. I am not getting any error with the program.
 I am able to see the values in the salesforce.com but when i tried to get the data programatically no  value   is coming.
 
EX: Field Name:    Vendor
       API Name  :    VENDOR__C
          
   dim name as string
   name=Opportunity.VENDOR__C
 
And also i tried to extract the data using Apex Explorer. Wonder...there is no fieldname 'Vendor' in the list of fileds from opportunity table.
 
How could its possible?
 
Your help would be highly appreciated.
 
Thanks,