• nanostuffs
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 11
    Replies

1. I have a custom object "testObj"

2. There are many profiles used in my system and this testObj currently is accessble to only some of them, e.g. Profile1, Profile2 & Profile3.

3. Company CEO has profile Profile4 and this profile is assigned to several other users as well.

4. CEO now wants read access to testObj. I cannot grant the access to Proifle 4 directly because all others users will too get read access to testObj. I also cannot create new profile just for CEO.

 

Can anybody advise a solution?

Hello,

 

I have such code:

List<Contact> retContacts = [FIND :txtName IN ALL FIELDS RETURNING Contact(Id, Name,Phone,Email)][0];

 

This code works and gives me few results when I am running it through a visualforce page. I need to upload my app for which I require min 75% code coverage, so I wrote test class which has:

mainObj.txtName = 'man*';
mainObj.SearchRecord();

 

It shows me only 57% code coverage and when i see test results I find the coverage is not going inside loop I have to process found results, in other words no results are returned.

 

If I use such statement it works and give perfect code coverage but I dont want to use this statement because it just searches Name field:

queryname = '%' + txtName + '%';

retContacts = [SELECT Id, Name,Phone,Email FROM Contact WHERE Name like :queryname];


Can anybody please help?

 

Thank you,

Nishant

http://nanostuffs.com/

hello, we have sf.com and five9. we are having difficuly getting Five9 data into sf.com. five9 provides a one way connection to get data into five9 from sf.com but not the other way around.

they do have a connector in their admin tool, but we were told that this connector tool does not support authenticaion, so we cannot send api requests because sf requires auth then passing a token. five9 is recommending that we put middleware to recive the five9 requets and forward onto sf.com

the question is: is there anyone out there that has successfully sent data into sf.com from five9? if so, how? can we speak?

We are willing to engage a consulting partner to do so.

need to send data from opportunity and opportunitylineitems objects to external system using outbound messaging functionality. 

 

estimate is less than 20 fields. needs to be completed within 2 weeks. 

 

i have a schema for the xml format to follow. 

 

Please respond with quotes or questions.

 

thanks

 

Chris

how exactly paypal and salesforce integrates???

Hi,

We're looking to build out own Salesforce CTI adapter that connects our Digium Switchvox PBX to Salesforce. Switchvox is asterisk based, but has its own API. - http://developers.digium.com/switchvox/wiki/index.php/Main_Page


We are looking to do a complete integration for inbound and outbound calls.

Record all calls in Activity history or new custom object for Phone calls (to track calls not associated with salesforce records), with a link to the call recording stored on FTP. - Most people parse the xml files with recordings.

Need Full integration between Switchvox and salesforce
- Switchvox can trigger a post to salesforce on all calls, or at any other event, such as on call answer, on incoming call, on outgoing call, etc...

- In salesforce, need to track call statistics in relation to campaigns - each campaign uses a unique 800#, which is a field in campaigns as external ref ID
- Show activity history and reporting on calls by campaign, tracked separately via separate 800#’s - 800#’s for campaign can be stored in lead records and campaign records

Even if call isn’t answered, call should be logged as incomplete or missed, then trigger workflow rules to ensure these calls are followed up.

For all calls, log a link in call log record to call recording (download link from FTP server)


When calls are not answered by the sales team, they are forwarded to our answering service. the answering service then sends an email with call details. We need to have these emails accepted by salesforce, match up with the call record, then assigned and followed up via workflow & Assignment rules.


Let me know, thank you...

  • October 24, 2012
  • Like
  • 0

Does anybody have a document/website that notes everything that needs to be asked, in the order in needs to be asked, to setup a partner portal?  I'm putting together a partner portal design document for a large enterprise customer and I don't want to miss anything!  Thank you.

Can partner portal users be an approver in an approval process?

  • August 30, 2012
  • Like
  • 0

Hello everyone,

 

 I am new in sales force area. Currently I am learning salesforce.com online.

 

How can i find any text book?

  • August 18, 2012
  • Like
  • 0

Hi,

 

There are two fields,KYC Expiration Date and KYC Status field need to be linked.KYC Status field is a Picklist(Approved,In Progress,Cancelled,Expired).When expiration date is reached, KYC Status automatically changes to Expired.e.g if the expiration date is listed as Aug 1st and kyc status is approved....on august 2nd, the kyc status would change to expired.How can i implement this?

Hello,

 

I have such code:

List<Contact> retContacts = [FIND :txtName IN ALL FIELDS RETURNING Contact(Id, Name,Phone,Email)][0];

 

This code works and gives me few results when I am running it through a visualforce page. I need to upload my app for which I require min 75% code coverage, so I wrote test class which has:

mainObj.txtName = 'man*';
mainObj.SearchRecord();

 

It shows me only 57% code coverage and when i see test results I find the coverage is not going inside loop I have to process found results, in other words no results are returned.

 

If I use such statement it works and give perfect code coverage but I dont want to use this statement because it just searches Name field:

queryname = '%' + txtName + '%';

retContacts = [SELECT Id, Name,Phone,Email FROM Contact WHERE Name like :queryname];


Can anybody please help?

 

Thank you,

Nishant

http://nanostuffs.com/