• renaiah anamalla 7
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 4
    Replies
Hi Exeperts,

I'am ;many confusing on Recordtypes please explain Deep

How to retrive the Recordtypes

Recordtypes:(Object:Salesperson__c)====fields:Email__c,Phone__c,Name
===========
Prod
Prods======i have created  two records how to fetch the records



 
Recordtypes 
A
B
i want retrive the records from A please code it
 
please help,
Account(object)
I have 2 recordtypes
Male
Female

i want retrive the record for Male 

Why the map using...
 Custom Object is        Identity__c

Record type is Helooo

The Field( Is Main Address  )checkbox  is checked and 

Show on License     checkbox is Checked 

In that time  The CRM Status is Renewed.

When CRMStatus is Renewed ,

but i want unchecked the checkbox Is Main Address and Show on License


write in  Excuteanonymous
 
 
 Picklist Client: PHYSICIAN
                       FACILITY
When i click the Facility value autometically display the Provider field value "Yes"


I have Provider field  i want to change 3 values yes and 2 values no, then how to implement the logic in Apex
Hi,
EveryOne.

Please,give Clarity on After Insert,After Update give me  small snippet example 
What Is the Map ?when do use the Map..give Example..


Regards,
Renu
Why we are using Seealldata=true in test cases,

Why we are using Private in test cases.
Hi Exeperts,

I'am ;many confusing on Recordtypes please explain Deep

How to retrive the Recordtypes

Recordtypes:(Object:Salesperson__c)====fields:Email__c,Phone__c,Name
===========
Prod
Prods======i have created  two records how to fetch the records



 
Hi,
I need to create a visualforce page with a list of all opportunities that are in the system.
Not sure where to start... I was able to find some examples, but the show how to display opportunity information but they needed to have the ID on the URL. I just need a list of all opportunities.

Thanks!  
Hi,

Thanks in advance for your help here.
I have a requirement where when i have list of accounts clicking on it it should display account,contacts and related opportunities in a single visual page of a particular account clicked.
Pls note it should not go to any detaul page.
 
trigger defaultaction on Account(before insert,before update){
for(account acc : trigger.new){
acc.Phone='24243';

}

}