Archit
IndividualForum Replies Created
-
Archit
MemberMarch 28, 2018 at 7:37 pm in reply to: Can we implement Salesforce Apex Code for custom logic in Conga Composer?Hello Ankit,
Can we use Apex code for custom logic in conga conductor for handling the bulk records?
Thanks!!
-
Archit
MemberMarch 28, 2018 at 7:27 pm in reply to: How to split one script in to multiple scripts in Salesforce?Hello Amresh,
While searching out in google I found there is a module pattern which is Augmentation through which we can split a script into multiples.
One limitation of the module pattern so far is that the entire module must be in one file. Anyone who has worked in a large code-base understands the value of splitting among multiple files. Luckily, we have a nice solution to augment modules. First, we import the module, then we add properties, then we export it. Here’s an example, augmenting our MODULE from above:
var MODULE = (function (my) {
my.anotherMethod = function () {
// added method...
};return my;
}(MODULE));
We use the var keyword again for consistency, even though it’s not necessary. After this code has run, our module will have gained a new public method named MODULE.anotherMethod. This augmentation file will also maintain its own private internal state and imports.Thanks!
-
Archit
MemberMarch 28, 2018 at 3:21 pm in reply to: How to Improve page load speed of Salesforce Visualforce pages?Hello Amresh,
we can also focus upon the below points to improve the loading of page.
- Check the current speed of your website.
- Optimize your image size.
- Use Content Delivery Network.
- Avoid self hosted videos.
- Use CSS sprites.
- Switch off the plugins you won't use.
- Minify HTML, CSS and JavaScript.
Thanks!
-
Archit
MemberMarch 28, 2018 at 3:15 pm in reply to: Can we use Local Template in Nintex for processing a Salesforce Document?Hello,
Can we really assign Local Template to Nintex document?
-
Archit
MemberMarch 28, 2018 at 3:07 pm in reply to: Which custom fields or relationships in Salesforce ends with “__pc” and “__pr”?Hello,
This happens on person accounts where the custom fields ends with “__pc” and custom relationship ends with “__pr”.
Thanks!
-
Archit
MemberMarch 28, 2018 at 3:02 pm in reply to: How to Improve page load speed of Salesforce Visualforce pages?Hello Amresh,
For improving the speed of loading the visualforce page we can have to make that page lighter and for making the lighter pages we use javascript, angularJS, jquery etc.
Thanks!
-
Archit
MemberMarch 28, 2018 at 2:52 pm in reply to: Is it possible to create community user through Salesforce Apex?User u = new user();
u.LastName = 'Test Code';
u.Email = '[email protected]';
u.Alias = 'Tcode';
u.Username = '[email protected]';
u.CommunityNickname = 'test12';
u.LocaleSidKey = 'en_US';
u.TimeZoneSidKey = 'GMT';
u.profileId = '00e28000001Xsf3';
u.LanguageLocaleKey = 'en_US';
u.EmailEncodingKey = 'UTF-8';
insert u; -
Archit
MemberMarch 28, 2018 at 2:48 pm in reply to: Error while uninstalling a package in SalesforceHello Ankit,
Can you please uninstall the same and again install it, it will again create same problem because it will refresh the whole in repeating steps.
Thanks
-
Archit
MemberMarch 28, 2018 at 2:43 pm in reply to: How to get start date and end date with time in single function from calendar in Salesforce?Hello Amresh,
We can achieve it by Salesforce standard functionality so please follow below steps to do so.
- Create Date field on any object name "Start Date"
- Create Date field on same object name "End Date"
- Create Formula field on same object name "Number of days"
- make sure the return type of formula field should be number.
- after creating record you can achieve what you want.
Thanks
-
Archit
MemberMarch 28, 2018 at 2:39 pm in reply to: What are the differences between Salesforce Classic and Salesforce Lightning?Hello Adarsh,
Salesforce Classic: It's the platform which we are using from long time as standard, Salesforce just named to classify between the new User Interface/Experience and old User Interface/Experience.
Lightning Experience: It's the new, slick user interface and the Lightning Component framework is a UI framework for developing dynamic web apps for mobile and desktop devices. Lightning makes it easier to build responsive applications for ANY DEVICE. The initial release of the new user interface is geared towards sales reps with an intuitive interface that allows sales reps to work more efficiently. The dashboard and charts in Lightning Experience behave much like Wave where changes in the chart recalculates in real time.
Thanks!
-
Archit
MemberMarch 28, 2018 at 2:21 pm in reply to: Error while uninstalling a package in SalesforceI was also facing the same issue while uninstalling the same. I would appreciate both of you for providing helpful answer
Thanks!
-
Archit
MemberMarch 28, 2018 at 11:30 am in reply to: Is there any limitation to load fields for mapping in webmerge?Yes Neha,
There are a few limitations with both Conga and Nintex. You can look into their limitation guide for more accurate points on this.
-
Archit
MemberMarch 28, 2018 at 11:20 am in reply to: Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image?Ok Thanks Adarsh
-
Archit
MemberMarch 28, 2018 at 11:09 am in reply to: How to send Community Welcome Email to a User through Salesforce Apex?Thanks Pranav,
Your solution worked for me..!!
-
Archit
MemberMarch 28, 2018 at 11:08 am in reply to: Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image?Hello Adarsh,
You can use PDF, MS Word, XLS, Report, proposals and more” , “9Docs” , “RS Documents – Automatic Document Generation from your Data” etc and many other such tools to generate document as JPEG image fiel format.
-
Archit
MemberMarch 28, 2018 at 11:05 am in reply to: Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image?Hello Neha,
JPEG is not possible with Congo and Nintex.
-
Archit
MemberMarch 28, 2018 at 11:03 am in reply to: Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image?Hello Adarsh,
You can use Webmerge to process ‘Output type Options’ as JPEG Image.
-
Archit
MemberMarch 28, 2018 at 10:59 am in reply to: Can we set 'Send Email From' functionality to processed a document in Nintex or conga?Hello Neha,
You can not dynamically update “send email from” in Nintex or Congo.
-
Archit
MemberMarch 28, 2018 at 10:51 am in reply to: Is there any limitation to load fields for mapping in webmerge?How can I add WebMerge Buttons to Salesforce Page Layouts?
-
Archit
MemberMarch 28, 2018 at 10:48 am in reply to: How can we create a relationship with conga composer in Salesforce?Please provide any example for the above if possible.
-
Archit
MemberMarch 28, 2018 at 10:48 am in reply to: How can we create a relationship with conga composer in Salesforce?How can I update my Conga Composer button to pass any desired value to a report in salesforce?
-
Archit
MemberMarch 28, 2018 at 7:10 am in reply to: How to enable Orders object in SDFC? Can we add custom fields in Orders object?Hello Saagar,
For enabling Orders object in your Salesforce org you can choose "Order Settings" from setup and check the Enable Orders.
Thanks!
-
Archit
MemberMarch 28, 2018 at 7:08 am in reply to: Is there a limit for data.com records? How much can I use for free?Hello Rahul,
Salesforce users can see their limit form setup easily.
Setup -> Licenses & Limits (under Data.com Administration)Thanks!
-
Archit
MemberMarch 28, 2018 at 7:06 am in reply to: How to add Quote function to a Salesforce Opportunity object?Hello Saagar,
First you enable quote by following below steps
Login to Org
Go to Setup
Write “Quote Setting” in quick find box
click on “Quote Settings”
Check “Enable Quotes”
Click SaveThen you can make the quote (related list) available on page layout of opportunity object.
Thanks!