• Maurya Priyadarshi
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies
I have a force.com site for my org's Customer portal access. The login page works fine but when customers try to reset their password using the force.com forgot password page (company.force.com/ForgotPassword) they do not receive any email. However if I use the standard Forgot Password page ()https://na3.salesforce.com/secur/login_portal.jsp?orgId=XXXXXXXXXX&portalId=XXXXXXXXXXX) it works.

This was working before for my org and stopped working all of a sudden. Any help regarding this would be greatly appreciated. Thanks.

 
I am trying to use a Visualforce email template for Self-Service Reset Password. On using the template, the Self-Service User gets an error page on resetting his password. This happens in both Sandbox and Production.

Error:
An internal server error has occurred
An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact Salesforce Support. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience.

Thank you again for your patience and assistance. And thanks for using salesforce.com!
I am trying to do a callout to an external REST API (using http JSON POST). The external REST API provides option to give callback URL's where it sends various responses.
Example:

 "callbacks":   [
    {       "url":"http://mydomain.com/path/to/my/service/event/status",       "type":"status"     },     {          "url":"http://mydomain.com/path/to/my/service/event/deliveryStatus",       "type":"deliveryStatus"     },     {       "url":"http://mydomain.com/path/to/my/service/event/response",           "type":"response"     }   ]

I want to update certain fields in Salesforce based on these responses received. What URL should I give here which Salesforce can listen to? Also these response are asynchronous. How do I achieve reading these responses in Salesforce? Thanks in advance for any help in this.
 
I have 2 objects (Contact and SLM) both has their AFTER triggers. On each triggers we have that recursive trigger logic which we set the static variable at the end to avoid the recurssion.

I have a  batch class, which is updating the contact record and update the SLM records in a single transaction.  While doing that operation, I see the after update trigger for Contact object is working good and at the end it set the Static variable to true. When the SLM update happens, I am not seeing the SLM trigger is executing, may be because the static variable is set as true. 

I need this recursive check in both objects trigger because we have lot other Workflow and process builder to  update both object.
How to handle this? any thoughts. Thanks
I am trying to use a Visualforce email template for Self-Service Reset Password. On using the template, the Self-Service User gets an error page on resetting his password. This happens in both Sandbox and Production.

Error:
An internal server error has occurred
An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact Salesforce Support. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience.

Thank you again for your patience and assistance. And thanks for using salesforce.com!
I am trying to do a callout to an external REST API (using http JSON POST). The external REST API provides option to give callback URL's where it sends various responses.
Example:

 "callbacks":   [
    {       "url":"http://mydomain.com/path/to/my/service/event/status",       "type":"status"     },     {          "url":"http://mydomain.com/path/to/my/service/event/deliveryStatus",       "type":"deliveryStatus"     },     {       "url":"http://mydomain.com/path/to/my/service/event/response",           "type":"response"     }   ]

I want to update certain fields in Salesforce based on these responses received. What URL should I give here which Salesforce can listen to? Also these response are asynchronous. How do I achieve reading these responses in Salesforce? Thanks in advance for any help in this.