-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
13Questions
-
20Replies
Hi All, I have to change the tab icon on CASE
The requirement is when we receive a new message on case we have to change the tab icon
Could you please help me on this?
Regards,
Jordan
Could you please help me on this?
Regards,
Jordan
-
- raj jordan
- December 13, 2018
- Like
- 0
- Continue reading or reply
How to calculate response time between changing status from one to other?
hi all, i have one custom field called "Response time". Whenever the status changes from new to progress the custom field should calculate that how much time it has taken between changing status from new to progress in days:hours:min:sec. Could you please help me through this.
Thanks in Advance,
Jordan
Thanks in Advance,
Jordan
-
- raj jordan
- July 26, 2018
- Like
- 0
- Continue reading or reply
batch class to update account related opportunities
Hi all,
when account have some related opprtunities i want to update opportunity field when account is updated it should get updated for one related opportunity or more than one using batch class
Can you help me through this
Thanks in Advance
Jordan
when account have some related opprtunities i want to update opportunity field when account is updated it should get updated for one related opportunity or more than one using batch class
Can you help me through this
Thanks in Advance
Jordan
-
- raj jordan
- March 26, 2018
- Like
- 0
- Continue reading or reply
insert multiple Opportunities for single account using apex
how to insert multiple opportunities for a single account ?
Can anyone help me through this using apex
Thanks in Advance
Can anyone help me through this using apex
Thanks in Advance
-
- raj jordan
- March 23, 2018
- Like
- 0
- Continue reading or reply
All fields in a Custom metdata type should be required
hi all,
i want to create a custom metadata object then i want to add fields to it
the fields which are added to that object should become required
can you please help me
i want to create a custom metadata object then i want to add fields to it
the fields which are added to that object should become required
can you please help me
-
- raj jordan
- March 20, 2018
- Like
- 0
- Continue reading or reply
trigger to insert record on custom metadata type
hi all,
i want to create a trigger on custom metadata type to insert a record when all fields are entered if any of the field is null we should throw an error
can anyone help me through this
thanks in advance
i want to create a trigger on custom metadata type to insert a record when all fields are entered if any of the field is null we should throw an error
can anyone help me through this
thanks in advance
-
- raj jordan
- March 20, 2018
- Like
- 0
- Continue reading or reply
i have created a custom field on account object along with one checkbox field and another custom field on custom object pricing and written a trigger such that when the check box field is selected the pricing should also get inserted
Now i want these trigger code in apex class and i want to call that apex class in trigger
below is my code
can anyone please help me through this
Thanaks in Advance
below is my code
trigger insertobject2 on Account (after insert, after update) { Set<Id> Ids= new Set<Id>(); for (Account acc : Trigger.new) { Ids.add(acc.Id); } List<Account> accList = new List<Account>(); accList=[Select Id,name,SynctoPricing__c,Relatedpricing__c From Account where Id in :Ids]; for(Account temp : accList ) { if(temp.SynctoPricing__c==true){ Pricing__c pri = new Pricing__c(); pri.RelatedAccount__c = temp.Relatedpricing__c ; insert pri; } } }
can anyone please help me through this
Thanaks in Advance
-
- raj jordan
- March 19, 2018
- Like
- 0
- Continue reading or reply
i have two custom filelds on account object and two custom fields on another custom object with same api names if i insert an account the values of that fields should be display in custom object also can you please help me
HI ALL,
i have two custom filelds on account object and two custom fields on another custom object with same api names if i insert an account the values of that fields should be display in custom object also
can you please help me
i have two custom filelds on account object and two custom fields on another custom object with same api names if i insert an account the values of that fields should be display in custom object also
can you please help me
-
- raj jordan
- March 16, 2018
- Like
- 0
- Continue reading or reply
how to auto unsync quote from opportunity
Hi all,
Can please help me to auto unsync quote from opportunity without using future method?
Thanks in Advance
Can please help me to auto unsync quote from opportunity without using future method?
Thanks in Advance
-
- raj jordan
- March 08, 2018
- Like
- 0
- Continue reading or reply
-
- raj jordan
- February 22, 2018
- Like
- 0
- Continue reading or reply
trigger to update the related fields?
i want to create description custom fields on account and contact object
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
-
- raj jordan
- February 20, 2018
- Like
- 1
- Continue reading or reply
hi all, I have to create a vf page with account object as a tab and when we click on account tab its record should display in form of custom links and when we click on record link the fields which we want to populate should be displayed
I have to create a vf page with account object as a tab and when we click on account tab its record should display in form of custom links and when we click on record link the fields which we want to populate should be displayed
please help me to achieve this
Thanks in Advance
please help me to achieve this
Thanks in Advance
-
- raj jordan
- February 19, 2018
- Like
- 0
- Continue reading or reply
how to display objects in radio button?
Hi am trying to display account and contact object as radio buttons
when i click on account its record should display and
when i click on contact its record should display
but am not getting the required output
Below is my code
where it is only displaying contact details
please tell me where am going wrong
when i click on account its record should display and
when i click on contact its record should display
but am not getting the required output
Below is my code
where it is only displaying contact details
please tell me where am going wrong
<apex:page controller="radio16"> <apex:form > <apex:pageblock > <apex:selectRadio value="{!selectedRadio}"> <apex:selectOption itemLabel="Account" itemValue="Accounts"/> <apex:selectOption itemLabel="Contact" itemValue="Contacts"/> <apex:actionSupport event="onclick" action="{!getDetails}" reRender="records"/> </apex:selectRadio> <apex:outputPanel id="records"> <apex:pageblockSection Title="Records"> <apex:PageBlockTable value="{!acc}" var="a"> <apex:Column value="{!a.Name}"/> </apex:PageBlockTable> <apex:PageBlockTable value="{!con}" var="c"> <apex:Column value="{!c.lastname}"/> </apex:PageBlockTable> </apex:pageblockSection> </apex:outputPanel> </apex:pageblock> </apex:form> </apex:page>
public class radio16 { public String selectedRadio { get; set; } public List<Account> acc{get;set;} public List<Contact> con{get;set;} public PageReference getDetails(){ acc = new List<Account>(); if(selectedRadio== 'Account'){ acc = [SELECT name FROM Account limit 5]; } else{ con =new List<Contact>(); con = [SELECT lastname FROM Contact limit 5]; } return null; } }
-
- raj jordan
- February 16, 2018
- Like
- 0
- Continue reading or reply
trigger to update the related fields?
i want to create description custom fields on account and contact object
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
-
- raj jordan
- February 20, 2018
- Like
- 1
- Continue reading or reply
How to calculate response time between changing status from one to other?
hi all, i have one custom field called "Response time". Whenever the status changes from new to progress the custom field should calculate that how much time it has taken between changing status from new to progress in days:hours:min:sec. Could you please help me through this.
Thanks in Advance,
Jordan
Thanks in Advance,
Jordan
- raj jordan
- July 26, 2018
- Like
- 0
- Continue reading or reply
All fields in a Custom metdata type should be required
hi all,
i want to create a custom metadata object then i want to add fields to it
the fields which are added to that object should become required
can you please help me
i want to create a custom metadata object then i want to add fields to it
the fields which are added to that object should become required
can you please help me
- raj jordan
- March 20, 2018
- Like
- 0
- Continue reading or reply
i have created a custom field on account object along with one checkbox field and another custom field on custom object pricing and written a trigger such that when the check box field is selected the pricing should also get inserted
Now i want these trigger code in apex class and i want to call that apex class in trigger
below is my code
can anyone please help me through this
Thanaks in Advance
below is my code
trigger insertobject2 on Account (after insert, after update) { Set<Id> Ids= new Set<Id>(); for (Account acc : Trigger.new) { Ids.add(acc.Id); } List<Account> accList = new List<Account>(); accList=[Select Id,name,SynctoPricing__c,Relatedpricing__c From Account where Id in :Ids]; for(Account temp : accList ) { if(temp.SynctoPricing__c==true){ Pricing__c pri = new Pricing__c(); pri.RelatedAccount__c = temp.Relatedpricing__c ; insert pri; } } }
can anyone please help me through this
Thanaks in Advance
- raj jordan
- March 19, 2018
- Like
- 0
- Continue reading or reply
how to auto unsync quote from opportunity
Hi all,
Can please help me to auto unsync quote from opportunity without using future method?
Thanks in Advance
Can please help me to auto unsync quote from opportunity without using future method?
Thanks in Advance
- raj jordan
- March 08, 2018
- Like
- 0
- Continue reading or reply
- raj jordan
- February 22, 2018
- Like
- 0
- Continue reading or reply
trigger to update the related fields?
i want to create description custom fields on account and contact object
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
now i want to create a trigger on account object such that when i insert a record on account object contact shoul also be created with with the custom field updated same as account
please help me to achieve this
- raj jordan
- February 20, 2018
- Like
- 1
- Continue reading or reply
hi all, I have to create a vf page with account object as a tab and when we click on account tab its record should display in form of custom links and when we click on record link the fields which we want to populate should be displayed
I have to create a vf page with account object as a tab and when we click on account tab its record should display in form of custom links and when we click on record link the fields which we want to populate should be displayed
please help me to achieve this
Thanks in Advance
please help me to achieve this
Thanks in Advance
- raj jordan
- February 19, 2018
- Like
- 0
- Continue reading or reply
how to display objects in radio button?
Hi am trying to display account and contact object as radio buttons
when i click on account its record should display and
when i click on contact its record should display
but am not getting the required output
Below is my code
where it is only displaying contact details
please tell me where am going wrong
when i click on account its record should display and
when i click on contact its record should display
but am not getting the required output
Below is my code
where it is only displaying contact details
please tell me where am going wrong
<apex:page controller="radio16"> <apex:form > <apex:pageblock > <apex:selectRadio value="{!selectedRadio}"> <apex:selectOption itemLabel="Account" itemValue="Accounts"/> <apex:selectOption itemLabel="Contact" itemValue="Contacts"/> <apex:actionSupport event="onclick" action="{!getDetails}" reRender="records"/> </apex:selectRadio> <apex:outputPanel id="records"> <apex:pageblockSection Title="Records"> <apex:PageBlockTable value="{!acc}" var="a"> <apex:Column value="{!a.Name}"/> </apex:PageBlockTable> <apex:PageBlockTable value="{!con}" var="c"> <apex:Column value="{!c.lastname}"/> </apex:PageBlockTable> </apex:pageblockSection> </apex:outputPanel> </apex:pageblock> </apex:form> </apex:page>
public class radio16 { public String selectedRadio { get; set; } public List<Account> acc{get;set;} public List<Contact> con{get;set;} public PageReference getDetails(){ acc = new List<Account>(); if(selectedRadio== 'Account'){ acc = [SELECT name FROM Account limit 5]; } else{ con =new List<Contact>(); con = [SELECT lastname FROM Contact limit 5]; } return null; } }
- raj jordan
- February 16, 2018
- Like
- 0
- Continue reading or reply