Uses of Class
org.kuali.kfs.gl.document.GeneralLedgerCorrectionProcessDocument

Packages that use GeneralLedgerCorrectionProcessDocument
org.kuali.kfs.gl.document   
org.kuali.kfs.gl.document.dataaccess   
org.kuali.kfs.gl.document.dataaccess.impl   
org.kuali.kfs.gl.document.service   
org.kuali.kfs.gl.document.service.impl   
org.kuali.kfs.gl.document.web.struts   
org.kuali.kfs.gl.report   
org.kuali.kfs.module.ld.document   
org.kuali.kfs.module.ld.document.service   
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document
 

Methods in org.kuali.kfs.gl.document with parameters of type GeneralLedgerCorrectionProcessDocument
static void CorrectionDocumentUtils.copyStatisticsToDocument(OriginEntryStatistics statistics, GeneralLedgerCorrectionProcessDocument document)
          Sets document with the statistics data
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document.dataaccess
 

Methods in org.kuali.kfs.gl.document.dataaccess that return types with arguments of type GeneralLedgerCorrectionProcessDocument
 Collection<GeneralLedgerCorrectionProcessDocument> CorrectionDocumentDao.getCorrectionDocumentsFinalizedOn(Date date)
          Returns a Collection of GLCP documents finalized on the given date
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document.dataaccess.impl
 

Methods in org.kuali.kfs.gl.document.dataaccess.impl that return types with arguments of type GeneralLedgerCorrectionProcessDocument
 Collection<GeneralLedgerCorrectionProcessDocument> CorrectionDocumentDaoOjb.getCorrectionDocumentsFinalizedOn(Date documentFinalDate)
          Queries the database to get a Collection of GLCP documents finalized on the given date
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document.service
 

Methods in org.kuali.kfs.gl.document.service that return GeneralLedgerCorrectionProcessDocument
 GeneralLedgerCorrectionProcessDocument CorrectionDocumentService.findByCorrectionDocumentHeaderId(String docId)
          Retrieves a correction document by the document id
 

Methods in org.kuali.kfs.gl.document.service that return types with arguments of type GeneralLedgerCorrectionProcessDocument
 Collection<GeneralLedgerCorrectionProcessDocument> CorrectionDocumentService.getCorrectionDocumentsFinalizedOn(Date date)
          Retrieves all of the documents that were finalized on a certain date
 

Methods in org.kuali.kfs.gl.document.service with parameters of type GeneralLedgerCorrectionProcessDocument
 void CorrectionDocumentService.aggregateCorrectionDocumentReports(GeneralLedgerCorrectionProcessDocument document)
           
 boolean CorrectionDocumentService.areInputOriginEntriesPersisted(GeneralLedgerCorrectionProcessDocument document)
          Returns true if the system is storing input origin entries for this class.
 boolean CorrectionDocumentService.areOutputOriginEntriesPersisted(GeneralLedgerCorrectionProcessDocument document)
          Returns true if the system is storing output origin entries for this class.
 void CorrectionDocumentService.generateCorrectionReport(GeneralLedgerCorrectionProcessDocument document)
          Generate a text report for the given correction document
 void CorrectionDocumentService.persistInputOriginEntriesForInitiatedOrSavedDocument(GeneralLedgerCorrectionProcessDocument document, Iterator<OriginEntryFull> entries)
          This method persists an Iterator of input origin entries for a document that is in the initiated or saved state
 void CorrectionDocumentService.persistOriginEntryGroupsForDocumentSave(GeneralLedgerCorrectionProcessDocument document, CorrectionDocumentEntryMetadata correctionDocumentEntryMetadata)
          Saves the input and output origin entry groups for a document prior to saving the document
 void CorrectionDocumentService.persistOutputOriginEntriesForInitiatedOrSavedDocument(GeneralLedgerCorrectionProcessDocument document, Iterator<OriginEntryFull> entries)
          This method persists an Iterator of input origin entries for a document that is in the initiated or saved state
 void CorrectionDocumentService.removePersistedInputOriginEntries(GeneralLedgerCorrectionProcessDocument document)
          Removes input origin entries that were saved to the database associated with the given document
 void CorrectionDocumentService.removePersistedOutputOriginEntries(GeneralLedgerCorrectionProcessDocument document)
          Removes all output origin entries persisted in the database created by the given document
 List<OriginEntryFull> CorrectionDocumentService.retrievePersistedInputOriginEntries(GeneralLedgerCorrectionProcessDocument document, int abortThreshold)
          Retrieves input origin entries that have been persisted for this document
 Iterator<OriginEntryFull> CorrectionDocumentService.retrievePersistedInputOriginEntriesAsIterator(GeneralLedgerCorrectionProcessDocument document)
          Retrieves input origin entries that have been persisted for this document in an iterator.
 List<OriginEntryFull> CorrectionDocumentService.retrievePersistedOutputOriginEntries(GeneralLedgerCorrectionProcessDocument document, int abortThreshold)
          Retrieves output origin entries that have been persisted for this document
 Iterator<OriginEntryFull> CorrectionDocumentService.retrievePersistedOutputOriginEntriesAsIterator(GeneralLedgerCorrectionProcessDocument document)
          Retrieves output origin entries that have been persisted for this document in an iterator.
 void CorrectionDocumentService.writePersistedInputOriginEntriesToStream(GeneralLedgerCorrectionProcessDocument document, OutputStream out)
          Writes out the persisted input origin entries in an OutputStream in a flat file format
 void CorrectionDocumentService.writePersistedOutputOriginEntriesToStream(GeneralLedgerCorrectionProcessDocument document, OutputStream out)
          Writes out the persisted output origin entries in an OutputStream in a flat file format\
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document.service.impl
 

