• Roboti
  • NEWBIE
  • 55 Points
  • Member since 2013

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

Hi,

 

When I try to send a common email to all my contacts in Developer edition, I can only send up to 10 contacts in a day. How is it possible to send a common mail to 100 contacts in same day?

  • December 13, 2013
  • Like
  • 0

Hi,

 

We have created a custom object "ABC" on Opportunities. We have already created a custom user profile "XYZ" which we want to use to access this custom object "ABC". We have set the object access to "XYZ". But it is showing the message that we need to give "XYZ" Read permission on Opportunity.

 

We then checked for Object Settings for "XYZ" profile and found that Opportunity is not listed in the object list. When we go to Administration Setup -> Security Controls -> Field Accessibility -> Opportunity -> View by Profiles -> ...our "XYZ" profile does not appear in the list.

 

How can we add Opportunity object for the profile "XYZ"?

 

Your help will be appreciated very much!

Thanks and regards

  • December 04, 2013
  • Like
  • 0

Hi,

 

Can anyone correct the code? We are having two issues here.

1. The code is not checking the "IF" condition here. It is directly going to "ELSE" part.

2. We are not able to update a checkbox field from unchecked to checked.

 

---------------------------------------------------------------------------------------------------------------------------------------------------

var currurl = window.location.href;
var stc = new sforce.SObject("Sales__c");

if(stc.OppUpdate__c = 0){
window.location = 'http://xxx.yyy.com/Sales?OpenAgent&id={!Sales__c.OpportunityId__c}&oo={!Sales__c.OpportunityOwner__c...

stc.OppUpdate__c = 1;
result = sforce.connection.update([stc]);
}else{
alert('Already created. You should not create it again');
}

---------------------------------------------------------------------------------------------------------------------------------------------------

We are not very experienced in Salesforce and we have never used APEX, Javascript etc. So it is the tough one here.

We will really appreciate the help.

 

Thanks!

 

Regards

  • November 29, 2013
  • Like
  • 0

Hi,

 

We have a custom object "Sales" on Opportunity. When we create a new report on Opportunity, we get the records. But when we create a new report on Opportunity and Sales with same criteria, we do not get any record.

 

Where are we getting it wrong?

 

Please help!

 

Thanks!

  • November 22, 2013
  • Like
  • 0

Hi,

 

We have a custom button on a custom object. We click on this button and the javascript performs the actions based on a field in this custom object. The field is a checkbox field and it has default value as unchecked. Like this - 

-----------------------------------

If field A = 0 (unchecked)

     perform AAA

else

     perform BBB

-----------------------------------

But we want to update the field value (checkbox should become checked) when if statement encounters the value = 0

 

-----------------------------------

If field A = 0 (unchecked)

     update A = 1

     perform AAA

else

     perform BBB

-----------------------------------

How can we achieve this?

Thanks in advance!

 

Best regards

  • November 20, 2013
  • Like
  • 0

Hi,

 

We have a custom button on the detail page of a custom object. This button is used to open URL of another application and populating the object field in the other application.

 

Current Behaviour of button - Display in new window

Content Source - URL

 

It should not be allowed that the button is clicked again (in this case, data will be sent to other application again). 

For this we have created a checkbox field which will be FALSE and it should be turned to TRUE after the first click of the button.

 

Also, How to check the field value, change it to TRUE (if it is FALSE), and send the data to other system by opening the URL of that system on one click of this custom button?

 

Please help!

Thanks and Regards!

  • November 19, 2013
  • Like
  • 0

Hi,

 

We are new to coding. We have a situation where the Workflow rule is not possible. So we need to write a trigger.

 

1. We have a custom object called SALES on Opportunity.

2. We have Master (Opportunity)-Detail (SALES) between these two.

3. All the fields (except Name) on SALES are formula fields derived from Opportunity.

4. We need to send outbound data when the SALES record gets updated.

5. We update an Opportunity and all the SALES records on that Opportunity are updated.

6. But since the fields on SALES are formula fields, our workflow rule does not fire on update.

7. So we need a trigger to fire the outbound data.

8. The fields on SALES are - OpportunityStage__c, OpportunityProbability__c.

9. We need to send the values of these fields and Salesforce ID of SALES to outbound message.

 

Can anyone please help us with trigger on this? We will highly appreciate the help.

 

Thanks!

 

Best regards,

 

 

 

  • November 13, 2013
  • Like
  • 0

Hi,

 

We have a custom object SALES on Opportunity.

1. This object has all the fields calculated from related Opportunity.

2. We have created a workflow rule to send outbound data everytime this object is updated.

3. The relationship between Opportunity and SALES is Master (Opportunity)-Detail (SALES)

4. This object gets updated when we update the related Opportunity.

 

The workflow rule does not fire because except the object name field, all the fields are formula fields on SALES.

Can anyone suggest us the way to achieve the workflow rule to trigger the outbound data?

 

