Forcetalks | Charan Tej | Activity https://www.forcetalks.com/charan-tej-vuyyuru/activity/ Activity feed for Charan Tej. Mon, 08 Dec 2025 17:03:03 +0530 https://buddypress.org/?v=2.15.3 en-US 30 hourly 2 9829650182893a3765fe255d7e1ac16a Charan Tej replied to the discussion what values my Custom Salesforce Visualforce edit page does not show? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/my-custom-visualforce-edit-page-does-not-show-any-values/#post-30582 Sun, 29 Jul 2018 04:56:54 +0530 Reply to what values my Custom Salesforce Visualforce edit page does not show?

Did you pass id as parameter in the visualforce page.

/apex/Your_page_name?id=Record ID you want to see in edit mode

]]>
f7a72d5c1140f3237f1115b962b96023 Charan Tej replied to the discussion What is the difference between a query and a table in Salesforce SOQL? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-difference-between-a-query-and-a-table-in-salesforce-soql/#post-30581 Sun, 29 Jul 2018 04:55:46 +0530 Reply to What is the difference between a query and a table in Salesforce SOQL?

Query - Statement for querying records from a table.

Table - Object that holds all the records. In Salesforce, we call it as object.

 

]]>
26f9080b63004169574d340f7c3631e3 Charan Tej replied to the discussion Can a Salesforce trigger call a batch class in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-a-salesforce-trigger-call-a-batch-class-in-salesforce/#post-30579 Sun, 29 Jul 2018 04:52:41 +0530 Reply to Can a Salesforce trigger call a batch class in Salesforce?

Yes we can invoke. But make sure you are not crossing the governing limits.

The current limit for concurrent batch jobs is 5.

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm

]]>
ca82b0e640c48352b9560952c61a5fdb Charan Tej replied to the discussion What are the advantages of Schema Builder in Salesforce? Why do we need it? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-advantages-of-schema-builder-in-salesforce-why-do-we-need-it/#post-29830 Thu, 12 Jul 2018 10:21:25 +0530 Reply to What are the advantages of Schema Builder in Salesforce? Why do we need it?

In my point of view, I don't see any adavntages in Schema builder except seeing the objects and their relationships.

Even when we add a field, FLS should be given again to that field.

Unless to analze org structure, I don't usually go to Schema Builder.

]]>
2ba866a352f6fc4cac7af0456987ac27 Charan Tej replied to the discussion While implementing SOAP API integration, why session id "Session_ID_Remove" is shown in debug? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/session_id_remove-in-soap-api-in-salesforce/#post-29827 Thu, 12 Jul 2018 10:19:13 +0530 Reply to While implementing SOAP API integration, why session id "Session_ID_Remove" is shown in debug?

In terms of Security aspect, Salesforce automatically removes sessionId from debug logs from summer 17 .

]]>
623837c8a50ce1c28247f61c166cf7e5 Charan Tej changed their profile photo https://www.forcetalks.com/activity/p/72872/ Thu, 12 Jul 2018 10:16:17 +0530 0 837b0c68fd9e77c2f3408ad73d53cfe8 Charan Tej replied to the discussion Adding account team member on account object in Salesforce in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/adding-account-team-member-on-account-object-in-salesforce/#post-24670 Tue, 30 Jan 2018 09:59:37 +0530 Reply to Adding account team member on account object in Salesforce

