Forcetalks | Archit | Activity https://www.forcetalks.com/architgupta/activity/ Activity feed for Archit. Thu, 18 Dec 2025 21:10:00 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 34b1d9553f4749518ccc521fe7cc8134 Archit posted a new post. https://www.forcetalks.com/?p=28927 Wed, 19 Dec 2018 08:19:11 +0530
How to Send and Receive Data from Web Services

Web Services are the best part of Salesforce Development through which one can able to make the code available on the network for use. Through…

]]>
807b258b419141a01247566256a4a82b Archit posted a new post. https://www.forcetalks.com/?p=27724 Tue, 18 Dec 2018 11:44:41 +0530
Specific Differences In Salesforce

WhoId Vs WhatId WhoId WhatId WhoId represents the person type things. WhatId represents object type things. LeadId and ContactId are categorized under the whoId. WhatId…

]]>
11c97315ac64da353283271952e699ce Archit posted a new post. https://www.forcetalks.com/?p=28925 Tue, 21 Aug 2018 13:02:35 +0530
Sample Web Service With Workbench

Being a fresh learner of Salesforce this blog is helpful to guide you about writing a web service using Rest and calling the web service through…

]]>
df3ef756b92b9186b69353ae2a478c1f Archit posted a new post. https://www.forcetalks.com/?p=27728 Thu, 02 Aug 2018 13:40:57 +0530
Play Around Salesforce Batch Apex And Schedule Apex

Batch Apex Batch Apex classes are beneficial if the task is something to run large jobs like thousands or millions which is exceeded than normal…

]]>
453881d2aca0e8dd088e2cbbd574338f Archit replied to the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-pass-dynamic-parameter-in-soql-where-clause-while-mapping-in-webmerge/#post-27159 Fri, 30 Mar 2018 12:09:43 +0530 Reply to How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?

uniqueness a common word that everyone understand but here the uniqueness determines the specific field or object for which you want to fetch related data like

if there is any custom field Date is there in any object which call as date__c in soql so in terms of soql you can determine "date__c" as unique. If you try to fetch the… Read more

]]>
59eff11af6e7dab7755fed75d81a08d8 Archit replied to the discussion How can we update child records from parent using Salesforce Apex Class? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-update-child-records-from-parent-using-salesforce-apex-class/#post-27157 Fri, 30 Mar 2018 11:24:18 +0530 Reply to How can we update child records from parent using Salesforce Apex Class?

Hello,

Call the below trigger in apex class you can achieve the functionality what you want
trigger IPAapproved on Outbound_Sales_Order__c (after update) {

// Only do work when the field has changed
Map<Id, Outbound_Sales_Order__c> changed = new Map<Id, Outbound_Sales_Order__c>();
for (Outbound_Sales_Order__c oso :… Read more

]]>
613acff298dc2dc4dfecc7572e8b299a Archit replied to the discussion How can we customize the standard Clone button on a Salesforce Opportunity ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-customize-the-standard-clone-button-on-a-salesforce-opportunity/#post-27156 Fri, 30 Mar 2018 11:20:35 +0530 Reply to How can we customize the standard Clone button on a Salesforce Opportunity ?

Through standard functionality in Salesforce you can't customize clone button but we can achieve this by overwriting the existing clone button.

]]>
8dc414b9e04d5dd773ff56590b4ea310 Archit replied to the discussion Is there any way we can add new attachments to the records when Salesforce1 is offline? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-way-we-can-add-new-attachments-to-the-records-when-salesforce1-is-offline/#post-27155 Fri, 30 Mar 2018 11:16:10 +0530 Reply to Is there any way we can add new attachments to the records when Salesforce1 is offline?

In according to the Salesforce standard functionality it is not possible but for achieving same there are multiple apps in  AppExchange available to do so.

]]>
43266abf5e1ec21afdbab44934016af7 Archit replied to the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/webmerge-dynamic-parameter-in-soql/#post-27151 Fri, 30 Mar 2018 11:12:15 +0530 Reply to How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?

Yes, it is necessary to have  this kind of formatting because it shows uniqueness.

]]>
60b1fad845fc4158cdaf1fdd7ceddb34 Archit replied to the discussion What is the difference between Clone() and DeepClone() in Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-clone-and-deepclone-in-salesforce-apex/#post-27096 Fri, 30 Mar 2018 10:39:15 +0530 Reply to What is the difference between Clone() and DeepClone() in Salesforce Apex?