We need the help urgently. Let us know if you need more information.

 

Thanks!

  • November 13, 2013
  • Like
  • 0

The users are not able to record emails through LinkPoint360. They use LinkPoint360 for sync between Salesforce and Lotus Notes.

There are more than one users experiencing this issue. They have their passwords and security token properly entered. But they are not able to record emails. The 'Test Connection' fails.

 

They receive the error message - 

 

Test connection failed:

Invalid username, password, security token; or user locked out.

 

Can anyone please help?

Thanks in advance!

  • October 29, 2013
  • Like
  • 0

Hi,

 

When I try to send a common email to all my contacts in Developer edition, I can only send up to 10 contacts in a day. How is it possible to send a common mail to 100 contacts in same day?

  • December 13, 2013
  • Like
  • 0

Hi,

 

We have created a custom object "ABC" on Opportunities. We have already created a custom user profile "XYZ" which we want to use to access this custom object "ABC". We have set the object access to "XYZ". But it is showing the message that we need to give "XYZ" Read permission on Opportunity.

 

We then checked for Object Settings for "XYZ" profile and found that Opportunity is not listed in the object list. When we go to Administration Setup -> Security Controls -> Field Accessibility -> Opportunity -> View by Profiles -> ...our "XYZ" profile does not appear in the list.

 

How can we add Opportunity object for the profile "XYZ"?

 

Your help will be appreciated very much!

Thanks and regards

  • December 04, 2013
  • Like
  • 0

Hi,

 

Can anyone correct the code? We are having two issues here.

1. The code is not checking the "IF" condition here. It is directly going to "ELSE" part.

2. We are not able to update a checkbox field from unchecked to checked.

 

---------------------------------------------------------------------------------------------------------------------------------------------------

var currurl = window.location.href;
var stc = new sforce.SObject("Sales__c");

if(stc.OppUpdate__c = 0){
window.location = 'http://xxx.yyy.com/Sales?OpenAgent&id={!Sales__c.OpportunityId__c}&oo={!Sales__c.OpportunityOwner__c...

stc.OppUpdate__c = 1;
result = sforce.connection.update([stc]);
}else{
alert('Already created. You should not create it again');
}

---------------------------------------------------------------------------------------------------------------------------------------------------

We are not very experienced in Salesforce and we have never used APEX, Javascript etc. So it is the tough one here.

We will really appreciate the help.

 

Thanks!

 

Regards

  • November 29, 2013
  • Like
  • 0

Hi,

 

We have a custom object "Sales" on Opportunity. When we create a new report on Opportunity, we get the records. But when we create a new report on Opportunity and Sales with same criteria, we do not get any record.

 

Where are we getting it wrong?

 

Please help!

 

Thanks!

  • November 22, 2013
  • Like
  • 0

Hi,

 

We have a custom button on a custom object. We click on this button and the javascript performs the actions based on a field in this custom object. The field is a checkbox field and it has default value as unchecked. Like this - 

-----------------------------------

If field A = 0 (unchecked)

     perform AAA

else

     perform BBB

-----------------------------------

But we want to update the field value (checkbox should become checked) when if statement encounters the value = 0

 

-----------------------------------

If field A = 0 (unchecked)

     update A = 1

     perform AAA

else

     perform BBB

-----------------------------------

How can we achieve this?

Thanks in advance!

 

Best regards

  • November 20, 2013
  • Like
  • 0

Hi,

 

We have a custom button on the detail page of a custom object. This button is used to open URL of another application and populating the object field in the other application.

 

Current Behaviour of button - Display in new window

Content Source - URL

 

It should not be allowed that the button is clicked again (in this case, data will be sent to other application again). 

For this we have created a checkbox field which will be FALSE and it should be turned to TRUE after the first click of the button.

 

Also, How to check the field value, change it to TRUE (if it is FALSE), and send the data to other system by opening the URL of that system on one click of this custom button?

 

Please help!

Thanks and Regards!

  • November 19, 2013
  • Like
  • 0

Hi,

 

We are new to coding. We have a situation where the Workflow rule is not possible. So we need to write a trigger.

 

1. We have a custom object called SALES on Opportunity.

2. We have Master (Opportunity)-Detail (SALES) between these two.

3. All the fields (except Name) on SALES are formula fields derived from Opportunity.

4. We need to send outbound data when the SALES record gets updated.

5. We update an Opportunity and all the SALES records on that Opportunity are updated.

6. But since the fields on SALES are formula fields, our workflow rule does not fire on update.

7. So we need a trigger to fire the outbound data.

8. The fields on SALES are - OpportunityStage__c, OpportunityProbability__c.

9. We need to send the values of these fields and Salesforce ID of SALES to outbound message.

 

Can anyone please help us with trigger on this? We will highly appreciate the help.

 

Thanks!

 

Best regards,

 

 

 

  • November 13, 2013
  • Like
  • 0