`trigger TeamMemberTrg on Account (after insert) {
if(trigger.isinsert){
set parentIds = new set();
for(account acct:trigger.new){
if(acct.ParentId!=null && acct.VPA__c==false){
parentIds.add(acct.parentId);
}
}

if(!parentIds.isEmpty()){
map mpAccs… Read more

]]>
fc17eaf1bdc9cc4d7ea1e34fdf6226d2 Charan Tej replied to the discussion What is External Object in Salesforce? How do we use this object in Salesforce ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-external-object-is-salesforce/#post-24189 Thu, 18 Jan 2018 10:42:59 +0530 Reply to What is External Object in Salesforce? How do we use this object in Salesforce ?

External objects are similar to custom objects, except that they map to data that’s stored outside your Salesforce org. Each external object relies on an external data source definition to connect with the external system’s data. Each external object definition maps to a data table on the external… Read more

]]>
8e85780ed8bb58e5bae14a5f5bc5c8ec Charan Tej replied to the discussion How to embed iframe in Salesforce Visualforce page? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-embed-iframe-in-visual-force-page/#post-24186 Thu, 18 Jan 2018 10:39:45 +0530 Reply to How to embed iframe in Salesforce Visualforce page?

I am able to diplay external website through Visualforce page.

I think issue is only with few websites where X-frame options are set to Deny.

sample

]]>
21b023bd0ccee30596bd4b24b4477b11 Charan Tej replied to the discussion How can I transfer data saved in multiple fields while redirecting from one Salesforce Visualforce page to another? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/transfer-data/#post-23907 Mon, 15 Jan 2018 13:39:56 +0530 Reply to How can I transfer data saved in multiple fields while redirecting from one Salesforce Visualforce page to another?

you can pass data through parameters in the URL or you can use JS to store the data in cookies of the browser.

]]>
34b9e3c9fcd494d85baa25e7d593c88d Charan Tej replied to the discussion How many Field dependencies can I use in a Salesforce Visualforce page? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/field-dependencies/#post-23906 Mon, 15 Jan 2018 13:39:09 +0530 Reply to How many Field dependencies can I use in a Salesforce Visualforce page?

As many as you can, depending on your requirement.

]]>
7a3ae1c7cf5f10a6ee26c301a75ea2a9 Charan Tej replied to the discussion How can I get all Field API names of Accounts in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/field-api-names/#post-23905 Mon, 15 Jan 2018 13:37:10 +0530 Reply to How can I get all Field API names of Accounts in Salesforce?

]]>
ebae6c0d2621a43b22e8bff78cc46c83 Charan Tej replied to the discussion How can I get all Field API names of Accounts in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/field-api-names/#post-23904 Mon, 15 Jan 2018 13:36:45 +0530 Reply to How can I get all Field API names of Accounts in Salesforce?

You can get it from Workbench.

Login to workbench and try using just a query on Account object.

]]>
8fb177873a55c8843e163e0834c7c536 Charan Tej replied to the discussion How can I use encrypted field data in Salesforce Apex code? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/encripted-field/#post-23902 Mon, 15 Jan 2018 13:29:33 +0530 Reply to How can I use encrypted field data in Salesforce Apex code?

]]>
1ef88d1a81bdb170ab2c5ee1bde6f872 Charan Tej replied to the discussion Is there a way to export photos from Developer Org in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how/#post-23318 Sun, 07 Jan 2018 05:48:21 +0530 Reply to Is there a way to export photos from Developer Org in Salesforce?

You can use dataloader.

What kind of photos you want to export?

]]>
5efd228863295b18b27a8da6de1e6498 Charan Tej replied to the discussion How to create a PageBlockTable for Parent to Child Relationship in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-create-a-pageblocktable-for-parent-to-child-relationship-in-salesforce/#post-23194 Wed, 03 Jan 2018 16:08:35 +0530 Reply to How to create a PageBlockTable for Parent to Child Relationship in Salesforce?

Does the other user has View All on the master object?

 

]]>
1607a5e77a59f317107363ef69bbb36c Charan Tej replied to the discussion Salesforce Issue : Queue in Approval Process {Change Set Issue}, Validation fails in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/queue-in-approval-process-change-set-issue/#post-23193 Wed, 03 Jan 2018 16:01:42 +0530 Reply to Salesforce Issue : Queue in Approval Process {Change Set Issue}, Validation fails

I think if you create the queue in Production directly and then validate the changeset helps.

]]>
2a38182af9e5f3efc58822837c64de58 Charan Tej replied to the discussion How to control the data of a Picklist in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-control-the-data-of-a-picklist-in-salesforce/#post-23192 Wed, 03 Jan 2018 16:00:24 +0530 Reply to How to control the data of a Picklist in Salesforce?

you need a develop a Salesforce Trigger on case to populate this.

for(case c: trigger.new){

if(c.date_field__c.hour()==1)
c.picklist_field__c = '00:00-01:00';

//you need to write logic this
//you can even simplify this but as a newbie you can start like this
}

]]>
e28858b9fe5da97f55c52df665e46bbc Charan Tej replied to the discussion How to control the data of a Picklist in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/hi-i-am-new-in-sfdc-development-i-have-a-query-in-case-object-i-have-two-fields-1-is-date-time/#post-23192 Wed, 03 Jan 2018 16:00:24 +0530 Reply to How to control the data of a Picklist in Salesforce?

you need a develop a trigger on case to populate this.

for(case c: trigger.new){

if(c.date_field__c.hour()==1)
c.picklist_field__c = '00:00-01:00';

//you need to write logic this
//you can even simplify this but as a newbie you can start like this
}

]]>
e55466b61f5f855f0a68fb7f9f638edc Charan Tej started the discussion Can we create a big object using Metadata API in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/big-object-metadata-api/ Wed, 03 Jan 2018 10:47:05 +0530 Can we create a big object using Metadata API in Salesforce?

Can we create a big object usign Metadata API?

]]>
35fa5b32b668c368360b288485f88051 Charan Tej replied to the discussion How can we disable the command button after first click? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-we-disable-the-command-button-after-first-click/#post-23163 Wed, 03 Jan 2018 10:44:43 +0530 Reply to How can we disable the command button after first click?

onclick="this.style.display='none';"

This will remove the button once clicked.

onclick="this.disabled=true;"

This will disable the button once clicked.

Let me know if this doesnt work.

]]>
fddb16cf1ccbf80549043d0f657dd7e5 Charan Tej replied to the discussion Getting when trying to create integration between Salesforce and ClickFunnels. in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/getting-error-when-trying-to-create-integration-between-salesforce-and-clickfunnels/#post-23138 Tue, 02 Jan 2018 12:39:17 +0530 Reply to Getting when trying to create integration between Salesforce and ClickFunnels.

Hi Rick,

which Salesforce edition you are currently using?

API is not enabled by default in Professional Edition of Salesforce.

]]>
00bb61ee9473836893250e8f79613759 Charan Tej replied to the discussion How can I efficiently generate a Set from a List structure in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-efficiently-generate-a-set-from-a-list-structure-in-salesforce/#post-23137 Tue, 02 Jan 2018 12:37:07 +0530 Reply to How can I efficiently generate a Set from a List structure in salesforce?

In addition to Susant anwer, you can also use this code.

Map<Id, Account> mpAccounts = new Map<Id,Account>([Select id, name from Account]);
You can use mpAccounts.keyset() which will give you a set collection of Ids.

]]>
ff7a816c11e6b03344802b139d448ebd Charan Tej replied to the discussion How to create a Pie chart with 3 or more fields in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-create-a-pie-chart-with-3-or-more-fields-in-salesforce/#post-23135 Tue, 02 Jan 2018 12:33:56 +0530 Reply to How to create a Pie chart with 3 or more fields in Salesforce?

You can achieve this using Visualforce charts.

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_charting_appearance_pie_charts.htm

You can also use 3rd party services like Google API, High charts etc to design pie charts in Salesforce.

 

]]>
e9a781d314937553f5500a8e8f8e7d36 Charan Tej updated their profile https://www.forcetalks.com/activity/p/28102/ Tue, 02 Jan 2018 11:41:51 +0530 0 14b214b1422eb2703ea54278f08df6ee Charan Tej replied to the discussion help : Custom object on Salesforce visualforce page not working in Internet Explorer in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/help-custom-object-on-salesforce-visualforce-page-not-working-in-internet-explorer/#post-23126 Tue, 02 Jan 2018 08:27:00 +0530 Reply to help : Custom object on Salesforce visualforce page not working in Internet Explorer

Have you figure it out? Can you open console and see if there are any JS issues.

]]>
d8c3312d52aa8303bcb3d5fd0029f561 Charan Tej replied to the discussion Help needed on a Salesforce Trigger manipulating Contact Object in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/help-needed-on-a-salesforce-trigger-manipulating-contact-object/#post-23125 Tue, 02 Jan 2018 08:22:23 +0530 Reply to Help needed on a Salesforce Trigger manipulating Contact Object

Whenever you send an email, you need to create an activity under that record. This helps you in tracking the last email sent for that record.

Trigger should be developed on Task.

trigger TaskTrg on Task (after insert) {

List<Contact> lstCons = new List<Contact>();
for(Task tObj : trigger.new){
if(tobj.whatId != null… Read more

]]>
581289c760c16929e2a8aa806c0f2a01 Charan Tej replied to the discussion Help needed on a Salesforce Trigger manipulating Contact Object in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/help-needed-on-a-salesforce-trigger/#post-23125 Tue, 02 Jan 2018 08:22:23 +0530 Reply to Help needed on a Salesforce Trigger manipulating Contact Object

Whenever you send an email, you need to create an activity under that record. This helps you in tracking the last email sent for that record.

Trigger should be developed on Task.

trigger TaskTrg on Task (after insert) {

List<Contact> lstCons = new List<Contact>();
for(Task tObj : trigger.new){
if(tobj.whatId != null… Read more

]]>
aed44f409a70d76ded6bf503b09c3400 Charan Tej replied to the discussion Is there any option to work as a Salesforce Admin Trainee ( I have ADM 201 Certification) in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-option-to-work-as-a-salesforce-admin-trainee-i-have-adm-201-certification/#post-23124 Tue, 02 Jan 2018 08:14:39 +0530 Reply to Is there any option to work as a Salesforce Admin Trainee ( I have ADM 201 Certification)

You can register with npower or communitycorps to get a chance to work for non-profit organizations in USA.

]]>
1fd28cc14536ca7818c7523be244d922 Charan Tej became a registered member https://www.forcetalks.com/activity/p/28095/ Tue, 02 Jan 2018 08:12:08 +0530 0