Uses of Class
org.kuali.kfs.module.endow.businessobject.GlInterfaceBatchProcessKemLine

Packages that use GlInterfaceBatchProcessKemLine
org.kuali.kfs.module.endow.batch.dataaccess   
org.kuali.kfs.module.endow.batch.dataaccess.impl   
org.kuali.kfs.module.endow.batch.service.impl   
org.kuali.kfs.module.endow.businessobject   
 

Uses of GlInterfaceBatchProcessKemLine in org.kuali.kfs.module.endow.batch.dataaccess
 

Methods in org.kuali.kfs.module.endow.batch.dataaccess that return types with arguments of type GlInterfaceBatchProcessKemLine
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDao.getAllCombinedKemTransactions(Date postedDate)
          method to gather all the kem transactions as collection of records First all the document types are retrieved then for each document type, all cash activity records are collected.
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDao.getAllKemCombinedTransactionsByDocumentType(String documentType, Date postedDate)
          method to gather all the kem transactions as collection of records.
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDao.getAllKemTransactions(Date postedDate)
          method to gather all the kem transactions as collection of records First all the document types are retrieved then for each document type, all cash activity records are collected and then all non-cash activity records are gathered.
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDao.getAllKemTransactionsByDocumentType(String documentType, Date postedDate)
          method to gather all the kem transactions as collection of records First all cash activity records are collected for the given document type, The single records are then grouped based on chart, account number and object codes.
 

Uses of GlInterfaceBatchProcessKemLine in org.kuali.kfs.module.endow.batch.dataaccess.impl
 

Methods in org.kuali.kfs.module.endow.batch.dataaccess.impl that return types with arguments of type GlInterfaceBatchProcessKemLine
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDaoJdbc.getAllCombinedKemTransactions(Date postedDate)
           
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDaoJdbc.getAllKemCombinedTransactionsByDocumentType(String documentType, Date postedDate)
           
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDaoJdbc.getAllKemTransactions(Date postedDate)
           
 Collection<GlInterfaceBatchProcessKemLine> GLInterfaceBatchProcessDaoJdbc.getAllKemTransactionsByDocumentType(String documentType, Date postedDate)
           
 

Method parameters in org.kuali.kfs.module.endow.batch.dataaccess.impl with type arguments of type GlInterfaceBatchProcessKemLine
protected  void GLInterfaceBatchProcessDaoJdbc.buildCombinedTransactionActivities(Collection<GlInterfaceBatchProcessKemLine> kemCombinedArchiveTransactions, Collection<GlInterfaceBatchProcessKemLine> kemArchiveTransactions, boolean cashType)
          method to combine the kem transactions based on chart, account and object code into single data records
protected  void GLInterfaceBatchProcessDaoJdbc.buildCombinedTransactionActivities(Collection<GlInterfaceBatchProcessKemLine> kemCombinedArchiveTransactions, Collection<GlInterfaceBatchProcessKemLine> kemArchiveTransactions, boolean cashType)
          method to combine the kem transactions based on chart, account and object code into single data records
protected  void GLInterfaceBatchProcessDaoJdbc.buildTransactionActivities(Collection<GlInterfaceBatchProcessKemLine> kemArchiveTransactions, org.springframework.jdbc.support.rowset.SqlRowSet archiveTransactions, boolean cashType)
          method to go through the rowset and put into transient bo and add to the collection.
 

Uses of GlInterfaceBatchProcessKemLine in org.kuali.kfs.module.endow.batch.service.impl
 

Methods in org.kuali.kfs.module.endow.batch.service.impl with parameters of type GlInterfaceBatchProcessKemLine
protected  boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createCashEntry(GlInterfaceBatchProcessKemLine transactionArchive, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, Date postedDate, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create cash entry GL record
protected  boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createGainLossEntry(OriginEntryFull oef, GlInterfaceBatchProcessKemLine transactionArchive, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create a gain/loss record when document type = EAD...
protected  boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createGLEntriesForEGLTOrGLET(GlInterfaceBatchProcessKemLine transactionArchive, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, Date postedDate, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create cash entry GL record for each transaction archive financial doc number
protected  boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createNonCashEntry(GlInterfaceBatchProcessKemLine transactionArchive, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, Date postedDate, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create non-cash entry GL record
protected  boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createOffsetEntry(OriginEntryFull oef, GlInterfaceBatchProcessKemLine transactionArchive, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create an offset record when document type is NON-CASH
protected  OriginEntryFull GeneralLedgerInterfaceBatchProcessServiceImpl.createOriginEntryFull(GlInterfaceBatchProcessKemLine transactionArchive, Date postedDate, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          method to create origin entry and populate the fields
protected  BigDecimal GeneralLedgerInterfaceBatchProcessServiceImpl.getTransactionAmount(GlInterfaceBatchProcessKemLine transactionArchive)
          method to get transaction amount
protected  String GeneralLedgerInterfaceBatchProcessServiceImpl.getTransactionDescription(GlInterfaceBatchProcessKemLine transactionArchive, Date postedDate)
          method to get transaction description
protected  void GeneralLedgerInterfaceBatchProcessServiceImpl.updateTotals(GlInterfaceBatchProcessKemLine transactionArchive)
          add debit and credit totals and number of lines processed to detail line.
protected  void GeneralLedgerInterfaceBatchProcessServiceImpl.updateTotalsProcessed(GlInterfaceBatchProcessKemLine transactionArchive)
          method to update the totals processed amount variables.
protected  void GeneralLedgerInterfaceBatchProcessServiceImpl.writeExceptionRecord(GlInterfaceBatchProcessKemLine transactionArchive, String reasonMessage)
          writes out the table row values then writes the reason row and inserts a blank line
 

Method parameters in org.kuali.kfs.module.endow.batch.service.impl with type arguments of type GlInterfaceBatchProcessKemLine
 boolean GeneralLedgerInterfaceBatchProcessServiceImpl.createGlEntriesForTransactionArchives(String documentType, Collection<GlInterfaceBatchProcessKemLine> transactionArchives, PrintStream OUTPUT_KEM_TO_GL_DATA_FILE_ps, Date postedDate, GLInterfaceBatchStatisticsReportDetailTableRow statisticsDataRow)
          For the transaction archives this method creates GL entries into the output file.
 

Uses of GlInterfaceBatchProcessKemLine in org.kuali.kfs.module.endow.businessobject
 

Methods in org.kuali.kfs.module.endow.businessobject that return GlInterfaceBatchProcessKemLine
 GlInterfaceBatchProcessKemLine GLCombinedTransactionArchive.copyValuesToCombinedTransactionArchive(boolean cashType)
          method to copy the values stored in the bo to the combined transaction archive record
 

Methods in org.kuali.kfs.module.endow.businessobject with parameters of type GlInterfaceBatchProcessKemLine
 void GLCombinedTransactionArchive.copyChartAndAccountNumberAndObjectCodeValues(GlInterfaceBatchProcessKemLine kemArchiveTransaction)
          method to copy values from transaction archive into chart, account number, and object code
 void GLCombinedTransactionArchive.copyKemArchiveTransactionValues(GlInterfaceBatchProcessKemLine kemArchiveTransaction, boolean cashType)
          method to copy values from archive transaction to properties in the transient business object so they can be copied to the combined transaction archive line later The amounts from single transaction archive are added to the property variables and will be copied to the combined archive record.
 



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