This is exactly the syntax I have been using although I have to go through GLCHARTSUM as when I link to GLCHARTDTL on obj_id I do not get records. I also have now discovered that we have a hierarchy of accounts and so need to add a hierarchical query to get all accounts. Once I have the SQL together I shall share in case any one else has a similar type environment. SO my initial query is as follows to get the sumry_acct_id and depth. I then need to add the hierarchical query to make sure I get all accounts. Select rrd.head_name, rrd.line_nbr, rrd.account_desc, rrd.account_list, gdt.sumry_acct_id, gdt.depth From LAWSON.rwrowdet rrd left outer join LAWSON.mxlistmbr mlm on 'ACCNT' = mlm.obj_type and rrd.account_list = mlm.matrix_list JOIN LAWSON.glchartsum gdt on mlm.obj_id = gdt.obj_id where rrd.head_name = 'EXPSTRUCTURE' order by rrd.head_name, rrd.line_nbr Thanks for the help. Julia