-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
12Questions
-
0Replies
How to pass List<sobject > as parameter to Javascript function?
Hi,
I want to pass the List<sobject> as parameter to javascript function.
I want to perfom this on Onclick action,I tried passing the parameter's normally but the function is not getting invoked.
kindly help me on how to pass list<sobject> as param to js function?
Thanks,
Mahesh Patel
I want to pass the List<sobject> as parameter to javascript function.
I want to perfom this on Onclick action,I tried passing the parameter's normally but the function is not getting invoked.
kindly help me on how to pass list<sobject> as param to js function?
Thanks,
Mahesh Patel
-
- Maheshh Patel
- July 28, 2016
- Like
- 0
- Continue reading or reply
Need to query all the Account records which are part of Account Hierarchy?
Hi All,
Please suggest on how to queryall the Account records which are part of the AccountHierarchy(Parent<-Parent<-Parent->Child->Child->Child Relationship).
Thanks for the Info,
Mahesh Patel
Please suggest on how to queryall the Account records which are part of the AccountHierarchy(Parent<-Parent<-Parent->Child->Child->Child Relationship).
Thanks for the Info,
Mahesh Patel
-
- Maheshh Patel
- July 13, 2016
- Like
- 0
- Continue reading or reply
Salesforce to Redhat integration Bidirectional?
Hi All ,
I am new to integration and have recuirement to make a callout to redhat!!
If anyone has on Salesforce --> Redhat Integration ...Brief info with 2 to 3 points on how to connect(mechanism) and the supported Api's, would be very helpful.
Thanks for the info,
Mahesh patel
I am new to integration and have recuirement to make a callout to redhat!!
If anyone has on Salesforce --> Redhat Integration ...Brief info with 2 to 3 points on how to connect(mechanism) and the supported Api's, would be very helpful.
Thanks for the info,
Mahesh patel
-
- Maheshh Patel
- June 06, 2016
- Like
- 0
- Continue reading or reply
Duplicate Management Fuzy Logic?
Hi All,
Wanted to know if any want has used Fuzy Logic as part of Duplicate Management?
If Yes,Please let me know was it effective(got the expected results)?
Thanks,
Mahesh
Wanted to know if any want has used Fuzy Logic as part of Duplicate Management?
If Yes,Please let me know was it effective(got the expected results)?
Thanks,
Mahesh
-
- Maheshh Patel
- May 23, 2016
- Like
- 0
- Continue reading or reply
Brief Difference between partner and customer community?
Hi,
Can help me with the brief description on difference between the customer and partner commuity?
It would be helpful if you can brief with regards to the acess user receive's upon enabling the partner user and customer community user?
Your valuable info would be of much help!!
Thanks,
Mahesh Patel
Can help me with the brief description on difference between the customer and partner commuity?
It would be helpful if you can brief with regards to the acess user receive's upon enabling the partner user and customer community user?
Your valuable info would be of much help!!
Thanks,
Mahesh Patel
-
- Maheshh Patel
- May 18, 2016
- Like
- 0
- Continue reading or reply
How to Clone Accounteam Members to Case Team on adding team members to AccountTeam?
Hi All,
How to Clone Accounteam Members to Case Team on adding team members to AccountTeam?
As you guys might be knowing "We can't write triggers on AccountTeam" -Salesforce limitation.
Any suggestion on this would be helpful
Thanks In Advance,
Mahesh Patel
How to Clone Accounteam Members to Case Team on adding team members to AccountTeam?
As you guys might be knowing "We can't write triggers on AccountTeam" -Salesforce limitation.
Any suggestion on this would be helpful
Thanks In Advance,
Mahesh Patel
-
- Maheshh Patel
- April 22, 2016
- Like
- 0
- Continue reading or reply
CORS issue when trying to access salesforce Rest API from Mobile App
HI All,
We have created a Mobile Hybrid App,whenrin we are making ajax callout from Mobile to salesforce Rest resource/
I am bale to connect from workbench,postman,Java App,Android App However when trying to connect from the hybrid app getting the
CORS error.I did try putting the Source IP address from where callout is being made (IN CORS seeting) but no sucess.
It would be verymuch helpfull if you can share your insights on the same !!
Thanks Much,
Mahesh Patel
We have created a Mobile Hybrid App,whenrin we are making ajax callout from Mobile to salesforce Rest resource/
I am bale to connect from workbench,postman,Java App,Android App However when trying to connect from the hybrid app getting the
CORS error.I did try putting the Source IP address from where callout is being made (IN CORS seeting) but no sucess.
It would be verymuch helpfull if you can share your insights on the same !!
Thanks Much,
Mahesh Patel
-
- Maheshh Patel
- December 28, 2016
- Like
- 0
- Continue reading or reply
RelatedContent on Opportunity
Hi Team,
On opportunity creation, I need to add a word document to related content related list.
I have written a trigger for the same and by reffering some blog to use contentdocumentlink.
But the document is being referenced in the Notes&attachment section instead of the RelatedContent.
Please find the below piece of code and give some insight...
Map<Id,ContentVersion> idToCvMap = new Map<Id,ContentVersion>([Select Id,ContentDocumentId from ContentVersion where Id IN: cvId]);
ContentDocumentLink cdl;
List<ContentDocumentLink> cdlLst = new List<ContentDocumentLink>();
for(Opportunity Opp: Trigger.New){
for(string str:idToCvMap.keyset()){
cdl = new ContentDocumentLink (LinkedEntityId=Opp.Id,ContentDocumentId= (idToCvMap.get(str)).ContentDocumentId,ShareType='V');
cdlLst.add(cdl);
idToCvMap.remove(str);
break;
}
}
insert cdlLst;
Thanks for the Info :)
On opportunity creation, I need to add a word document to related content related list.
I have written a trigger for the same and by reffering some blog to use contentdocumentlink.
But the document is being referenced in the Notes&attachment section instead of the RelatedContent.
Please find the below piece of code and give some insight...
Map<Id,ContentVersion> idToCvMap = new Map<Id,ContentVersion>([Select Id,ContentDocumentId from ContentVersion where Id IN: cvId]);
ContentDocumentLink cdl;
List<ContentDocumentLink> cdlLst = new List<ContentDocumentLink>();
for(Opportunity Opp: Trigger.New){
for(string str:idToCvMap.keyset()){
cdl = new ContentDocumentLink (LinkedEntityId=Opp.Id,ContentDocumentId= (idToCvMap.get(str)).ContentDocumentId,ShareType='V');
cdlLst.add(cdl);
idToCvMap.remove(str);
break;
}
}
insert cdlLst;
Thanks for the Info :)
-
- Maheshh Patel
- October 13, 2015
- Like
- 0
- Continue reading or reply
Environment hub
I have environment hub enabled for my org.
But environment hub tab is missing from the tab list.
My profile is set to system admin...
Any info on this would be helpful !!! Thank you :)
But environment hub tab is missing from the tab list.
My profile is set to system admin...
Any info on this would be helpful !!! Thank you :)
-
- Maheshh Patel
- July 20, 2015
- Like
- 1
- Continue reading or reply
Allfields should be selected by default on Search page upon clicking the Lookup icon
Hi,
I have a reqirement werein upon clicking the lookup field the search page should have the All fields radio button selected y default.
Standard functionality provided by salesforce has Name field selected y deafult.
Is there any configurtion setting to achieve this.

