Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Exception in RunReport
Thomas_Blume
Hi,I use Livelink Version 9.1.0.3 and the LAPI Interface from 3.12.2002. I get an exception with Reports and SELECT statements.Insert, Delete works fine. The Exception is in the llkernel.dll.Is there a known problem? LLVALUE rptInfo = NULL; // Report object info LLVALUE extData = NULL; // Report object ExtendedData LLVALUE inputsList = NULL; // List containing the report inputs LLVALUE inputParm = NULL; // Report input param assoc LLVALUE reportData = NULL; // Report output data LLVALUE outputData = NULL; // Report output data LLSTATUS status = LL_OK; switch ( status ) { case LL_OK: if ( status != LL_OK ) break; status = LL_ValueAlloc( &rptInfo ); if ( status != LL_OK ) break; status = LL_ValueAlloc( &extData ); if ( status != LL_OK ) break; status = LL_ValueAlloc( &inputsList ); if ( status != LL_OK ) break; status = LL_ValueAlloc( &inputParm ); if ( status != LL_OK ) break; status = LL_ValueAlloc( &reportData ); // Object Info if ( status != LL_OK ) break; status = LL_GetObjectInfo( session, volID, objID, rptInfo ); if ( status != LL_OK ) break; status = LL_AssocGetValue( rptInfo, "ExtendedData", extData); if ( status != LL_OK ) break; status = LL_AssocGetValue( extData, "inputs", inputsList); } // Report laufen lassen if ( status == LL_OK ) status = LL_RunReport( session, -2000, 37667, inputsList, reportData ); } // Call exception filter __except( GlobalExcpFlt( GetExceptionCode() ) ) { status = GetExceptionCode( ); ShowException( status , myFunc, errMsg ); }Cheers
Find more posts tagged with
Comments
There are no comments yet