You need to sign in to do that
Don't have an account?

Pass field value from custom object
My custom object "Locations" has a Master-Detail Relationship
with "Accounts", so when I override the "New Location" button
with the S-Control:
with "Accounts", so when I override the "New Location" button
with the S-Control:
Code:
Test1: {!Account.Name}
and I click "New Location" in "Accounts", it shows:
Test1: Heckwork
So far so good.
My custom object "Systems" also has a Master-Detail relation
with "Accounts" AND a Lookup Relationship with "Locations".
When I override the "New System" button with this S-Control:
with "Accounts" AND a Lookup Relationship with "Locations".
When I override the "New System" button with this S-Control:
Code:
Test2: {!Location__c.Name__c}
and I click "New System" in "Locations", it shows:
Test2:
Does anyone know why it does not show the value from the
"Locations" "Name" field?
"Locations" "Name" field?
Peter
Message Edited by Peter van Heck on 09-26-2008 10:26 AM
If you were going to dot through like this on a custom field, you'd do {!Location__r.Name__c} anyway.