
Madhuri Patil
Individual-
Generating thumbnail…
-
Generating thumbnail…
Photos
-
Shaik and
Himanshu are now connected 8 years ago
-
Prasad and
Himanshu are now connected 8 years ago
-
Piyush and
Himanshu are now connected 8 years ago
-
Joe Dias and
Himanshu are now connected 8 years ago
-
Himanshu replied to the discussion How can I make a pdf from visualforce page in Salesforce? in the forum Salesforce® Discussions 8 years ago
Reply to How can I make a pdf from visualforce page in Salesforce?
Hi Pranav,
use this tag to convert the page into pdf.
-
Himanshu replied to the discussion I want to generate a random string,which contain alphabet and number both,please help to write a code. in the forum Salesforce® Discussions 8 years ago
Hi Tanu,
Use the below code:-
Integer len = 6;
Blob blobKey = crypto.generateAesKey(128);
String key = EncodingUtil.convertToHex(blobKey);
String pwd = key.substring(0,len);
System.debug('************ '+pwd);Hope this helps you.
-
Himanshu replied to the discussion Where to use ISBLANK and ISNULL, make it clear please? in the forum Salesforce® Discussions 8 years ago
Reply to Where to use ISBLANK and ISNULL, make it clear please?
Hi Tanu,
ISBLANK has the same functionality as ISNULL, but also supports text fields.ISNULL mainly use for check the numeric values.
-
Himanshu replied to the discussion Can we generate a VF page as PDF format and downlaod it on local system? in the forum Salesforce® Discussions 8 years ago
Reply to Can we generate a VF page as PDF format and downlaod it on local system?
Hi Mohit,
You can use 'renderAs="pdf"' tag in Visualforce Page.
-
gouthami and
Himanshu are now connected 8 years ago
-
Himanshu replied to the discussion How to get all email type field values? in the forum Salesforce® Discussions 8 years ago
Reply to How to get all email type field values?
Hi Tanu,
String EmailFiels = '';
for(Schema.SObjectField field : ObjectName.getSobjectType().getDescribe().fields.getMap().values())
{
if(Schema.DisplayType.EMAIL == field.getDescribe().getType())
EmailFiels += ', ' + field.getDescribe().getName();}
EmailFiels = EmailFiels.removeStart(',');
you can get all the email type field… Read more -
Himanshu replied to the discussion How can I append entire fields at once in query? Like 'SELECT * FROM ACCOUNT' in SQL . in the forum Salesforce® Discussions 8 years ago
Reply to How can I append entire fields at once in query? Like 'SELECT * FROM ACCOUNT' in SQL .
Hi Pranav,
you can use the eclipse for the entire fields to make the query.
-
Himanshu replied to the discussion How would we know that the process builder is executing our process in the way we want? in the forum Salesforce® Discussions 8 years ago
Reply to How would we know that the process builder is executing our process in the way we want?
Hi Mohit,
You can test the functionality of process builder for different scenarios(Insert/update/delete) to verify/check the functionality.
-
Himanshu replied to the discussion How To add a link on standard contact detail page ? in the forum Salesforce® Discussions 8 years ago
Reply to How To add a link on standard contact detail page ?
Hi Piyush,
you can use the Hyperlink() function in the formula and have it generate the URL to that Visualforce page.
Hope this helps you.
-
Himanshu updated their profile 8 years ago
-
Himanshu updated their profile 8 years ago
-
Himanshu replied to the discussion Is it possible to run a SOQL Query and get a MAP returned? in the forum Salesforce® Discussions 8 years ago
Reply to Is it possible to run a SOQL Query and get a MAP returned?
Hi Tanu,You can use the below query
Map m = new Map([SELECT Id, Name FROM Account]);
-
Himanshu replied to the discussion How to change the page block title font size in vf page? in the forum Salesforce® Discussions 8 years ago
Reply to How to change the page block title font size in vf page?
Hi Pranav,
Use css to style it as needed.It will change the font size.
Example:-
Add in style - font-size: %; -
Himanshu replied to the discussion How to apply EDIT/DELETE link to each record in pagetable? in the forum Salesforce® Discussions 8 years ago
Reply to How to apply EDIT/DELETE link to each record in pagetable?
Hi Tanu,
For Example - We are taking Account object
Edit
Delete
Hope this helps you.
-
Himanshu updated their profile 8 years ago
-
Himanshu replied to the discussion How can I add send an Email functionality button for custom object as it is available for Account/contact/opportunity? in the forum Salesforce® Discussions 8 years ago
Hi Pranav,
Create a visualforce button that updates a field on the record and fires off a workflow email alert.
You can choose the email template that email workflow alert fires off of.Hope this helps you.
- Load More