Forcetalks | Bhavesh | Activity https://www.forcetalks.com/bhaveshkjogi/activity/ Activity feed for Bhavesh. Mon, 30 Mar 2026 15:01:33 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 a4db7f03321a70ad87946665f3a29b36 Bhavesh replied to the discussion What is the difference between Salesforce Batches and Queueable Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/when-to-use-batches-and-queueable-apex/#post-67884 Wed, 29 Jan 2020 06:52:06 +0530 Reply to What is the difference between Salesforce Batches and Queueable Apex?

Can i replace my Queueable class to batch class?  It there any example how can i convert my Queueable class to batch?

]]>
cf27f7e4221f0534380f0debd2be1d6b Bhavesh and Marco Trova are now connected https://www.forcetalks.com/activity/p/19490/ Mon, 23 Oct 2017 11:49:52 +0530 0 97a6a7bbf3d662e1d1cf7a4159672775 Bhavesh started the discussion Package review failed in Salesforce AppExchange in the forum https://www.forcetalks.com/salesforce-topic/fail-review-in-appexchange/ Mon, 26 Jun 2017 10:55:07 +0530 Package review failed in Salesforce AppExchange

Hello,

I tried to submit my managed package in appexchange but it fail.

My app is using third party api ( Goverment website). Appexchange is saying submit some document but we dont have that web site's certificate.

 

Anyone help me how to pass the security review from AppExchange.

Thanks,

Bhavesh

]]>
dbd5899eed8b48a2f696b12c94a00d08 Bhavesh replied to the discussion List of Public Group from which user is logged in Salesforce Community in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/list-of-public-group-from-which-user-is-logged-in-salesforce-community/#post-20503 Sat, 17 Jun 2017 04:09:35 +0530 Reply to List of Public Group from which user is logged in Salesforce Community

You can get a list of active user sessions (i.e. logged in users) via <Your Name> Setup> Security Controls> Session Management or the API.

]]>
95d6fcd61cccfffeccc0671610c0dcd3 Bhavesh and Rajesh are now connected https://www.forcetalks.com/activity/p/17534/ Mon, 12 Jun 2017 12:00:39 +0530 0 d821158de9dfbab1278b36256ccee8a3 Bhavesh replied to the discussion What is the purpose of Using "seeAllData=true" in Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-purpose-of-using-seealldatatrue/#post-19948 Fri, 05 May 2017 10:48:46 +0530 Reply to What is the purpose of Using "seeAllData=true" in Salesforce Apex?

using this option you can use live data for unit test case

]]>
c4337562fcdfa8b941cb1d5fe6c39732 Bhavesh replied to the discussion Error while making callout in salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/error-while-making-callout/#post-17855 Wed, 11 Jan 2017 08:20:14 +0530 Reply to Error while making callout in salesforce

It is the issue of certification. that website have security certification. you have to submit that in salesforce options.

]]>
9db606fd1f4e5c1a0fcee02f7191c58d Bhavesh replied to the discussion Debug Log statement - system.debug - in production in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/debug-log-statement-system-debug-in-production-in-salesforce/#post-17854 Wed, 11 Jan 2017 08:11:45 +0530 Reply to Debug Log statement - system.debug - in production in Salesforce

We can not see the debug logs in production.

If you wrote some debug logs in your code and now you created one managed package of that code.

That managed package is install on customer org. Now whatever logs you wrote in managed package, you can not see those.

So it is better to delete those system.debug logs from managed package.

If you… Read more

]]>
d794a8e2495626b94a8f618e2ba3aa65 Bhavesh replied to the discussion Sorting based on column value in salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/sorting-based-on-column-value/#post-17717 Tue, 03 Jan 2017 14:40:39 +0530 Reply to Sorting based on column value in salesforce

If you have apex page like:

 

<apex:commandButton value="Sort Table" action="{!sortMethod}" reRender="pgblcktbl"/>

you are callilng sortMethod:

 

