Object without Related Object

Hey, Adam,

So, if I’m correct, Implementation Plan is the child object and Asset is the parent object? If so, you can create a model for the child object (Implementation Plan) and one for the parent object (Asset). Make sure the IP model comes first. To bring in only IPs that have Assets, create a condition on your IP model where the Asset field is NOT (!=) a blank value (this condition is not absolutely necessary… it will just help your IP model data load faster by filtering out any unnecessary records). Then, on your Asset model, create a condition where Id equals the Asset Id field from any row returned by the IP model. To set this condition:

  1. Select Id as the field for the condition.
  2. Change the value to content type “Field from another model” (before you change the condition’s operator). Let the source model be your IP model, and the source field be the Asset field.
  3. Go back and change the operator to in instead of =
**Important Consideration: You need to pull ALL IPs (that have Assets) into the IP model in order for this to work. So, on Advanced settings for your IP model, leave the “Max # of records (Limit)” field empty! Of course, depending on how many IP records you have, bringing in all this data could make your page load slower. Just something to consider.