views:

315

answers:

1

I have a custom object say "objMain" in which i have few properties and also the property of object type (i.e. like a child object).

objMain has these properties: 1. Name [type: string] 2. Description [type: string] 3. StartDate [type: datetime] 4. ObjSubject [type: object] - this is of custom type

ObjAddress has these properties 1. SubjectID [type: int] 2. SubjectName [type: string]

I need to display Name, description, startdate and SubjectNames related to that name. It show the data in Name, description and startdate field but not is shown in the SubjectName field.

This is how i want to show:

Name | Description | StartDate | SubjectName

Amod Kumar ABCDEFG 19/08/2009 Physics Chemistry Maths

But result appears like this

Name | Description | StartDate | SubjectName

Amod Kumar ABCDEFG 19/08/2009

Can any body tell me how i do this. I also tried to show only the SubjectName in the table, it does not show any thing on the report. I am defining both datasource for report i.e. For objMain and ObjSubject.

A: 
=Fields!ObjSubject.Value.SubjectName

That expression in a textbox on the report should give you the nested value.

qstarin