Is the Name field in your Project Model?
yes
Is Opportunity__r.Name in your model? Or whatever the name of your custom lookup field on Project to Opportunity is.
Or Maybe BLND_Opportunity_Link__r.Name
The project model is loaded on page model?
I was tinkering before with all the settings. This is what I think it should be.
Oh, I hadn’t noticed that you had “Load Model Data on Page Load” set to false. Since this is the case, no query is made to look up the opportunity’s name. You’ll have to work around this issue by either sending the name as another parameter, or having another model that gets the opportunity’s name.
That was it. Added a model to hold the ID of the Opp (PassedInOppID), then set a condition on the Project model BLND_Opportunity_Link__c to be the Opportunity ID of the PassedInOppID model.
Thanks
Correct! If you are creating new records in your page - you either need to bring in prepopulated data in multiple parameters (which gets messy) or include another model that loads the data you want prepopulated. Thanks for clarifying the situation Ben.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.