<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILEOPEN: ODT: REPORT: Section "Detail" won't be shown on first page, if content has more than one page"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=134699#c22">Comment # 22</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILEOPEN: ODT: REPORT: Section "Detail" won't be shown on first page, if content has more than one page"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=134699">bug 134699</a>
              from <span class="vcard"><a class="email" href="mailto:robert@familiegrosskopf.de" title="Robert Großkopf <robert@familiegrosskopf.de>"> <span class="fn">Robert Großkopf</span></a>
</span></b>
        <pre>If you are using Macros to open the report the following should work:

SUB TabSplit
DIM oReport AS OBJECT
DIM oTables AS OBJECT
DIM oTable AS OBJECT
DIM inT AS INTEGER
DIM inI AS INTEGER      
oReport =
ThisDatabaseDocument.ReportDocuments.getByName("Movimientos_por_fecha_y_cuenta").open
oTables = oReport.getTextTables()
FOR inT = 0 TO oTables.count() - 1
        oTable = oTables.getByIndex(inT)
        IF Left$(oTable.name, 6) = "Detail" THEN
                oTable.Split = True
        ENDIF
        NEXT inT
END SUB

The report will be opened by a button, for example in a Base form. Tested this
with the generated file of the report.

Hope someone will fix this in the ReportBuilder.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>