Planning Analytics

Planning Analytics

Get AI-infused integrated business planning

 View Only
  • 1.  PAW issues around exporting and importing data and elements

    Posted Wed February 26, 2025 04:27 AM

    Hello,

    Over the past several weeks and months, I had several interactions with IBM support on issues around exporting and importing data and elements, all in PAW.

    Meaning that, an export does not happen, or it gives a CSV file with only the header line (dimension names). Or the export takes place but the import of that same file in the same cube on development does not finish. Sometimes the data is prepared but the file is not downloaded. Etc.

    This topic is just to let you know that a number of these tickets lead to known defects and IBM are correcting them. First have a look at known defects before spending too much time or creating new support tickets.



    ------------------------------
    Wim Gielis
    Senior Consultant
    Aexis International
    Sint-Stevens-Woluwe
    0496225001
    ------------------------------


  • 2.  RE: PAW issues around exporting and importing data and elements

    Posted Fri February 28, 2025 08:07 AM

    Hi Wim,

    The CSV export feature that we added is generating an MDX query and pushing the results of that query to a file.  One possible reason why a valid MDX query might fail is the MaximumViewSize parameter in TM1 being set too low.  We are working on some improvements to detect when the query failed and properly indicate the failure to the user.

    We are still working on functionality in PAW books that will allow action buttons to be used to run a TI process and download the results.  The significant difference between using MDX and TI processes to export is model security (TI processes ignore security). 



    ------------------------------
    Stuart King
    Product Manager
    IBM Planning Analytics
    ------------------------------



  • 3.  RE: PAW issues around exporting and importing data and elements

    Posted Fri December 19, 2025 02:52 PM

    Hi good afternoon

    Old thread, I know, but problems are always fresh.

    AWS PAaaS here.

    Is it possible to export a real large view? I mean - a view which potentially will generate a 2~4gb csv file? It looks that the 'export data' has some limitations on size, is possible to tweak them?

    I looked for the maximumviewsize parameter on v12 in order to change it. I haven't found it under configuration tab on Admin. Is this parameter supposed to be shown? Is there some tricky way to show it?

    Can I expect that real large views will export to csv?

    Thanks

    Márcio



    ------------------------------
    Marcio Costa
    ------------------------------



  • 4.  RE: PAW issues around exporting and importing data and elements

    Posted Wed December 31, 2025 12:55 PM

    Your best bet is definitely the Bedrock TI process - bedrock.cube.data.export.pro is specifically designed for large data exports and bypasses the UI limitations entirely, curious if this will help you out if you have not tried this approach. 



    ------------------------------
    Llewellyn Evans
    ------------------------------



  • 5.  RE: PAW issues around exporting and importing data and elements

    Posted Mon January 05, 2026 11:20 PM

    I got to export using TM1py's execute_mdx_dataframe

          df = tm1.cells.execute_mdx_dataframe(mdx)

    And then exporting to csv with the dataframe created:

          df.to_csv("file.csv", sep=",", decimal=".", index=False, mode="w", float_format = "%.2f")

    Regards 



    ------------------------------
    Marcio Costa
    ------------------------------