Clone : means creating a new record with the existing details of another reord.

Here is the example:
Account acc = [SELECT Name, Type FROM Account LIMIT 1];

Account accCopy = acc.clone(false, false, false, false);

if you insert accCopy, it will be the exact copy of acc.

DeepClone : creating a new record with the existing details of another… Read more

]]>
62e9211e3ee2054a43da8a85e0e9adde Archit replied to the discussion What is the role of Scope parameter in Salesforce Batch Apex in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/scope-parameter-in-batch-apex/#post-27062 Fri, 30 Mar 2018 08:28:09 +0530 Reply to What is the role of Scope parameter in Salesforce Batch Apex

Hello Ankit,

In short we can say Scope will return the List of record based on your start method in batch class.

Thanks!

]]>
6a334e5d8204dcbc1f58c99dba12c59e Archit replied to the discussion How is schedule apex different from batch apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/schedule-apex-vs-batch-apex/#post-27061 Fri, 30 Mar 2018 08:27:45 +0530 Reply to How is schedule apex different from batch apex?

Hello Ankit,

Scheduling apex:

To execute any class at specific time we use scheduling apex.

 

Batch Apex:

It divides the whole process in batches (each batch handles 200 records at a time).

To handle large number of data we have to batch apex.

Also used for overcome the governing limits.

]]>
7296de3eaa24d144da33e53b58a093db Archit replied to the discussion Can we use mixed sobjects dml in one transaction? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/mixed-sobjects/#post-27059 Fri, 30 Mar 2018 08:17:52 +0530 Reply to Can we use mixed sobjects dml in one transaction?

Hello Ankit,

No, You can’t use the following sObjects with other sObjects when performing DML operations in the same transaction.

Thanks!

]]>
b796e65cc8b023d076b20fb5ad877654 Archit replied to the discussion URL Not hitting endpoint in SOAP Callout in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/not-hitting-endpoint-in-soap-callout/#post-27025 Thu, 29 Mar 2018 12:44:29 +0530 Reply to URL Not hitting endpoint in SOAP Callout

Hello Ankit,

I think you should enter the remote URL in remote settings under the setup menu in Salesforce org. Once the URL will be there you can be easily authorise the URL.

Thanks!

]]>
e5ab1c1171e7d4d3ae9c1d1a574fcee4 Archit replied to the discussion How to subscribe to an observable in Angular? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-subscribe-to-a-observable-in-angular/#post-27023 Thu, 29 Mar 2018 12:33:35 +0530 Reply to How to subscribe to an observable in Angular?

Hello Amresh,

If you start using Angular you will probably encounter observables when setting up your HTTP requests. So let’s start there.In Angular we can subscribe to an observable in two ways:

  • We subscribe to an observable in our template using the async pipe.
  • We subscribe to the observable ourselves using the actual subscribe() method

Thanks!

]]>
f0533be5ef8bbc1868bca2ec2c6782fe Archit replied to the discussion How to create dependency injection in component using by Angular? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-create-dependency-injection-in-component-using-by-angular/#post-27022 Thu, 29 Mar 2018 12:33:10 +0530 Reply to How to create dependency injection in component using by Angular?

Dependency Injection is a powerful pattern for managing code dependencies. This cookbook explores many of the features of Dependency Injection (DI) in Angular.

When Angular creates the AppComponent, the dependency injection framework creates an instance of the LoggerService and starts to create the UserContextService. The UserContextService… Read more

]]>
51206337e00d1c3a43c5c99808b901c8 Archit replied to the discussion How to build example of raising an event from a nested Salesforce component in Angular2? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-build-example-of-raising-an-event-from-a-nested-component/#post-27021 Thu, 29 Mar 2018 12:32:57 +0530 Reply to How to build example of raising an event from a nested Salesforce component in Angular2?

To use the Component we declare it inside a template and use a custom attribute on the element itself.

const app = {
template: `
<div>
My Counter:
<counter
count="$ctrl.count"
on-update="$ctrl.countUpdated($event);"></counter>
</div>
`,
controller() {
this.count = 2;
this.countUpdated = (event) => {
this.count… Read more

]]>
406a1c13d905adcd1b604a5d6fb1ad71 Archit replied to the discussion How to pass data to a Nested component in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-passing-data-to-a-nested-component/#post-27020 Thu, 29 Mar 2018 12:32:47 +0530 Reply to How to pass data to a Nested component in Salesforce?

The nested component exposes a property it can use to receive input from its container using the @Input decorator.

For the below code nested component is ready to receive input from it's parent component.

@Component({
selector: 'child-selector',
template: 'child.component.html'
})
export class ChildComponent {
@Input() title:string;
}

In… Read more

]]>
0962929799827551cec93cc2cff72535 Archit replied to the discussion How to include Encapsulating component style in angular 2? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-include-encapsulating-component-style-in-angular-2/#post-27019 Thu, 29 Mar 2018 12:32:33 +0530 Reply to How to include Encapsulating component style in angular 2?

