OpenText provides the code necessary to run a LiveReport with C# :
https://knowledge.opentext.com/knowledge/llisapi.dll?func=ll&objId=3728655&objAction=ArticleViewI modified the code:public RunReport(LLSession session, DateTime dateParam){try{//Initialize any LAPI ObjectsLAPI_DOCUMENTS doc = new LAPI_DOCUMENTS(session);int dataID = 663695;//Create the list of inputs for the reportLLValue reportInputs = (new LLValue()).setList(); //Create an inputLLValue reportInput = (new LLValue()).setAssocNotSet();reportInput.add("InputType", "Date");reportInput.add("inputLabel1", "Enter Process Date"); reportInput.add("Value", dateParam.Year, dateParam.Month, dateParam.Day, dateParam.Hour, dateParam.Minute, dateParam.Second);//Add the input to the list of inputsreportInputs.add(reportInput);//Create the output variableLLValue reportData = (new LLValue()).setAssocNotSet();//Run the reportif (doc.RunReport(509314, dataID, reportInputs, reportData) != 0){ int length = reportData.size(); //Loop through the results and output the DataID and Name for(int i = 0; i < length; i++) Console.WriteLine((reportData.toValue(i)). toString.("DataID") + "\t" + (reportData.toValue (i)).toString("Name"));}else{ ..... }This code is compiling, but it will always fail on the following line:int length = reportData.size();The error message would be : "size() not implemented for this datatype"Does anybody can help me with this?