ublic void sortMethod(){
if(selectedField == 'Name')
accList = [select name,accountnumber,annualrevenue from account where id IN:accList order by Name limit 100 ];
else if(selectedField… Read more

]]>
417c3dea31db9ab9a66ed7db7a57a530 Bhavesh started the discussion Need some clarification on user management in Salesforce? in the forum https://www.forcetalks.com/salesforce-topic/need-to-clarification-on-user/ Fri, 09 Dec 2016 05:31:20 +0530 Need some clarification on user management in Salesforce?

We have created one system administrator user. We apply some duplicate rules on Account page.

When we update the account address using third party app, it is working fine.

Now I created one user under my system administrator account. Now that created user when going to update the account address using that third party app, it is… Read more

]]>
4313ecb8c80b83b9e908bca0c61872ff Bhavesh replied to the discussion How can I know that the profile is custom or standard in salesforce through query? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-know-that-the-profile-is-custom-or-standard-in-salesforce-through-query/#post-17106 Wed, 07 Dec 2016 11:07:18 +0530 Reply to How can I know that the profile is custom or standard in salesforce through query?

Hello Pranav,

You can do like this:

List<String> stdProNames= new List<String>{'System Administrator','Standard User','Read Only','Solution Manager','Marketing User','Contract Manager'};
Profile[] customProfiles = [Select Id, Name from Profile where Name NOT IN :stdProNames];
System.debug(customProfiles);

]]>
f86f7a59a94f089ab9f3b5899553a774 Bhavesh started the discussion Is there any way to delete or deprecate the custom field from manage application? in the forum https://www.forcetalks.com/salesforce-topic/want-to-delete-field-from-our-manage-application/ Tue, 25 Oct 2016 07:52:18 +0530 Is there any way to delete or deprecate the custom field from manage application?

We have 3 integration with Salesforce and 50+ customer is using it.

We want to change or delete 2 fields from manage application from our code or package. How 's it possible?

Is there any way to delete or deprecate the custom field from manage application

]]>
41850120a91501d100439915aa4ae127 Bhavesh started the discussion How can I run batch class in post install script? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-run-batch-class-in-post-install-script/ Fri, 09 Sep 2016 05:10:15 +0530 How can I run batch class in post install script?

Hello Team,

I was trying to run batch class in post install script for delete my customer's old data of custom object.

I had written that code in upgrade script of post install script. It is throwing error of 'Post Install Script Error'

Any one help me how to delete data of custom object when customer install package?

Thanks

]]>
e4fc94bedbdbd67eb75e52a326de00e1 Bhavesh replied to the discussion Post Install Script in Salesforce for deleting custom object data in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/post-install-script-in-salesforce-for-deleting-custom-object-data/#post-15930 Thu, 08 Sep 2016 08:46:55 +0530 Reply to Post Install Script in Salesforce for deleting custom object data

Hello Surabhi,

Thanks for quick reply.

I am doing another operation also in post install script. Please check below whole code of my post install script.

public class TaxNowPostInstall implements InstallHandler
{
public void onInstall(InstallContext context)
{
if(context.previousVersion() == null) // first install - create a new TaxNow… Read more

]]>
ad10bfbf761acf251c07fabf54886f6c Bhavesh started the discussion Post Install Script in Salesforce for deleting custom object data in the forum https://www.forcetalks.com/salesforce-topic/post-install-script/ Thu, 08 Sep 2016 05:25:42 +0530 Post Install Script in Salesforce for deleting custom object data

I am deleting custom object data using Post Install Script. if data is huge, post install script error is coming.

I am writing below code in it.

List<UserMessage__c> m_loUserMessage;
m_loUserMessage = [select Title__c, MsgLine1__c, MsgLine2__c, MsgLine3__c, MsgLine4__c, MsgLine5__c, ReturnPage__c,
Increment__c from UserMessage__c order… Read more

]]>
58c4bb28f96094c8ff63e061342fd76d Bhavesh started the discussion Which one is better: Visualforce page or custom object? in the forum https://www.forcetalks.com/salesforce-topic/which-one-is-better-visual-force-page-or-custom-object/ Wed, 17 Aug 2016 13:07:46 +0530 Which one is better: Visualforce page or custom object?