For every Angular component you write, you may define not only an HTML template, but also the CSS styles that go with that template, specifying any selectors, rules, and media queries that you need.

One way to do this is to set the styles property in the component metadata. The styles property takes an array of strings that contain CSS code.… Read more

]]>
c8d7e42dbbf123e7e1f7aa9291b0b38e Archit replied to the discussion What's the best practice to follow in app builder for CSS if Salesforce has new release? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/whats-the-best-practice-to-follow-in-app-builder-for-css-if-salesforce-has-new-release/#post-26976 Thu, 29 Mar 2018 10:10:57 +0530 Reply to What's the best practice to follow in app builder for CSS if Salesforce has new release?

Hello Amresh,

When we move from older version to newer version the class inside the body get changed of older version. so we can call  css inherited by the class which is inside the body to reach out to newer version.

Thanks!

]]>
19f0d95be4a26249fceaee3e80ea6a66 Archit replied to the discussion Can we use Local Template in Nintex for processing a Salesforce Document? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/local-template/#post-26975 Thu, 29 Mar 2018 09:49:06 +0530 Reply to Can we use Local Template in Nintex for processing a Salesforce Document?

Hello Ankit,

Thanks for your explanation it really helps

]]>
8c330676ce7055568defdac05e5aa4f8 Archit replied to the discussion How to build custom pagination in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-build-custom-pagination-in-salesforce/#post-26949 Thu, 29 Mar 2018 08:51:59 +0530 Reply to How to build custom pagination in salesforce?

<apex:page standardcontroller="Account" recordsetvar="accounts">
<apex:pageblock title="Account List">
<apex:form>
<apex:pageblocksection>
<apex:datatable value="{!accounts}" var="a">
<apex:column value="{!a.name}"></apex:column>
</apex:datatable>
</apex:pageblocksection>
<apex:panelgrid… Read more

]]>
86a2890bb254abe4faead533475f2aee Archit replied to the discussion what are system objects in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-system-objects-in-salesforce/#post-26944 Thu, 29 Mar 2018 08:46:56 +0530 Reply to what are system objects in salesforce?

Hello,

System objects are the objects which are available in the Salesforce org like we can say all the standard objects.

Thanks

]]>
e7935a929798909d52d0305a6f3c5dba Archit replied to the discussion What is call back URL in the connected app? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/callback-url/#post-26929 Thu, 29 Mar 2018 08:34:03 +0530 Reply to What is call back URL in the connected app?

Hello,

Entering the callback URL (endpoint) that Salesforce calls back to your application during OAuth. It’s the OAuth redirect URI. If you enter multiple callback URLs, at run time Salesforce matches the callback URL value specified by the app with one of the values in Callback URL. It must match one of the values to pass validation.

Thanks!

]]>
249768a29a9ac48fbe1fbf921c355703 Archit replied to the discussion Is there any limitation to load fields for mapping in webmerge? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/maximum-fields-to-load-for-mappings/#post-26928 Thu, 29 Mar 2018 08:33:52 +0530 Reply to Is there any limitation to load fields for mapping in webmerge?

Hello Neha,

There are several resources to have a guide for limitation Congo and Nintex either you can join community of nintex or reach out to customer care for same.

Thanks!

]]>
1f9134fb41ab39cdc892933c97760094 Archit posted a new post. https://www.forcetalks.com/?p=25685 Thu, 29 Mar 2018 06:58:37 +0530
Create Multiple Records Of Different Salesforce Objects

Here we have a demo what we achieve through the code. What you need is to follow the below steps. Also, I welcome you guys…

]]>
3d04e85d39f7187d5b35b9a0dae5fed8 Archit posted a new post. https://www.forcetalks.com/?p=25809 Thu, 29 Mar 2018 06:49:57 +0530
Create Multiple Records of Salesforce Objects from a Single Page