Any info on this would be helpful!!!
Thanks in Advance!!!
I have a reqirement werein upon clicking the lookup field the search page should have the All fields radio button selected y default.
Standard functionality provided by salesforce has Name field selected y deafult.
Is there any configurtion setting to achieve this.
Any info on this would be helpful!!!
Thanks in Advance!!!
-
- Maheshh Patel
- June 23, 2015
- Like
- 0
- Continue reading or reply
Receive Error when Accessing Installed Managed Package API
I have created a managed package and installed it in other Org.
When trying to acces Managed package method(API) ,It is invoking the method but throwing the below error
An internal server error has occurred
I am not able to trace the error as there are no debug logs.
Any help is much appreciated !!
When trying to acces Managed package method(API) ,It is invoking the method but throwing the below error
An internal server error has occurred
I am not able to trace the error as there are no debug logs.
Any help is much appreciated !!
-
- Maheshh Patel
- June 09, 2015
- Like
- 0
- Continue reading or reply
How to retrieve child page parameters?
I have page included(<apex:include pagname="page\parameters">) in the Master Page.
I want to retreive the child page parameters from URL in the child controller...
I tried through "apexpages.currentpage().getparameters().get('id')" ,but this is reffering to the MasterPage parameters..
Kindly suggest how to achieve this?
Thanks for your inputs in adavance!!
I want to retreive the child page parameters from URL in the child controller...
I tried through "apexpages.currentpage().getparameters().get('id')" ,but this is reffering to the MasterPage parameters..
Kindly suggest how to achieve this?
Thanks for your inputs in adavance!!
-
- Maheshh Patel
- May 19, 2015
- Like
- 0
- Continue reading or reply
Environment hub
I have environment hub enabled for my org.
But environment hub tab is missing from the tab list.
My profile is set to system admin...
Any info on this would be helpful !!! Thank you :)
But environment hub tab is missing from the tab list.
My profile is set to system admin...
Any info on this would be helpful !!! Thank you :)
-
- Maheshh Patel
- July 20, 2015
- Like
- 1
- Continue reading or reply