001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.bc.document.dataaccess;
017 /**
018 *
019 * provides the public method that provides data for a report of the contents of a single budget construction document, with object-level detail
020 */
021 public interface BudgetConstructionDocumentAccountObjectDetailReportDao {
022
023 /**
024 *
025 * populates a data-holding table with the data from a single Budget Construction document, with the general ledger amounts, and sums of the FTE associated with them
026 * @param principalName the user requesting the report
027 * @param documentNumber the budget construction document for the data being reported
028 * @param universityFiscalYear the budget fiscal year
029 * @param chartOfAccountsCode the chart of accounts for the document
030 * @param accountNumber the account number for the document
031 * @param subAccountNumber the subaccount number for the document
032 */
033 public void updateDocumentAccountObjectDetailReportTable(String principalName, String documentNumber, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String subAccountNumber);
034
035 }
036