-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
8Questions
-
15Replies
Trigger on account for after update event
Hi,
I have a scenario with trigger.......... like when i am updating billing address fields in account the same should be
reflected in contact object fields.
I used after trigger event but i am getting an error .
help me out in this senario.....
thanks
-
- narensfdc
- March 26, 2013
- Like
- 0
- Continue reading or reply
Approval process scenario
Hi
There is a scenario like
-
- narensfdc
- March 22, 2013
- Like
- 0
- Continue reading or reply
dispaly list of contacts with out Custom controller or extentions
Hi
Please help me out
1) How to dispaly list of contacts of account on Visual force page with out Custom controller or extentions?
2)How to display accounts contacts and contact details(lookup to contact) on one visual force page?
3) On one object 3 triggers are there, i need to execute triggers one after the other. Is it possible, if yes how, no why?
-
- narensfdc
- March 21, 2013
- Like
- 0
- Continue reading or reply
Usage of LOOP Document Services
Hi
Please help me in using LOOP Document Services,what is LOOP Document Services and for what purpose we use them.I have installed the package in developer console please let me know how can i use this.
Thanks,
Naren.
-
- narensfdc
- January 28, 2013
- Like
- 0
- Continue reading or reply
Trigger for moving billing address to shipping address
Hi
Please help me in writting a trigger for moving billing address to shipping address for both insert and update events
thanks
naren.
-
- narensfdc
- January 18, 2013
- Like
- 0
- Continue reading or reply
Trigger to find no of contacts for an account
Hi,
Please help me in trigger coding,
I have written a trigger for finding no of contacts on a account as below,but the problem with this is when i am deleting the contact the field in account is showing the same no.(If suppose i have 5 contacts for a account xxxx when i delete a contact the field in the account xxxx should be 4)but the field is showing 5
Find the code below.
------------------------------------------------------------------------------------------------
trigger NoofCononAcc on Contact (after insert) {
list<contact> con = trigger.new;
for(contact c:con){
list<contact> conlst = [select id from contact where accountid=:c.accountid];
account acc = [select id from account where id=:c.accountid ];
acc.NoofCononAcc__c = conlst.size();
update acc;
}
-
- narensfdc
- January 17, 2013
- Like
- 0
- Continue reading or reply
Dynamic Apex for getting the fields of an sobject
Hi,
Please help me in coding for
How to get all the fields of sObject using dynamic Apex?(complete code) --- like for account object
Thanks.
-
- narensfdc
- December 25, 2012
- Like
- 0
- Continue reading or reply
Please Respond to the below questions
1)Stage Field is mapped to a value for the Forecast Category field and this can never be changed in an opportunity?
With Explanation ---------------> a) True b)False
2)A group of executives has a request,a convinient way to see daily metrics without login into salesforce,how a developer can achive this goal?
3)If job Application status is approved then the salary has to be entered how do we achive this?
a) Validation Rule b) Workflow c)Trigger d) formula field
4)Customer has a requirement to filter on columns in the related list,as a developer how would you achive this?
-
- narensfdc
- December 12, 2012
- Like
- 0
- Continue reading or reply
Trigger on account for after update event
Hi,
I have a scenario with trigger.......... like when i am updating billing address fields in account the same should be
reflected in contact object fields.
I used after trigger event but i am getting an error .
help me out in this senario.....
thanks
- narensfdc
- March 26, 2013
- Like
- 0
- Continue reading or reply
Trigger for moving billing address to shipping address
Hi
Please help me in writting a trigger for moving billing address to shipping address for both insert and update events
thanks
naren.
- narensfdc
- January 18, 2013
- Like
- 0
- Continue reading or reply
Trigger to find no of contacts for an account
Hi,
Please help me in trigger coding,
I have written a trigger for finding no of contacts on a account as below,but the problem with this is when i am deleting the contact the field in account is showing the same no.(If suppose i have 5 contacts for a account xxxx when i delete a contact the field in the account xxxx should be 4)but the field is showing 5
Find the code below.
------------------------------------------------------------------------------------------------
trigger NoofCononAcc on Contact (after insert) {
list<contact> con = trigger.new;
for(contact c:con){
list<contact> conlst = [select id from contact where accountid=:c.accountid];
account acc = [select id from account where id=:c.accountid ];
acc.NoofCononAcc__c = conlst.size();
update acc;
}
- narensfdc
- January 17, 2013
- Like
- 0
- Continue reading or reply
Dynamic Apex for getting the fields of an sobject
Hi,
Please help me in coding for
How to get all the fields of sObject using dynamic Apex?(complete code) --- like for account object
Thanks.
- narensfdc
- December 25, 2012
- Like
- 0
- Continue reading or reply
Please Respond to the below questions
1)Stage Field is mapped to a value for the Forecast Category field and this can never be changed in an opportunity?
With Explanation ---------------> a) True b)False
2)A group of executives has a request,a convinient way to see daily metrics without login into salesforce,how a developer can achive this goal?
3)If job Application status is approved then the salary has to be entered how do we achive this?
a) Validation Rule b) Workflow c)Trigger d) formula field
4)Customer has a requirement to filter on columns in the related list,as a developer how would you achive this?
- narensfdc
- December 12, 2012
- Like
- 0
- Continue reading or reply