Methods in org.kuali.kfs.gl.document.service.impl that return GeneralLedgerCorrectionProcessDocument
 GeneralLedgerCorrectionProcessDocument CorrectionDocumentServiceImpl.findByCorrectionDocumentHeaderId(String docId)
          Retrieves a correction document by the document id
 

Methods in org.kuali.kfs.gl.document.service.impl that return types with arguments of type GeneralLedgerCorrectionProcessDocument
 Collection<GeneralLedgerCorrectionProcessDocument> CorrectionDocumentServiceImpl.getCorrectionDocumentsFinalizedOn(Date date)
           
 

Methods in org.kuali.kfs.gl.document.service.impl with parameters of type GeneralLedgerCorrectionProcessDocument
 void CorrectionDocumentServiceImpl.aggregateCorrectionDocumentReports(GeneralLedgerCorrectionProcessDocument document)
           
 boolean CorrectionDocumentServiceImpl.areInputOriginEntriesPersisted(GeneralLedgerCorrectionProcessDocument document)
          Returns true if and only if the file corresponding to this document's input origin entries are on the file system.
 boolean CorrectionDocumentServiceImpl.areOutputOriginEntriesPersisted(GeneralLedgerCorrectionProcessDocument document)
          Returns true if and only if the file corresponding to this document's output origin entries are on the file system.
 void CorrectionDocumentServiceImpl.generateCorrectionReport(GeneralLedgerCorrectionProcessDocument document)
           
protected  String CorrectionDocumentServiceImpl.generateInputOriginEntryFileName(GeneralLedgerCorrectionProcessDocument document)
          Generates the file name that input origin entries should be retrieved from
protected  String CorrectionDocumentServiceImpl.generateOutputOriginEntryFileName(GeneralLedgerCorrectionProcessDocument document)
          Generates the file name that output origin entries should be written to