Presently we can create records by click on tabs of their related objects but through the below-given piece of code, we can create records of…

]]>
951034090bae035b47906fc77e4effa7 Archit posted a new post. https://www.forcetalks.com/?p=26154 Thu, 29 Mar 2018 05:07:56 +0530
Salesforce Governor Limits - Cheatsheet

Salesforce a CRM  has there own limitation on the usage of resources which are actually based upon separate editions and these editions have there own governor…

]]>
e77c4c3b3d0bb84eb402483323080475 Archit replied to the discussion How to create a User through Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/user-through-apex/#post-26877 Thu, 29 Mar 2018 04:55:34 +0530 Reply to How to create a User through Salesforce Apex?

User u = new user();
u.LastName = ‘Test Code’;
u.Email = ‘test@test.com’;
u.Alias = ‘Tcode’;
u.Username = ‘test1234444@test.com’;
u.CommunityNickname = ‘test12’;
u.LocaleSidKey = ‘en_US’;
u.TimeZoneSidKey = ‘GMT’;
u.profileId = ’00e28000001Xsf3′;
u.LanguageLocaleKey = ‘en_US’;
u.EmailEncodingKey = ‘UTF-8’;
insert u;

]]>
91151350220d5b7617a0e9d139dc3daf Archit replied to the discussion Is there any way in Salesforce by which we can convert attachment into a file? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-way-in-salesforce-by-which-we-can-convert-attachment-into-a-file/#post-26876 Thu, 29 Mar 2018 04:55:21 +0530 Reply to Is there any way in Salesforce by which we can convert attachment into a file?

An app developed by Salesforce Lab – Magic Mover for Notes And Attachments to Lightning Experience for achieving the same.

 

]]>
5d8391fae60bb69e06fa8ab32d858972 Archit posted a new post. https://www.forcetalks.com/?p=25803 Thu, 29 Mar 2018 04:23:21 +0530
Salesforce : Data Protection Law In Europe

European Union Privacy Law Basics Europe was facing issues of privacy and data protection since decades. Now, the European Union (EU) has introduced a comprehensive…

]]>
bd73b2459af5bdf0637b149273a0d4a7 Archit replied to the discussion How to find all required fields of sobject in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-find-all-required-field-of-sobject-in-salesforce/#post-26869 Thu, 29 Mar 2018 03:53:28 +0530 Reply to How to find all required fields of sobject in Salesforce?

Schema.DescribeSObjectResult r = systemObjectType.getDescribe();
Map<String,Schema.SObjectField> M = r.fields.getMap();
for(String fieldName : M.keySet())
{
Schema.SObjectField field = M.get(fieldName);
Schema.DescribeFieldResult F = field.getDescribe();
//A nillable field can have empty content. A isNillable Boolean non-nillable field must have… Read more

]]>
2a7d29ad0fbe2d9b8b6dae56b6009e80 Archit replied to the discussion What is the difference between assert() and assertEquals() with example in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-assert-and-assertequals-with-example-in-salesforce/#post-26868 Wed, 28 Mar 2018 19:41:17 +0530 Reply to What is the difference between assert() and assertEquals() with example in Salesforce?

System.Assert accepts two parameters, one (mandatory) which is the condition to test for and the other a message (optional) to display should that condition be false.

System.AssertEquals and System.AssertNotEquals both accepts three parameters; the first two (mandatory) are the variables that will be tested for in/equality and the… Read more

]]>
068fa7854bddc39173c41c6f65637f3b Archit replied to the discussion Can we implement Salesforce Apex Code for custom logic in Conga Composer? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/apex-code-in-conga/#post-26867 Wed, 28 Mar 2018 19:37:02 +0530 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!!

 

]]>
fa3843ab3dd67a042d4063647493e74f Archit replied to the discussion How to build custom pagination in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-build-custom-pagination-in-salesforce/#post-26866 Wed, 28 Mar 2018 19:27:53 +0530 Reply to How to build custom pagination in salesforce?

You can get solution of it from my blog.

Thanks!

]]>
818ac45002e2ba8f9423a5a640e4b787 Archit replied to the discussion How to split one script in to multiple scripts in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-split-one-script-in-to-multiple-scripts-in-salesforce/#post-26865 Wed, 28 Mar 2018 19:27:42 +0530 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… Read more

]]>
92260f89cd320305f03b976dad1e940c Archit replied to the discussion How to Improve page load speed of Salesforce Visualforce pages? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/improve-page-load-speed-of-visualforce-pages/#post-26862 Wed, 28 Mar 2018 15:21:17 +0530 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!

]]>
f69567b1f2de40722a4f00251ec941c5 Archit replied to the discussion Can we use Local Template in Nintex for processing a Salesforce Document? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/local-template/#post-26861 Wed, 28 Mar 2018 15:15:14 +0530 Reply to Can we use Local Template in Nintex for processing a Salesforce Document?