Hello guys,

I want to make one page in salesforce. What is the best way to create visualforce page?

Should i go to custom object and create one page?

or

Should i write html coding and use that ?

]]>
c8e7c600ab741f606fcfe9085c6287b3 Bhavesh started the discussion How to ignore duplicate management rules and save update address? in the forum https://www.forcetalks.com/salesforce-topic/error-on-duplicate-management-rules/ Sat, 13 Aug 2016 03:08:42 +0530 How to ignore duplicate management rules and save update address?

Hello guys,

I want to ignore duplicate management rules. I am validating the address on Account page. When i saved the address is showing the attached image of my sf page. I am getting Save (ignore) button came.

I want to know which type of coding is used behind the Save(ignore) button. I have my own button. I want to validate address when… Read more

]]>
27fcd3cc10c812f93a2756762fd1bbf5 Bhavesh and Ravi are now connected https://www.forcetalks.com/activity/p/11717/ Sun, 31 Jul 2016 07:48:12 +0530 0 1cd0ddd8c38e7c3029a7e14a7c847eaf Bhavesh and Sourabh are now connected https://www.forcetalks.com/activity/p/10692/ Fri, 01 Jul 2016 12:43:15 +0530 0 7c0c5897f500d4d0ba3884256f55a5de Bhavesh replied to the discussion How to use encodeURI in Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-do-encodeuribhavesh-jogi/#post-13451 Wed, 22 Jun 2016 11:14:16 +0530 Reply to How to use encodeURI in Salesforce Apex?

Hello Abhinav,

 

I used this yesterday but actually result of this EncodingUtil.URLENCODE  is like 'bhavesh+jogi'

Actually result should be 'bhavesh%20jogi'.

Let me know if other solution is in salesforce.

]]>
52ee5b45e9f1314a83ce88422be93896 Bhavesh started the discussion How to use encodeURI in Salesforce Apex? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-do-encodeuribhavesh-jogi/ Tue, 21 Jun 2016 06:35:56 +0530 How to use encodeURI in Salesforce Apex?

I want to use encodeURI("bhavesh jogi") in salesforce apex. How can I do that?

]]>
7d2e93a14aeac1ec956ca5dade19b4ca Bhavesh started the discussion How to use encodeURI in Salesforce Apex? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-do-encodeuribhavesh-jogi/ Tue, 21 Jun 2016 06:35:56 +0530 How to use encodeURI in Salesforce Apex?

I want to use encodeURI in salesforce apex. How can I do that?

]]>
7d2e93a14aeac1ec956ca5dade19b4ca Bhavesh started the discussion How to use encodeURI in Salesforce Apex? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-do-encodeuribhavesh-jogi/ Tue, 21 Jun 2016 06:35:56 +0530 How to use encodeURI in Salesforce Apex?

I want to use encodeURI in salesforce apex. How can I do that?

]]>
dcc41e135910b9ab7772dbc9d2422fae Bhavesh started the discussion How to use encodeURI in Salesforce Apex? in the forum https://www.forcetalks.com/salesforce-topic/how-can-i-do-encodeuribhavesh-jogi/ Tue, 21 Jun 2016 06:35:56 +0530 How to use encodeURI in Salesforce Apex?

I want to use encodeURI in salesforce apex. How can i do that

]]>
a387eaf3b54fbdc0c29e9443d85edd80 Bhavesh and Hazel are now connected https://www.forcetalks.com/activity/p/10030/ Mon, 20 Jun 2016 13:16:38 +0530 0 8e6fb79207c510cb4fd60cbc8d1f2cfc Bhavesh and Surbhi are now connected https://www.forcetalks.com/activity/p/10010/ Mon, 20 Jun 2016 07:37:17 +0530 0 c09a82265fa76bf0ea4e416642cb83fa Bhavesh replied to the discussion Want to put my app in AppExchange, getting third party url error in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/want-to-put-my-app-in-appexchange-getting-third-party-url-error/#post-13161 Sat, 18 Jun 2016 15:59:22 +0530 Reply to Want to put my app in AppExchange, getting third party url error

