• Ian_C
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies

If I am using the Account standard controller and I have Contacts in that layout, is it possible to have have input fields in that related list so users can create a new contact without having to go to another page? I am running professional version so I can't create apex classes and am trying to find a way to add child/related objects without so much navigation and page loads.

  • February 06, 2013
  • Like
  • 0

I would like to have a page that allows for an Account creation. When user hits Save it'll redirect them to another VF page where they can add a contact, set an activity, and create a custom object record (note). The part I can't figure out is how to provide the id of the new account record to the redirected VF page. Any help?

 

 

  • February 05, 2013
  • Like
  • 0

I have a custom object "Retail_Customer_Contract__c" that has child objects "Special_Discount__c" If I go into the master detail field for the relationship the "Child Relationship Name" is "Special_Discounts" but I can not get it to work. I get the follow error :

 

 'Special_Discounts' is not a valid child relationship name for entity Retail Customer Contract


 

Here is my visualForce page

 

 

<apex:page standardController="Retail_Customer_Contract__c" extensions="RetailCustomerContractExtController" ><apex:relatedList list="Special_Discounts"/></apex:page>

 

I have tried every name possible for the list="" attribute. I have tried Special_Discount__c, SpecialDiscount, SpecialDiscounts, etc

 

Any thoughts would be greatly appreciated!