• Ruchika
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 3
    Replies

I have setup the salesforce CTI demo adapter and using five9 call center and I see the phone icon next to phone fields on standard page layout. Even If I use the output field tag on the VF pages I don't see the phone icon for click to dial.


Is there an option or setting for that to show up on VF pages.

Please advise.

 

Thanks,

Ruchika.

Hi All. 

I have a list called allCertNo which is a list obtained from a csv. The list contains some tandom ten digit numbers called certnumbers. I want to check for duplicate certnumbers in this list and display the duplicate ones. checkDuplicates is a set.

 

List<String> temp = new List<String>();

Set<String> checkDuplicates = new Set<String>();

 

for (String s : allCertNo ){
boolean checkVal = checkDuplicates.add(s);
System.debug('checkVal is>>'+checkVal );
if(!checkVal) {
temp.add(s);
numStatus = false;
countErrors++;
System.debug('Duplicate error');
}
}

System.debug('Temp list>>' + temp);  // this keeps giving an empty list

 

Even though my list allCertNo has duplicate values, checkVal never turns false. 

What could I possibly be missing out on? 

 

Please help.

 

Much thanks.

Ruchika

 

 

 

 

Hi.

 

Is it possible to have multiple guest profiles for a force.com site?

 

I have to create a force.com site and give read only access to one group of users while another group of users needs to be given read/write access.

Any way this can be done?

 

Thanks in advance.

 

Regards,

Ruchika

Hi All. 

I have a list called allCertNo which is a list obtained from a csv. The list contains some tandom ten digit numbers called certnumbers. I want to check for duplicate certnumbers in this list and display the duplicate ones. checkDuplicates is a set.

 

List<String> temp = new List<String>();

Set<String> checkDuplicates = new Set<String>();

 

for (String s : allCertNo ){
boolean checkVal = checkDuplicates.add(s);
System.debug('checkVal is>>'+checkVal );
if(!checkVal) {
temp.add(s);
numStatus = false;
countErrors++;
System.debug('Duplicate error');
}
}

System.debug('Temp list>>' + temp);  // this keeps giving an empty list

 

Even though my list allCertNo has duplicate values, checkVal never turns false. 

What could I possibly be missing out on? 

 

Please help.

 

Much thanks.

Ruchika

 

 

 

 

Hi.

 

Is it possible to have multiple guest profiles for a force.com site?

 

I have to create a force.com site and give read only access to one group of users while another group of users needs to be given read/write access.

Any way this can be done?

 

Thanks in advance.

 

Regards,

Ruchika