Hello Abhinav,

How can i get burp license? Is there any tool?

]]>
86d1d14e3ced1b3e935c5638d2a2d0d5 Bhavesh started the discussion Want to put my app in AppExchange, getting third party url error in the forum https://www.forcetalks.com/salesforce-topic/want-to-put-my-app-in-appexchange-getting-third-party-url-error/ Tue, 14 Jun 2016 10:44:01 +0530 Want to put my app in AppExchange, getting third party url error

Hello Team,

I want to put my app in AppExchange. Every time I am getting third party url's error report. My app fails to upload.

Any one suggest me? What is the step to pass this.

I have to put my whole code in it or only managed package?

I am using one soap wsdl url in my app.  Please need your inputs.

Thanks,

Bhavesh

]]>
973daf206d844a58861771160cf6f605 Bhavesh started the discussion Want to put my app in AppExchange, getting third party url error in the forum https://www.forcetalks.com/salesforce-topic/want-to-put-my-app-in-appexchange/ Tue, 14 Jun 2016 10:44:01 +0530 Want to put my app in AppExchange, getting third party url error

Hello Team,

I want to put my app in AppExchange. Every time I am getting third party url's error report. My app fails to upload.

Any one suggest me? What is the step to pass this.

I have to put my whole code in it or only managed package?

I am using one soap wsdl url in my app.  Please need your inputs.

Thanks,

Bhavesh

]]>
499fdc8ea9453fb6f50e1d39511f34c0 Bhavesh started the discussion Can I delete remote site setting url from managed package? in the forum https://www.forcetalks.com/salesforce-topic/want-to-delete-remote-site-setting-url-from-managed-package/ Fri, 10 Jun 2016 05:47:13 +0530 Can I delete remote site setting url from managed package?

Can i delete remote site setting url from managed package?

]]>
74a8349cb165e82152955df5f122d65a Bhavesh and Satyakam are now connected https://www.forcetalks.com/activity/p/8584/ Tue, 24 May 2016 08:55:23 +0530 0 0b2d6772472746e3ed1c71e31f0f6a0f Bhavesh and Nauman are now connected https://www.forcetalks.com/activity/p/8558/ Mon, 23 May 2016 13:20:00 +0530 0 8517ae1fb87f13ca6060883cbe1f5904 Bhavesh started the discussion Anyone working in Fujitsu? in the forum https://www.forcetalks.com/salesforce-topic/anyone-working-in-fujitsu/ Thu, 19 May 2016 08:39:35 +0530 Anyone working in Fujitsu?

I have interview at pune in fujitsu. Anyone know some inteview tips in this company?

]]>
8517ae1fb87f13ca6060883cbe1f5904 Bhavesh started the discussion Anyone working in Fujitsu? in the forum http://www.forcetalks.com/salesforce-topic/anyone-working-in-fujitsu/ Thu, 19 May 2016 08:39:35 +0530 Anyone working in Fujitsu?

I have interview at pune in fujitsu. Anyone know some inteview tips in this company?

]]>
89f9671ddeeeeade72aa46510ae7a7cb Bhavesh and Himanshu are now connected https://www.forcetalks.com/activity/p/8146/ Wed, 18 May 2016 12:04:38 +0530 0 91a59e8ab7f33bbcd53bffe5b7d853c7 Bhavesh and Anup are now connected https://www.forcetalks.com/activity/p/8089/ Tue, 17 May 2016 07:42:30 +0530 0 0ae51700fceeb073a8d61549ae5c1e6b Bhavesh and Ajay Prakash are now connected https://www.forcetalks.com/activity/p/8071/ Tue, 17 May 2016 03:50:05 +0530 0 5d8071d24b477fab1ce2578304db08cf Bhavesh and Jogender are now connected https://www.forcetalks.com/activity/p/7836/ Fri, 13 May 2016 12:15:31 +0530 0 7c7ff4422eb89dc57af6071a89f281fb Bhavesh started the discussion Stub class from Generated WSDL in the forum https://www.forcetalks.com/salesforce-topic/stub-class-from-generated-wsdl/ Wed, 11 May 2016 12:17:25 +0530 Stub class from Generated WSDL

