I created a report using DATA_NULL_ Steps. The output is a PDF file. Then I wantto insert an outomatic contstructed table of contents (ods pdf content=yes). The constructionof the Report is in like this: DATA _NULL_ Dcl odsout obj(); Ods proclabel“heading1”; Obj.format_text(data:”heading1”); Obj.format_text(data:”alittle bit of text”); Obj.table_start(name:”heading1”); Obj.row_start(); Obj.format.cell(data:“note1“); Obj.format.cell(data:note2”); Obj.row_end(); Obj.table_end(); Run; This constructionrepeats a couple of times When youexecute the program a table of contents is printed on the first page of the pdffile. This lookslike this: Table ofContent Überschrift…………1 DATA _NULL_........1 DATA _NULL_........1 DATA _NULL_........1 . How can Iinsert the TOC on page 2 of the document? I want to have a title page at thebeginning so the TOC should be placed after the title page. How can Idelete or supress the output of the subheadings in the TOC (the DATA _NULL_text)?
... View more