protected  BufferedOutputStream CorrectionDocumentServiceImpl.openEntryOutputStreamForOutputGroup(GeneralLedgerCorrectionProcessDocument document)
          Opens an Output Stream to write Origin Entries to
 void CorrectionDocumentServiceImpl.persistInputOriginEntriesForInitiatedOrSavedDocument(GeneralLedgerCorrectionProcessDocument document, Iterator<OriginEntryFull> entries)
          This method persists an Iterator of input origin entries for a document that is in the initiated or saved state
 void CorrectionDocumentServiceImpl.persistOriginEntryGroupsForDocumentSave(GeneralLedgerCorrectionProcessDocument document, CorrectionDocumentEntryMetadata correctionDocumentEntryMetadata)
          Saves the input and output origin entry groups for a document prior to saving the document
 void CorrectionDocumentServiceImpl.persistOutputOriginEntriesForInitiatedOrSavedDocument(GeneralLedgerCorrectionProcessDocument document, Iterator<OriginEntryFull> entries)
          This method persists an Iterator of output origin entries for a document that is in the initiated or saved state
 void CorrectionDocumentServiceImpl.removePersistedInputOriginEntries(GeneralLedgerCorrectionProcessDocument document)
          Removes input origin entries that were saved to the database associated with the given document
 void CorrectionDocumentServiceImpl.removePersistedOutputOriginEntries(GeneralLedgerCorrectionProcessDocument document)
          Removes all output origin entries persisted in the database created by the given document
 List<OriginEntryFull> CorrectionDocumentServiceImpl.retrievePersistedInputOriginEntries(GeneralLedgerCorrectionProcessDocument document, int abortThreshold)
          retrieves input origin entries that have been persisted for this document
 Iterator<OriginEntryFull> CorrectionDocumentServiceImpl.retrievePersistedInputOriginEntriesAsIterator(GeneralLedgerCorrectionProcessDocument document)
          Retrieves input origin entries that have been persisted for this document in an iterator.
 List<OriginEntryFull> CorrectionDocumentServiceImpl.retrievePersistedOutputOriginEntries(GeneralLedgerCorrectionProcessDocument document, int abortThreshold)
          retrieves output origin entries that have been persisted for this document
 Iterator<OriginEntryFull> CorrectionDocumentServiceImpl.retrievePersistedOutputOriginEntriesAsIterator(GeneralLedgerCorrectionProcessDocument document)
          Retrieves output origin entries that have been persisted for this document in an iterator.
 void CorrectionDocumentServiceImpl.writePersistedInputOriginEntriesToStream(GeneralLedgerCorrectionProcessDocument document, OutputStream out)
          Writes out the persisted input origin entries in an OutputStream in a flat file format\
 void CorrectionDocumentServiceImpl.writePersistedOutputOriginEntriesToStream(GeneralLedgerCorrectionProcessDocument document, OutputStream out)
          Writes out the persisted output origin entries in an OutputStream in a flat file format\
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.document.web.struts
 

Methods in org.kuali.kfs.gl.document.web.struts that return GeneralLedgerCorrectionProcessDocument
 GeneralLedgerCorrectionProcessDocument CorrectionForm.getCorrectionDocument()
           
 

Methods in org.kuali.kfs.gl.document.web.struts with parameters of type GeneralLedgerCorrectionProcessDocument
protected  boolean CorrectionAction.checkOriginEntryGroupSelectionBeforeRouting(GeneralLedgerCorrectionProcessDocument document)
          This method checks that an origin entry group has been selected or uploaded, depending on the system of the document If a group has not been loaded, then an error will be added to the screen
protected  void CorrectionAction.printChangeGroups(GeneralLedgerCorrectionProcessDocument doc)
           
protected  void CorrectionAction.updateDocumentSummary(GeneralLedgerCorrectionProcessDocument document, List<OriginEntryFull> entries, boolean clearOutSummary)
          This method updates the summary information contained within each document depending on the document status, editing method, whether only the rows matching criteria are shown, and whether the output is being shown If the form is in restricted functionality mode (and the override param is not set to true), then the summaries will be cleared out
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.gl.report
 

Methods in org.kuali.kfs.gl.report with parameters of type GeneralLedgerCorrectionProcessDocument
 void CorrectionDocumentReport.generateReport(DocumentNumberAwareReportWriterService reportWriterService, GeneralLedgerCorrectionProcessDocument document)
          Initializes report, writes out summary lines, and finalizes
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.module.ld.document
 

Subclasses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.module.ld.document
 class LaborCorrectionDocument
          labor Document class for the Labor Ledger Correction Process.
 

Uses of GeneralLedgerCorrectionProcessDocument in org.kuali.kfs.module.ld.document.service
 

Methods in org.kuali.kfs.module.ld.document.service with parameters of type GeneralLedgerCorrectionProcessDocument
 void LaborCorrectionDocumentService.aggregateCorrectionDocumentReports(GeneralLedgerCorrectionProcessDocument document)
           
 



Copyright © 2005-2012 The Kuali Foundation. All Rights Reserved.