COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: C on 02 Nov 2010 09:13:44 AM

Title: Set "Source report" on a Report View - C#
Post by: C on 02 Nov 2010 09:13:44 AM
Hi
I was wondering if anyone could tell me how to set the source report on a new report view in C#
Title: Re: Set "Source report" on a Report View - C#
Post by: C on 02 Nov 2010 10:32:15 AM
reportView rv = new reportView();

baseClassArrayProp bcap = new baseClassArrayProp();
baseClass[] bc = new baseClass[1];
nil nil = new nil();
stringProp tps = new stringProp();
tps.value = parentSearchPath;
nil.searchPath = tps;
bc[0] = nil;
bcap.value = bc;
rv.@base = bcap;



9 lines to set 1 value. nice