• Manish Choudhari
  • NEWBIE
  • 446 Points
  • Member since 2017
  • Salesforce System Architect
  • Salesforce.com


  • Chatter
    Feed
  • 15
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 75
    Replies
I'm unable to create a new global action. When I click on New Action from Global Action, nothing happens. Please help
Hello, 
I have problem when I want to open my visualforce page 

Too many SOQL queries: 101 

Can you help me please.
Hi,

I'm trying to run a report that should validate as follows. The system isn't accepting it and I probably have it parsed incorrectly. Can someone take a look please?

(1 AND 3 (OR  2 (OR  (4 AND 5))) AND 6)
Hi All,
 
We have the following scenario. 
 
We want to have classic pages look like lightning in Napili Template 
 
1. In our approach we added an attribute called lightningstylesheets=true for visualforce page with a hope that the page will be automatically rendered with lightning styles in community, there comes a road block with Salesforce - 
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/vf_dev_best_practices_slds_lightningstylesheets.htm
 
 
We cannot use lightningstylesheets attribute in community
 
 
2. So as a work around we created a lightning app with the Visualforce embedded in it.
 
 
<aura:component implements="forceCommunity:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,lightning:actionOverride,forceCommunity:availableForAllPageTypes">
    <iframe src="https://xxxxx/apex/viewOrder?id=8011F0000009IbO" style="height:800px;width:1000px"/>
</aura:component>
 
 
After doing this we tried overriding the Standard View functionality of Salesforce
 
Even though we have given the SampleComponent as the override in Lightning Experience it is not working.
 
 
3. Apart from the limitation we faced in point.2 there is also a limitation in passing parameters via url within community.
 
 
Below is the link of Salesforce Idea
 
 
https://success.salesforce.com/ideaView?id=0873A000000CLheQAG
 
Please suggest what is the best way to implement this.
Hey Guys, 

is it possible to append a visualforce page to another one ? One page is just a text file. To reduce the lines of Code of the "real" visualforce page, i am looking for a way to merge these two pages. Is there a simple way to do this ? 

Greetings,
Sandra
Hello,

In "Lightning Components Basics", post "Create and Edit Lightning Components", there is a paragraph as below:
Indeed, the Developer Console has a number of features for working with Lightning Components. There’s also File | Open | Lightning Resources, which lets you open a bunch of Lightning resources all at once. Useful!
But in Developer Console, I cannot find "Lightning Resources" under "Open", instead it is File | Open Lightning Resources. Please update the post.
 
Hi All,

I have a custom bar chart written in VF page where we are dsipalying records based on controller. Currently we are displayng the values in generic way. But we want to display values differently based on user locale/country. For example the value shown to Indian user will be 1,00,000 but the same value shown to US user will be in the format 100,000. Kindly provide me solution.

Thanks,
Anuj

Hi Devs,

I had a requirement to fetch the external data and update back the response in saleforce system based on trigger action.
The design is as follows,
When zipcode field in opportunity is changed or populated ,the trigger calls the external api and passes zipcode value .
The external api returns state,city,country based on zipcode .
The external api just accepts 1 zipcode at a time .
The design is implemented and working fine when opportunity is changed from UI .
Since there could be many opportunity getting updated/updated in bulk  , I have enclosed a HTTP.send(req) in for loop .
If there are more than 100 records getting updated , more that 100 callouts gettting called in single transaction and will throw callout limit exception .

Any better design to avoid the error and functionality works fine even for bulk data.
This is one of the most common use cases, we want to setup a secure middleware user to access and create records in salesforce but using Oauth2 security. I need help in getting the right configuration set up.

Here is what I have done till now.
  1. Created a connected app using the Enable Oauth settings, and set the Oauth Scope.
  2.  Created an Integration Profile, with API Enabled and API Only user as true. Granted connected app access to this profie.
  3. Created an Integration user with this profile.
Step 1 has given me the client Id and Client secret, and Step 3 has provided the username - but it also sends an email with password to the user.
What is that I should be doing to follow the right practice ?

Hi folks,
could you please check and let me know any one have idea on this? and let me know is this requirement possilbe or not for Contact --->Acitivy history.
scneario 1:
1. when click on Subject link under Activity history , is it possible to open 'test' link under IVR Journy hisotory( please see below screenshot)?
is it possible ,if yes please let me know how can do it ?

User-added image

scneario 2 :
can i display IVR Jorney values under Activity History ?  in IVR journye i have total 10 fields, i need to add these 10 fields details to Acitvity history ? 
present, ivr journey details populating based on when a record inserted into IVR jouney object .
please check give any ideas how to do this?
Hi

I've been looking around but i have found nothing regarding this topic so far. In the lighting app builder, you can add global actions to your app pages. I know how to create your own global actions, but when i try to add a custom lighting component action, it just does not show up in the list (with all the other global actions i tried E.g. New Record, Visualforce Page etc. , it worked). Also, i can add the custom action to a publisher layout
My custom action lighting component looks like that:
<aura:component implements="force:lightningQuickAction,force:appHostable,flexipage:availableForAllPageTypes" access="global">

</aura:component>
Am i missing something, or is this simply not possible?
for ex:  for(Sobject sobj : Database.Query(sobjQuery)) 
Is there any other way to represent this?
Hello,

I just started learning. Sorry if my question is very basic but I was not able to find the answer to it.
I am trying to create a button that when clicked, a modal pops up with two buttons that each will create a separate message on the first page.
So far I created a new lightening component and I was able to create the button, but the thing is that I don't know how I can debug/run it so that I can see the button.
I went through multiple videos but I cuoldn't figure it out. I appreciate if someone can give me a clue.

Thanks!