Hello,

Can we really assign Local Template to Nintex document?

]]>
a1069730643d38bab9692fbf000bad45 Archit replied to the discussion Which custom fields or relationships in Salesforce ends with “__pc” and “__pr”? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/which-custom-fields-or-relationships-in-salesforce-ends-with-pc-and-pr/#post-26859 Wed, 28 Mar 2018 15:07:56 +0530 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!

]]>
08e121da34f03fabedab0f6ecad3fcc4 Archit replied to the discussion How to Improve page load speed of Salesforce Visualforce pages? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/improve-page-load-speed-of-visualforce-pages/#post-26857 Wed, 28 Mar 2018 15:02:12 +0530 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!

]]>
0f33b9342dfe80a23c39836a80119d00 Archit replied to the discussion Is it possible to create community user through Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/community-user/#post-26853 Wed, 28 Mar 2018 14:52:04 +0530 Reply to Is it possible to create community user through Salesforce Apex?

User u = new user();
u.LastName = 'Test Code';
u.Email = 'test@test.com';
u.Alias = 'Tcode';
u.Username = 'test1234444@test.com';
u.CommunityNickname = 'test12';
u.LocaleSidKey = 'en_US';
u.TimeZoneSidKey = 'GMT';
u.profileId = '00e28000001Xsf3';
u.LanguageLocaleKey = 'en_US';
u.EmailEncodingKey = 'UTF-8';
insert u;

]]>
2aaf16720145af5992ea6d705ed6f7f8 Archit replied to the discussion Error while uninstalling a package in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/error-while-uninstalling-a-packge/#post-26851 Wed, 28 Mar 2018 14:48:37 +0530 Reply to Error while uninstalling a package in Salesforce

Hello 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

]]>
2ce26c174c98504a91e1f026ac62e347 Archit replied to the discussion How to get start date and end date with time in single function from calendar in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-get-start-date-and-end-date-with-time-in-single-function-from-calendar-in-salesforce/#post-26847 Wed, 28 Mar 2018 14:43:38 +0530 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…

Read more

]]>
8d2e9d9b6657fd0987cec4cec1efd24a Archit replied to the discussion What are the differences between Salesforce Classic and Salesforce Lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/classic-vs-lightning/#post-26846 Wed, 28 Mar 2018 14:39:45 +0530 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… Read more

]]>
4e6d0b722331861b6be76f97a1459ed9 Archit replied to the discussion Error while uninstalling a package in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/error-while-uninstalling-a-packge/#post-26844 Wed, 28 Mar 2018 14:21:38 +0530 Reply to Error while uninstalling a package in Salesforce

I was also facing the same issue while uninstalling the same. I would appreciate both of you for providing helpful answer

Thanks!

]]>
59190854a835d3bc917b28b0025c20ef Archit replied to the discussion Is there any limitation to load fields for mapping in webmerge? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/maximum-fields-to-load-for-mappings/#post-26830 Wed, 28 Mar 2018 11:30:45 +0530 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.

]]>
f0db6862c250bd3931e0a5bb5b84cf61 Archit replied to the discussion Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/output-type-options/#post-26828 Wed, 28 Mar 2018 11:20:20 +0530 Reply to Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image?

Ok Thanks Adarsh

]]>
0cee2b6a3f16df8269b1ee691b84dab7 Archit replied to the discussion How to send Community Welcome Email to a User through Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-send-community-welcome-to-user-through-apex/#post-26825 Wed, 28 Mar 2018 11:09:53 +0530 Reply to How to send Community Welcome Email to a User through Salesforce Apex?

Thanks Pranav,

Your solution worked for me..!!

]]>
0acf2b26fb7c89c6ddabf7e3df5a40a3 Archit replied to the discussion Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/output-type-options/#post-26823 Wed, 28 Mar 2018 11:08:10 +0530 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.

]]>
1f0277098f76faba14e3dcd37e8a1f10 Archit replied to the discussion Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/output-type-options/#post-26819 Wed, 28 Mar 2018 11:05:33 +0530 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.

 

]]>