• Rahul Sharma
  • PRO
  • 4240 Points
  • Member since 2011
  • Salesforce Developer
  • about.me/rahuls91221


  • Chatter
    Feed
  • 142
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 22
    Questions
  • 997
    Replies
I have this error for all my 500 points challenges since two weeks ago.  I have searched other posts and checked that I am using the same account for my trailhead and my developer.org.  I have tried to use different browsers, Chrome, IE and Firefox to have the same error.  It becomes very frustrated now.  I do have successful experience with the "Check challenge" of 500 points challenge before.
Hi All,
We are receiving an internal server error. when I go to (any) Permission Set, Apex Class Access then hit 'Edit' we are facing this issue. How can we overcome this, please assist.

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! Error ID: 1488824837-18844 (-1270687048)
Hello All,
I have a requirement for visualforce page with inline edit in a pageblocktable.This particular functionality is working fine for all scenarios except when a lookup field is inline edited.
When I use the undo button to clear out the value after filling in the lookup field, it throws an error 'Value does not meet filter criteria'. To get rid of this error I used rerender. I rerender the column with lookup field and I no longer faced the error.
However, due to the rerender, other values in the lookup field column also get changed inconsistently.
I think rerender row/cell wise might help solve this issue but I can't find a right way to do it.
Any help on this issue or alternate ways to tackle this issue will be highly appreciated.
Thank you in advance.
Hello Community,
 
      Can any one briefly explain about VF life cycle and order of execution in detail
       thanks for giving reply (In Advance)
 
 
       Thanks and Regards
Hi, 

i am using the external java script file from sttaicresource,  according to the code when i click on the "try it " botton  " A paragraph"  line should be changed to "Paragraph changed." but when i click on the button iam not getting any change.  Code is as follows,

VF code:
<apex:page >
<!--In case you uploaded just the file-->
<html>

<head>

<apex:includeScript value="{!URLFOR($Resource.jsss,'siva123.js')}"/>

</head>
<body>

<h1>External JavaScript</h1>

<p id="demo">A Paragraph.</p>

<button type="button" onclick="myFunction()">Try it</button>

<p><strong>Note:</strong> myFunction is stored in an external file called "myScript.js".</p>


</body>
</html>



JS file:

function myFunction() { document.getElementById("demo").innerHTML = "Paragraph changed."; }


Please any body suggest mr for this.


Regards,
Siva.


</apex:page>
 
HI iam tring to impemnt the glyphicon   by using the boot strap, iam getting only text  not getting the glyphicon . here is my code,

<apex:page   showHeader="false">

<html lang="en">

<head>
<!-- If you zip folder has subfolder for css -->
<link href="{!$Resource.sfdc}/css/bootstrap.min.css" rel="stylesheet"/>

</head>
<body>

<div class="container">
  <h2>Glyphicon Examples</h2>
  <p>Envelope icon: <span class="glyphicon glyphicon-envelope"></span></p>
  <p>Envelope icon as a link:
    <a href="#"><span class="glyphicon glyphicon-envelope"></span></a>
  </p>
  <p>Search icon: <span class="glyphicon glyphicon-search"></span></p>
  <p>Search icon on a button:
    <button type="button" class="btn btn-default">
      <span class="glyphicon glyphicon-search"></span> Search
    </button>
  </p>
  <p>Search icon on a styled button:
    <button type="button" class="btn btn-info">
      <span class="glyphicon glyphicon-search"></span> Search
    </button>
  </p>
  <p>Print icon: <span class="glyphicon glyphicon-print"></span></p>
  <p>Print icon on a styled link button:
    <a href="#" class="btn btn-success btn-lg">
      <span class="glyphicon glyphicon-print"></span> Print
    </a>
  </p>
</div>

</body>
</html>



</apex:page>

Please any body suggest me how to  use the Glyphicons in VF page from Boot strap.


Regards,
Siva.
Hi! 

I'm going through the Trailhead quizzes, and I've come to the ones that say "Connect to your Developer Edition" in order to complete the quiz.  I have a Developer Edition account set up, but when I try to access it through Trailhead it gives me this message: "Houston, we have a problem... you are attempting to log into Trailhead to complete challenges with an org that isn't supported.  When you are completing Trailhead hands-on challenges, you cannot use a production or sandbox org...." Anways, I'm not sure how to complete the quizzes. (They are under Learn CRM Essentials) . I am on bootcamp next week and need to complete the badges. 
 
list out of bond error at line 

 String userId = leadUsrStr.split('_')[1];
Would like to know if we can create a formula field on Contact to know if any Contact is enabled as a Community user.

Thanks
Hi Community,

We can override the translation for Standard and lookup fields from translation workbench(export the translation files, make a change and import it back again) and can override the labels from Rename Tabs and Labels in setup for english language.
But I didn't get any option to override the language for standard fields, tabs and lookup field labels.
Hi
I find 2 diiferent kind of profile setup page from developer account. Why this? In one setup page, even I cannot find how to perform Field Level Setup?

Any pointer for above!

User-added image

User-added image


Thanks In Advance!
Priyadarshi

I have and object where i need to update a field user_info__C with the customer portal userid. before redirecting to the start url.

by any means can i retrieve user id before redirection if login is successful.

Thanks
Abhilash Mishra

Hi,

I am a senior salesforce developer having nearly 4years of experience. I am certified with:
  • Salesforce certified Force.com Developer.
  • Salesforce certified Advanced developer.
  • Salesforce certified Administrator.
  • Salesforce certified Salescloud consultant.
  • Salesforce certified Service cloud consultant.
Request you to please reach out to me at surendranadhnune@gmail.com if there is any requirement.

Thanks and Regards,
Surendranadh Nune
Hi All,

I have a trigger which updates attachment id into a custom field of object X__c. I have creatted a formula field with below formula to display the attached pic 

IMAGE('/servlet/servlet.FileDownload?file=customfield__c', customfield__c ,20,20).

But the image is not getting displayed.But if i replace the customfield__c with recordid like below , the image is getting displayed. Please help where i am going wrong.

IMAGE('/servlet/servlet.FileDownload?file=00P28000000Ezg4', customfield__c ,20,20).

Regards