• viswsanath
  • NEWBIE
  • 20 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 58
    Questions
  • 11
    Replies
HI Exports,

How to get list of partner roles where portal users are disabled(instead of deactivated), Could you please help me .


Regards,
Viswa
Hi All,
is it possible we can write a soql querys in test class .

Regards,
Viswa:)
I want to get popup box for custom button in VF PageHi All,

What is the difference between Controller and Extension ?

I want to get popup box for custom button in VF Page. I searched in google, it is saying like popup code should be write in Extension controller. Can we write code in controller for dispaly the pupup box ?

Thanks in Advance
Thulasi
Hi All,

How to refresh an excting sand box in production? i Need the process step by step ..Kindly  don't share the lync .

Any one can help me .

Regards,
viswa
HI ALL,

why did we are mention @symbol in test class and also why did we have mentioned istest(seealldata=true ) in test class ?Could you pls expalin me ?what is the reason ?

Thanks,
Viswa.

HI ALL
I got the below error canu pls resolve me .
Error: Compile Error: Illegal assignment from Map<Id,Contact> to Map<Id,viswa.Contact> at line 3 column 5



trigger Email_Check_On_Contact on Contact (before update) {
  Map<Id,Contact> o = new Map<Id,Contact>();
    o = trigger.oldMap;
    for(Contact newcont: trigger.new)
    {
      
        if(newcont.Email != o.get(newcont.Id).Email)
        {
            newcont.Email.addError('Email cannot be changed');
        }
    }
}

Hi,

 

    Are we able  to send a mail at particular time throgh coding..

 

 

 

I have created a custom page for account . How do i get the detail of the account like the full description page as we click on the normal companies page in account Page

 

Regards

Punnoose

Hi,

 

How to refresh the page when we use the pagination. I am having the search funtionality in vf page. If we search, it will dispalys the list of records and if we click on that record it will open the onesecion of data with pagination. And in the same page i have keep the edit link, if we click on the edit it will open the records in editable mode and if we update the value, it will saves in back end and it does not shows me when in vf page first time. If i click on next and then click on previous links it will shows the value. How can i refresh the particualr record which i have edited when i am haivng the pagination.Please help me...

 

Thanks

Hi, Good Morning. can any one help me to solve the following......... I have an object invoice__c. It has only one field name.i would like to add the records into object using VF page. Initiallay, In VF page I have Add button,Save button & a text box. When i click on add button i need to display one more textbox. Like this i can add any number of textboxes. But when i entered data into these textboxes and clicked on save. I would like to add all the names into object in the form of records. That means, each name will be added into object as a record. i need controller class also Can any one help me.