Hey there Prabhuk, good thinking of you to add the error message. From this part 'The server encountered an error accessing a source data table.' I would suggest that you maybe deleted the source/drill-through table or such table after you finished building your cubes. To clarify: When you build a cube, you are acutally building the structure of a cube and its metadata for dimensions, measures, aggregations, permissions, etc. The only actual data in the cube itself are some or all aggregations (in this case meaning the values in different levels of intersections) in the cube. To calculate and display non pre-calculated aggregations (or intersections) or to perform a drill through to detail data, the cube does rely on its source/drill-through table to calculate or present data as requested by the user. It seems you have run into just such a situation. What you may want to do is check that you have all source tables registered in the metadata. In the cube studio you might want to edit the cube structure again (use that edit wizard) and check where it says 'Cube Designer - Drill-Through'. Is your table still visible and accessible from there? (try to show the data of the table from the wizard) Alternatively you might want to export the cubes code (via rightclick on the cube) and check the section at the beginning of the code: [...] PROC OLAP CUBE = "/Metadata_Path/OLAP_Scheme/Cube_Name" DATA = Source_Lib.Source_Table DRILLTHROUGH_TABLE = maybesomeotherlib.some_table PATH = '/Physical_Path' DESCRIPTION = 'Description' ; [...] DATA and DRILLTHROUGH_TABLE might be but are not required to be identical. Both libraries and tables should be registered in the metadata and be accessible. Hope this helps, otherwise let us know what your findings or further errors are. Cheers, Michael
... View more