Hello Team,

I generated stub class using option of Generated WSDL. WSDL was SOAP base.

In request and response, we have XML format of data. I want to store that xml in string. I did not get proper xml format when i am storing it.

]]>
f77d31d40f06bdf7da66b0b2b89c9534 Bhavesh and rambabu are now connected https://www.forcetalks.com/activity/p/5808/ Fri, 29 Apr 2016 15:40:56 +0530 0 79444fbf7112c50aed43b83ea22ec016 Bhavesh and Shubham are now connected https://www.forcetalks.com/activity/p/5706/ Fri, 29 Apr 2016 11:04:58 +0530 0 7b7b56f120ec6923ffb83a4ae71728f3 Bhavesh and Gourav are now connected https://www.forcetalks.com/activity/p/5670/ Fri, 29 Apr 2016 09:11:05 +0530 0 3f6e38622a193db96c589c44aee30d7f Bhavesh and Ajit are now connected https://www.forcetalks.com/activity/p/5627/ Fri, 29 Apr 2016 08:35:29 +0530 0 a2e30d5c3686bbbcaa5ca3ab47152713 Bhavesh and Naman are now connected https://www.forcetalks.com/activity/p/5462/ Fri, 29 Apr 2016 06:38:24 +0530 0 605f52498b6ab2cccc228951ccb39296 Bhavesh and Piyush are now connected https://www.forcetalks.com/activity/p/5461/ Fri, 29 Apr 2016 06:35:39 +0530 0 98f8456e33ba65f26f4cd6708f366a26 Bhavesh replied to the discussion Enable Quotes and Order using Post install Script in the forum Salesforce® Discussions http://www.forcetalks.com/salesforce-topic/enable-quotes-and-order-using-post-install-script/#post-10586 Thu, 28 Apr 2016 03:58:02 +0530 Reply to Enable Quotes and Order using Post install Script

I think enable quotes or order manually or do like @abhinav told both are same. So It is not different.

]]>
5b2489e826d141f41408eccf5d65d39a Bhavesh replied to the discussion Enable Quotes and Order using Post install Script in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/enable-quotes-and-order-using-post-install-script/#post-10423 Tue, 26 Apr 2016 05:52:43 +0530 Reply to Enable Quotes and Order using Post install Script

@Abhinav, Where should i write above code then? So I enable Quotes when customer installs my package?

Do you have any idea where should i write?

]]>
e21b01d5eead09c568defcfc971a6420 Bhavesh replied to the discussion Enable Quotes and Order using Post install Script in the forum Salesforce® Discussions http://www.forcetalks.com/salesforce-topic/enable-quotes-and-order-using-post-install-script/#post-10423 Tue, 26 Apr 2016 05:52:43 +0530 Reply to Enable Quotes and Order using Post install Script

@Abhinav, Where should i worte above code then? So i enabled Quotes when customer install my package?

Do you have any idea where should i write?

My mobile number: 009409058181. Please let me know on whats app if possible.

]]>
736ea375f6b9e251e25d64031fd978bb Bhavesh and Kiran are now connected https://www.forcetalks.com/activity/p/2661/ Mon, 18 Apr 2016 05:43:21 +0530 0 92e1905dbede13d2c4a5f1d0d1d17e13 Bhavesh and Pooja are now connected https://www.forcetalks.com/activity/p/2022/ Wed, 13 Apr 2016 07:37:26 +0530 0