I have a doubt, i've been working with salesforce for a while and now i have a requirement from a customer.

They need that some custom fields be populated with a value of parent object, making some research on stackoverflow, i found this post, but this isn't working for me because my project is a manage package and when this is installed on a another salesforce instance the id of custom field change.

if someone could help me, I will be grateful.

Thanks!.

link|improve this question
1  
I'm not sure I fully understand your problem — do you want to populate the lookup to the parent object, or pre-fill some fields on the child when the parent is specified? – LaceySnr - Matt Lacey Oct 18 '11 at 22:35
Hi, i'm trying to fre-fill some fields on the child when parent is specified – Jesus Omar Varela Vivas Oct 25 '11 at 21:03
I can't see any way of doing the same as that post without using the IDs unfortunately. – LaceySnr - Matt Lacey Oct 26 '11 at 3:48
feedback

1 Answer

up vote 0 down vote accepted

I can't see any way of doing the same as that post without using the IDs, I was thinking you could route via a VF page and build up the URL in the controller but it doesn't seem as though you can get the IDs of fields, just their type etc..

I think the best you could do in this instance is to override the default new recordpage with a visualforce page. In the constructor of your controller you could then loop through the page parameters and pre-fill the corresponding fields on the new record before it's displayed on screen. Using fieldsets or just an <apex:Detail> component would keep the level of effort down and also maximise the flexibility of the page for the end users.

link|improve this answer
Thanks for your answer, i just talket with my customer and they don't want to build a custom visualforce page. – Jesus Omar Varela Vivas Oct 26 '11 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.