Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Report Procedure Settings #13125
    EPump
    Participant

    I do not know how to export and import headings for the REPORT procedure, but if you are only doing 6 months at a time then I would use the analysis view which gives you 6 columns.

    I then use the old procedure WRITEANA (from New Views version that preceeded 1.41b) which writes the header to the procedure area of the program – the “new” WRITEANA procedure writes to a buffer and I don’t know how to access the buffer.

    I then export the headers (use one for BS & one for IS) using PUTPROCS and then import the headers into another set of books by using GETPROCS. You can then load the headers into each report by going to each report and running the saved header as a procedure, ie. ~gr”BS”. – this will run the header BS (Balance Sheet) and install the saved header on whatever report you are on.

    ALternatively, like you I have over 10 books every month where I use the same headings. To speed up the process I use the following procedure.

    First I create one set of headings for Balance Sheet (BS) nad Income Statement (IS).

    I then run the old Writeana

    Then I go to the procedure area and block in the 2 headers which I have saved as “BS” and “IS”. Then run PUTPROCS – this will export the 2 headers out of the books to whatever folder(directory) you designate.

    Then I go to another set of books and run the following procedure :
    Note the first time this procedure is run you must create the 2 headers (BS & IS)in the procedures area, otherwise you will get an error message when the procedure tries to delete the headers.
    Also – the name of the balance sheet in my books is “BAL SHEET” and the income statement is “INC STMNT”

    Monthly Report Headings
    ~gh~gi”prc”.~de
    ~gi”BS”.~ed~ea”bs”.~de~wd~cd
    ~bi”BS”.~dc
    ~gi”IS”.~ed~ea”IS”.~de~wd~cd
    ~bi”IS”.~dc
    ~gh
    ~gi”BAL SHEET”.~de~dv”a”.~gr”bs”.
    ~gh
    ~gi”INC STMNT”.~de~dv”a”.~gr”is”.
    ~gh~gi”bs”.~dehe

    in reply to: Balance Sheet balance #12621
    EPump
    Participant

    I have found it useful to make column 6 a paid column. That is, column 1 is the actual column for the reporting period and I use type “A- actual”. Columns 2 to 5 are dated appropriately with column 5 being over 90 days and are all type “O-open”. Column 6 is dated the same as column 1 but the type is “X-closed”.

    This report structure is even more useful than the conventional aged report because the amounts that are still outstanding show in the aged columns 2 to 5 and the amounts that have been paid since the period end to the date the report is run show in column 6. For example, if you run the March report on April 23, the report will show the amounts that are still outstanding in the appropriately aged columns 2 to 5 and the amounts that have been paid from April 1 to 23 in column 6.

    Post Edited (07-12-04 12:44)

Viewing 2 posts - 1 through 2 (of 2 total)