first commit
This commit is contained in:
730
hrmsWeb/WEB-INF/classes/wenrgise/hrms/ejb/facade/HrmFacade.java
Normal file
730
hrmsWeb/WEB-INF/classes/wenrgise/hrms/ejb/facade/HrmFacade.java
Normal file
@@ -0,0 +1,730 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBObject;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.RecordMetaInfo;
|
||||
import wenrgise.common.utility.UserInfo;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
import wenrgise.common.vo.LovQueryVO;
|
||||
import wenrgise.common.vo.LovVO;
|
||||
import wenrgise.hrms.bean.HrmAdvSettleHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAdvanceMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmClaimMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpAdvAppHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpDepHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpDiscActionHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpPersHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLnAppHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLnChartHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLnMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvCreditHdrBean;
|
||||
import wenrgise.hrms.bean.HrmMediclaimMasterHdrBean;
|
||||
import wenrgise.hrms.bean.HrmMisReportHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgCalMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgClassHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgCntryMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgHolCalHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgHolTypeMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgIncrementHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgRatingMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgScaleMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgSkillMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmOrgWorkGroupMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmSepApplnHdrBean;
|
||||
import wenrgise.hrms.bean.HrmSepCatMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmSepClrEmpHdrBean;
|
||||
import wenrgise.hrms.bean.HrmSepClrTmplMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmSepOrderHdrBean;
|
||||
import wenrgise.hrms.vo.HrmAdvMstQueryVO;
|
||||
import wenrgise.hrms.vo.HrmAdvSettleHeadsQVO;
|
||||
import wenrgise.hrms.vo.HrmAdvSettleQVO;
|
||||
import wenrgise.hrms.vo.HrmClaimMstQVO;
|
||||
import wenrgise.hrms.vo.HrmEmpAdvAppQueryVO;
|
||||
import wenrgise.hrms.vo.HrmEmpClaimQVO;
|
||||
import wenrgise.hrms.vo.HrmEmpDepDtlQVO;
|
||||
import wenrgise.hrms.vo.HrmEmpDiscActionQVO;
|
||||
import wenrgise.hrms.vo.HrmEmpPersQVO;
|
||||
import wenrgise.hrms.vo.HrmLnAppQVO;
|
||||
import wenrgise.hrms.vo.HrmLnChartQVO;
|
||||
import wenrgise.hrms.vo.HrmLnMstQVO;
|
||||
import wenrgise.hrms.vo.HrmMediclaimMasterQVO;
|
||||
import wenrgise.hrms.vo.HrmMisreportQVO;
|
||||
import wenrgise.hrms.vo.HrmMyWorkflowQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgCalMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgClassDtlQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgCntryMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgHolCalQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgHolTypeMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgIncrementQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgRatingMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgScaleMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgSkillMstQVO;
|
||||
import wenrgise.hrms.vo.HrmOrgWorkGroupMstQVO;
|
||||
import wenrgise.hrms.vo.HrmRetireForecastQVO;
|
||||
import wenrgise.hrms.vo.HrmSepApplnQVO;
|
||||
import wenrgise.hrms.vo.HrmSepCatMstQVO;
|
||||
import wenrgise.hrms.vo.HrmSepClrEmpQVO;
|
||||
import wenrgise.hrms.vo.HrmSepClrTmplMstQVO;
|
||||
import wenrgise.hrms.vo.HrmSepOrderQVO;
|
||||
import wenrgise.hrms.vo.HrmSettleQueryVO;
|
||||
import wenrgise.workflow.bean.WflWorkListInfoBean;
|
||||
|
||||
public interface HrmFacade extends EJBObject {
|
||||
UserInfo getLoginUserInfo(String paramString1, String paramString2) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
WflWorkListInfoBean getWorkListInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmCalHeaderMetaInfo(HrmOrgCalMstQVO paramHrmOrgCalMstQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCalHeader(HrmOrgCalMstQVO paramHrmOrgCalMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmCalDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCalDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String getHrmCalStartDate(String paramString1, String paramString2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmCalendar(HrmOrgCalMstHdrBean paramHrmOrgCalMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmClassHeaderMetaInfo(HrmOrgClassDtlQVO paramHrmOrgClassDtlQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmClassHeader(HrmOrgClassDtlQVO paramHrmOrgClassDtlQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmClassDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmClassDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmOrgClassDtl(HrmOrgClassHdrBean paramHrmOrgClassHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String creditLeaves(HrmLvCreditHdrBean paramHrmLvCreditHdrBean, Timestamp paramTimestamp1, ArrayList paramArrayList, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmHolCalHeaderMetaInfo(HrmOrgHolCalQVO paramHrmOrgHolCalQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmHolCalHeader(HrmOrgHolCalQVO paramHrmOrgHolCalQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmHolCalDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmHolCalDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmHolCal(HrmOrgHolCalHdrBean paramHrmOrgHolCalHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmHolTypeHeaderMetaInfo(HrmOrgHolTypeMstQVO paramHrmOrgHolTypeMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmHolTypeHeader(HrmOrgHolTypeMstQVO paramHrmOrgHolTypeMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHolidayType(HrmOrgHolTypeMstHdrBean paramHrmOrgHolTypeMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSkillHeaderMetaInfo(HrmOrgSkillMstQVO paramHrmOrgSkillMstQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSkillHeader(HrmOrgSkillMstQVO paramHrmOrgSkillMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSkillDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSkillDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSkill(HrmOrgSkillMstHdrBean paramHrmOrgSkillMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmScaleHeaderMetaInfo(HrmOrgScaleMstQVO paramHrmOrgScaleMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmScaleHeader(HrmOrgScaleMstQVO paramHrmOrgScaleMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmScaleDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmScaleDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmScaleMst(HrmOrgScaleMstHdrBean paramHrmOrgScaleMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmScaleMstScaleCodeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmOrgScaleGradeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRelDetailMetaInfo(String paramString) throws RemoteException, CreateException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmReligionDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmReligion(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmOrgWorkGroupMstHeaderMetaInfo(HrmOrgWorkGroupMstQVO paramHrmOrgWorkGroupMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmOrgWorkGroupMstHeader(HrmOrgWorkGroupMstQVO paramHrmOrgWorkGroupMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmOrgWorkGroupMst(HrmOrgWorkGroupMstHdrBean paramHrmOrgWorkGroupMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRatingHeaderMetaInfo(HrmOrgRatingMstQVO paramHrmOrgRatingMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRatingHeader(HrmOrgRatingMstQVO paramHrmOrgRatingMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRatingDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRatingDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRating(HrmOrgRatingMstHdrBean paramHrmOrgRatingMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmCountryHeaderMetaInfo(HrmOrgCntryMstQVO paramHrmOrgCntryMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCountryHeader(HrmOrgCntryMstQVO paramHrmOrgCntryMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmCountryDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCountryDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmCountry(HrmOrgCntryMstHdrBean paramHrmOrgCntryMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmQualificationDetailMetaInfo() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmQualificationDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmQualification(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLanguageDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLanguage(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLanguageDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRelationDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRelationDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRelation(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmDistrictDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmDistrict(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmDistrictDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTehsilDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTehsil(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTehsilDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCalendarTypeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmClassDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmClassDtlLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmClassTypeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmHolidayTypeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCalNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSiteCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSkillCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRatingCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCountryCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmWorkGroupCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmWorkSiteCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCostCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmBudgetCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmWorkParentCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmContactEmployeeNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmIncrHdrMetaInfo(HrmOrgIncrementQVO paramHrmOrgIncrementQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmIncrHeaderInfo(HrmOrgIncrementQVO paramHrmOrgIncrementQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmIncrDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmIncrDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmIncrement(HrmOrgIncrementHdrBean paramHrmOrgIncrementHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getIncrRatingLOVNData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getIncrRatingLOVQData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmStateCodeInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmStateCodeQueryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpDepDtlHdrMetaInfo(HrmEmpDepDtlQVO paramHrmEmpDepDtlQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpDepDtlHdrInfo(HrmEmpDepDtlQVO paramHrmEmpDepDtlQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpDepDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpDepDtlInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpDepDtl(HrmEmpDepHdrBean paramHrmEmpDepHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpDiscActionHdrMetaInfo(HrmEmpDiscActionQVO paramHrmEmpDiscActionQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpDiscActionHdrInfo(HrmEmpDiscActionQVO paramHrmEmpDiscActionQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpDiscActionMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpDiscActionInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpDiscAction(HrmEmpDiscActionHdrBean paramHrmEmpDiscActionHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpDiscActionSiteLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersHdrMetaInfo(HrmEmpPersQVO paramHrmEmpPersQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersHdrInfo(HrmEmpPersQVO paramHrmEmpPersQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersDtlsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersDtls(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersAddDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPersAddDtlsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersAddDtls(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersJoinInfMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersJoinInfInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersJoinInf(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersEduDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersEduDtlsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersEduDtls(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersPriorExpMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersPriorExpInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersPriorExp(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersPFDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersPFDtlsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersPFDtls(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersEmpHistMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersEmpHistInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersEmpHist(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersTrngDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersTrngDtlsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersTrngDtls(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersAwardMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersAwardInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersAward(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersInsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersInsInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersIns(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersHealthMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersHealthInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersHealth(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersLngMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersLngInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersLng(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersRefMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersRefInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersRef(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpLvCanLvCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpLvCanLvCdInsertLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpDepDtlEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpDepDtlRelTypeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsMotTngLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsNationalityLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsMaritalStatusLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsDeptLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsDesigLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsSocialStatusLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsReligionLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsGradeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsRepEmpLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersDtlsRelatedEmpLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersAddDtlsStateLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersAddDtlsCountryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersAddDtlsDistrictLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersAddDtlsTehsilLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersPriorExpSkillLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersPriorExpDesigLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersEduDtlsInstLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersEduDtlsQualLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfBaseSiteLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfEntryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfStatusLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfSepTypeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfCostCentreLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfBankLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpPersJoinInfJobRespLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRelationLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLoanMstHeaderMetaInfo(HrmLnMstQVO paramHrmLnMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLoanMstHeaderInfo(HrmLnMstQVO paramHrmLnMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLoanMstDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLoanMstDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCurLoanMstDetail() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLoanMst(HrmLnMstHdrBean paramHrmLnMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLoanChartHdrMetaInfo(HrmLnChartQVO paramHrmLnChartQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLoanChartHdrInfo(HrmLnChartQVO paramHrmLnChartQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLoanChartDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLoanChartDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLoanAppHdrMetaInfo(HrmLnAppQVO paramHrmLnAppQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLoanAppHdrInfo(HrmLnAppQVO paramHrmLnAppQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLnAppDtlMetaInfo(String paramString, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLnDisDtlMetaInfo(String paramString, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLnHblIntRateMetaInfo(String paramString, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLnAppDtl(String paramString, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLnDisDtl(String paramString, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLnHblIntRateDtl(String paramString, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLnAppDtl(HrmLnAppHdrBean paramHrmLnAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLnDisDtl(HrmLnAppHdrBean paramHrmLnAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLnHblIntRateDtl(HrmLnAppHdrBean paramHrmLnAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLnAppEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvAppEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvAppInsEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLnAppEmpNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLnAppLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLnAppInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String loanAppBulkPayment(HrmLnAppHdrBean paramHrmLnAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLoanChart(HrmLnChartHdrBean paramHrmLnChartHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLoanCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChartNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLoanDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLoanCodeLOVdataNew(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChartNameLOVdataNew(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLoanChartNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdvMasterHdrMetaInfo(HrmAdvMstQueryVO paramHrmAdvMstQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdvMasterHeaderInfo(HrmAdvMstQueryVO paramHrmAdvMstQueryVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdvMasterDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdvMasterDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCurAdvMasterDetailInfo() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmAdvanceMstHdrBean paramHrmAdvanceMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSettleDetail(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdvSetHdrMetaInfo(HrmSettleQueryVO paramHrmSettleQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdvSetHeaderInfo(HrmSettleQueryVO paramHrmSettleQueryVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdvSetDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdvSetDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAdvSettleHds(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdvSettlementHdrMetaInfo(HrmAdvSettleQVO paramHrmAdvSettleQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdvSettlementHeader(HrmAdvSettleQVO paramHrmAdvSettleQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvSettleAdvCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmAdvSettleHdrBean paramHrmAdvSettleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveAdvSettlement(HrmAdvSettleHdrBean paramHrmAdvSettleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectAdvSettlement(HrmAdvSettleHdrBean paramHrmAdvSettleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitAdvSettlement(HrmAdvSettleHdrBean paramHrmAdvSettleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpAdvAppHdrMetaInfo(HrmEmpAdvAppQueryVO paramHrmEmpAdvAppQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpAdvAppHeaderInfo(HrmEmpAdvAppQueryVO paramHrmEmpAdvAppQueryVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmEmpAdvAppHdrBean paramHrmEmpAdvAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String advAppBulkSettlePayment(HrmEmpAdvAppHdrBean paramHrmEmpAdvAppHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvMstCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvMstCodeInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvMstCalendarCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSettleHeadsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrAdvSettleHeadsDetailMetaInfo(HrmAdvSettleHeadsQVO paramHrmAdvSettleHeadsQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrAdvSettleHeadsDetail(HrmAdvSettleHeadsQVO paramHrmAdvSettleHeadsQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvAppAdvCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvAppAdvCdInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAdvanceDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmClaimMstHdrMetaInfo(HrmClaimMstQVO paramHrmClaimMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmClaimMstHdrInfo(HrmClaimMstQVO paramHrmClaimMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmClaimMstDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmClaimMstDtlInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmClaimMst(HrmClaimMstHdrBean paramHrmClaimMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmClaimCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpClaimDetailMetaInfo(HrmEmpClaimQVO paramHrmEmpClaimQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpClaimDetailInfo(HrmEmpClaimQVO paramHrmEmpClaimQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpClaim(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpClaimEmpLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpClaimCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpClaimDtlCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpClaimNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepEligLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepApplnHdrMetaInfo(HrmSepApplnQVO paramHrmSepApplnQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepApplnHeaderInfo(HrmSepApplnQVO paramHrmSepApplnQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepApplnDtlMetaInfo(String paramString) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepApplnDetailInfo(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepApplnNoLOVdata(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepCategoryLOVdata(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSepAppln(HrmSepApplnHdrBean paramHrmSepApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveSepAppln(HrmSepApplnHdrBean paramHrmSepApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectSepAppln(HrmSepApplnHdrBean paramHrmSepApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getSepEmpNoQLOVData(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getSepEmpNoNLOVData(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepOrderHdrMetaInfo(HrmSepOrderQVO paramHrmSepOrderQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepOrderHdr(HrmSepOrderQVO paramHrmSepOrderQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepOrderDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepOrderDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSepOrder(HrmSepOrderHdrBean paramHrmSepOrderHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepOrderNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepOrderApplnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepOrderApplnNoLOVQdata(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getSepApprNameLOVData(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveSepOrder(HrmSepOrderHdrBean paramHrmSepOrderHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectSepOrder(HrmSepOrderHdrBean paramHrmSepOrderHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepCatMasterHdrMetaInfo(HrmSepCatMstQVO paramHrmSepCatMstQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepCatMasterHeaderInfo(HrmSepCatMstQVO paramHrmSepCatMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSepCat(HrmSepCatMstHdrBean paramHrmSepCatMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSeparationCodeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepClrLstDtlMetaInfo() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepClrLstDetailInfo(long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmSepClrLstDetail(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepClrTmplMstHdrMetaInfo(HrmSepClrTmplMstQVO paramHrmSepClrTmplMstQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepClrTmplMstHdr(HrmSepClrTmplMstQVO paramHrmSepClrTmplMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepClrTmplMstDtlMetaInfo(String paramString) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepClrTmplMstDtl(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmSepClrTmplMstHdrBean paramHrmSepClrTmplMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepClrLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepTmplLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepClrEmpHdrMetaInfo(HrmSepClrEmpQVO paramHrmSepClrEmpQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepClrEmpHdr(HrmSepClrEmpQVO paramHrmSepClrEmpQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmSepClrEmpDtlMetaInfo(String paramString) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmSepClrEmpDtl(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmSepClrEmpHdrBean paramHrmSepClrEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepClrEmpTmplLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepClrEmpEmpNoLOVQ(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmSepClrEmpEmpNoLOVN(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getYYMMReportLOVData(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getDesigIdReportLOVData(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getMisPositionLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String InsertData(HrmMisReportHdrBean paramHrmMisReportHdrBean, ArrayList paramArrayList) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getMisDataCount(HrmMisreportQVO paramHrmMisreportQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getMisDataInfo(HrmMisreportQVO paramHrmMisreportQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmMisData(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getMisYearMonthLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String getYearMonth() throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String InsertData(BaseHeaderBean paramBaseHeaderBean) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo procGetRetireDataCount(HrmRetireForecastQVO paramHrmRetireForecastQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList procGetRetireDataInfo(HrmRetireForecastQVO paramHrmRetireForecastQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRetireForecastData(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String InsertDataAgeAnalysis(BaseHeaderBean paramBaseHeaderBean) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmMediclaimMasterHeaderMetaInfo(HrmMediclaimMasterQVO paramHrmMediclaimMasterQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmMediclaimMasterHeaderInfo(HrmMediclaimMasterQVO paramHrmMediclaimMasterQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmMediclaimMasterDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmMediclaimMasterDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmMediclaimMaster(HrmMediclaimMasterHdrBean paramHrmMediclaimMasterHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmMediClassLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmMediCadreLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmMyWorkflowHdrMetaInfo(HrmMyWorkflowQVO paramHrmMyWorkflowQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmMyWorkflowHdrInfo(HrmMyWorkflowQVO paramHrmMyWorkflowQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmMyWorkflowDetailMetaInfo(BaseQueryVO paramBaseQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmMyWorkflowDetailInfo(BaseQueryVO paramBaseQueryVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getWorkIdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBHome;
|
||||
import wenrgise.hrms.ejb.facade.HrmFacade;
|
||||
|
||||
public interface HrmFacadeHome extends EJBHome {
|
||||
HrmFacade create() throws CreateException, RemoteException;
|
||||
}
|
@@ -0,0 +1,837 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBObject;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.RecordMetaInfo;
|
||||
import wenrgise.common.utility.UserInfo;
|
||||
import wenrgise.common.vo.LovQueryVO;
|
||||
import wenrgise.common.vo.LovVO;
|
||||
import wenrgise.hrms.bean.HrmAdhocReportHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAttEmpAttInHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAttEmpAttOutHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAttShiftMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAttShiftRosterGenHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpPersHdrBean;
|
||||
import wenrgise.hrms.bean.HrmGenEligRuleHdrBean;
|
||||
import wenrgise.hrms.bean.HrmGenEligRuleQueryHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvApplnHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvCancHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvEncashHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvLedgerHdrBean;
|
||||
import wenrgise.hrms.bean.HrmLvMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmPrmCriteriaHdrBean;
|
||||
import wenrgise.hrms.bean.HrmPrmKPARatingHdrBean;
|
||||
import wenrgise.hrms.bean.HrmPrmNoticeDtlHdrBean;
|
||||
import wenrgise.hrms.bean.HrmPrmOrderHdrBean;
|
||||
import wenrgise.hrms.bean.HrmPrmTestScoreHdrBean;
|
||||
import wenrgise.hrms.bean.HrmRecAdvtMtnHdrBean;
|
||||
import wenrgise.hrms.bean.HrmRecApplnMtnHdrBean;
|
||||
import wenrgise.hrms.bean.HrmRecEmpRecCreationHdrBean;
|
||||
import wenrgise.hrms.bean.HrmRecTestCentreMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmRoasterEntryHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngCalHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngCrsBudHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngCrsMstHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngEmpAttHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngEmpReqHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngFacBean;
|
||||
import wenrgise.hrms.bean.HrmTrngFacTrngHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTrngInsCrsHdrBean;
|
||||
import wenrgise.hrms.vo.HrmAdhocReportQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpAttInQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpAttOutQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpAttQueryQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpDayOffQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpShiftQVO;
|
||||
import wenrgise.hrms.vo.HrmAttEmpShiftRosterQVO;
|
||||
import wenrgise.hrms.vo.HrmAttShiftMstQVO;
|
||||
import wenrgise.hrms.vo.HrmAttWorkGroupDayOffQVO;
|
||||
import wenrgise.hrms.vo.HrmAttWorkGroupShiftQVO;
|
||||
import wenrgise.hrms.vo.HrmGenEligRuleQVO;
|
||||
import wenrgise.hrms.vo.HrmGenEligRuleQueryQVO;
|
||||
import wenrgise.hrms.vo.HrmLvApplnQVO;
|
||||
import wenrgise.hrms.vo.HrmLvApplnQueryQVO;
|
||||
import wenrgise.hrms.vo.HrmLvCancQVO;
|
||||
import wenrgise.hrms.vo.HrmLvCancQueryQVO;
|
||||
import wenrgise.hrms.vo.HrmLvEncashQVO;
|
||||
import wenrgise.hrms.vo.HrmLvLedgerQVO;
|
||||
import wenrgise.hrms.vo.HrmLvMstQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmCriteriaQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmExperienceScoreQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmKPARatingQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmNoticeDtlQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmOrderQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmQualCriteriaQVO;
|
||||
import wenrgise.hrms.vo.HrmPrmTestScoreQVO;
|
||||
import wenrgise.hrms.vo.HrmRecAdvtMtnQVO;
|
||||
import wenrgise.hrms.vo.HrmRecApplnMtnQVO;
|
||||
import wenrgise.hrms.vo.HrmRecEmpRecCreationQVO;
|
||||
import wenrgise.hrms.vo.HrmRecScrutAppMntQVO;
|
||||
import wenrgise.hrms.vo.HrmRecTestCentreMstQVO;
|
||||
import wenrgise.hrms.vo.HrmRoasterEntryQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngCalQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngCrsBudQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngCrsMstQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngEmpAttQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngEmpFbkQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngEmpHistQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngEmpReqQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngFacFdbkQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngFacQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngFacTrngQVO;
|
||||
import wenrgise.hrms.vo.HrmTrngInsCrsQVO;
|
||||
|
||||
public interface HrmSecondFacade extends EJBObject {
|
||||
RecordMetaInfo getHrmAttEmpDayoffDtlMetaInfo(HrmAttEmpDayOffQVO paramHrmAttEmpDayOffQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttEmpDayoffDetailInfo(HrmAttEmpDayOffQVO paramHrmAttEmpDayOffQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAttEmpDayoffData(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttEmpNoDayOffQueryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttEmpNoDayOffInsertLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAttWGShiftDtlMetaInfo(HrmAttWorkGroupShiftQVO paramHrmAttWorkGroupShiftQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttWGShiftDtlInfo(HrmAttWorkGroupShiftQVO paramHrmAttWorkGroupShiftQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveWGS(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGrpCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGrpCodeLOVdataNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGrpSiteCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGrpSiteCodeLOVdataNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGrpShiftCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAttEmpShiftDtlMetaInfo(HrmAttEmpShiftQVO paramHrmAttEmpShiftQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttEmpShiftDtlInfo(HrmAttEmpShiftQVO paramHrmAttEmpShiftQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveEmpShift(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttESEmpNoLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttESEmpNoLOVdataNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttESShiftCodeLOVdataNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAttHdrMetaInfo(HrmAttEmpAttInQVO paramHrmAttEmpAttInQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttHeaderInfo(HrmAttEmpAttInQVO paramHrmAttEmpAttInQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAttEmpIn(HrmAttEmpAttInHdrBean paramHrmAttEmpAttInHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
HrmAttEmpAttInHdrBean getOnLoadSysDtTime(HrmAttEmpAttInHdrBean paramHrmAttEmpAttInHdrBean) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttEmpShftCodeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttQueryEmpShftCodeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttQueryDtlEmpLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttQueryLocationLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getEmpAttQueryHdrMetaInfo(HrmAttEmpAttQueryQVO paramHrmAttEmpAttQueryQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getEmpAttQueryHeader(HrmAttEmpAttQueryQVO paramHrmAttEmpAttQueryQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getEmpAttQueryDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getEmpAttQueryDtlInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttEmployeeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAttOutHdrMetaInfo(HrmAttEmpAttOutQVO paramHrmAttEmpAttOutQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttOutHeaderInfo(HrmAttEmpAttOutQVO paramHrmAttEmpAttOutQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAttEmpOut(HrmAttEmpAttOutHdrBean paramHrmAttEmpAttOutHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws EnrgiseSystemException, EnrgiseApplicationException, RemoteException;
|
||||
|
||||
String saveHrmAttEmpQuery(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAttWorkGroupDayOffDtlMetaInfo(HrmAttWorkGroupDayOffQVO paramHrmAttWorkGroupDayOffQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAttWorkGroupDayOffDetailInfo(HrmAttWorkGroupDayOffQVO paramHrmAttWorkGroupDayOffQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAttWorkGroupDayOffData(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGroupInsertLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGroupQueryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttWorkGroupSiteQueryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getAttShiftMstHeaderMetaInfo(HrmAttShiftMstQVO paramHrmAttShiftMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getAttShiftMstHeader(HrmAttShiftMstQVO paramHrmAttShiftMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveAttShiftMstData(HrmAttShiftMstHdrBean paramHrmAttShiftMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getShiftCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getAttEmpshiftRosterDetailMetaInfo(HrmAttEmpShiftRosterQVO paramHrmAttEmpShiftRosterQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getAttEmpshiftRosterDetail(HrmAttEmpShiftRosterQVO paramHrmAttEmpShiftRosterQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveShiftRosterGenData(HrmAttShiftRosterGenHdrBean paramHrmAttShiftRosterGenHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getShiftRosterGenWorkGrpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTCMstHeaderMetaInfo(HrmRecTestCentreMstQVO paramHrmRecTestCentreMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTCMstHeader(HrmRecTestCentreMstQVO paramHrmRecTestCentreMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTCMst(HrmRecTestCentreMstHdrBean paramHrmRecTestCentreMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTCMstCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecLocVacencyDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecLngReqDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecQualReqDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecSkillReqDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecWorkExpDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getRecJobDescDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecLocVacencyDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecLngReqDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecQualReqDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecSkillReqDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecWorkExpDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getRecJobDescDetail(String paramString, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecAdvAttrDtl(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrLocationLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrQualificationLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrLanguageLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrSkillLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrWorkLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrRefLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecAttrPositionLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnMtnHdrMetaInfo(HrmRecApplnMtnQVO paramHrmRecApplnMtnQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnMtnHeaderInfo(HrmRecApplnMtnQVO paramHrmRecApplnMtnQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnAddDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnEduDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnExpDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnLangDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnResultDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnOtherDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnRefMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecApplnTrngDtlsMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnAddDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnExpDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnEduDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnLangDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnResultDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnOtherDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnRef(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecApplnTrngDtls(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnResultDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnLangDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnEduDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnExpDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnAddDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnOtherDtl(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnRef(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecApplnTrngDtls(HrmRecApplnMtnHdrBean paramHrmRecApplnMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnRefNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnDesigLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnApplnNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnLangCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnKnowCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnResvCatCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecApplnTestCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRefNoLOVdataNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getDesigNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmScrutAppMntnDetailMetaInfo(HrmRecScrutAppMntQVO paramHrmRecScrutAppMntQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmScrutAppMntnDetailInfo(HrmRecScrutAppMntQVO paramHrmRecScrutAppMntQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmRecScrutAppDtl(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecAdvtHdrMetaInfo(HrmRecAdvtMtnQVO paramHrmRecAdvtMtnQVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecAdvtHdrInfo(HrmRecAdvtMtnQVO paramHrmRecAdvtMtnQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRecAdvtDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRecAdvtDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getClassDataLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRefNoLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEntryModeLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPositionCodeLOV(LovQueryVO paramLovQueryVO) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveAdvtData(HrmRecAdvtMtnHdrBean paramHrmRecAdvtMtnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpRecCrtnHdrMetaInfo(HrmRecEmpRecCreationQVO paramHrmRecEmpRecCreationQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpRecCrtnHeaderInfo(HrmRecEmpRecCreationQVO paramHrmRecEmpRecCreationQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnApplnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnEntryModeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnMotherTongueLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnNationalityLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnMaritalStatusLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnReservationCtgLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnReligionLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnCountryLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnStateLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnBaseSiteLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnDesignationLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnScaleLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnGradeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnCostCentreLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnJoiningGroupLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnTechNonTechLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmRecCrnEmployeeTypeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmRecEmpRecCreationHdrBean paramHrmRecEmpRecCreationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCrsHeaderMetaInfo(HrmTrngCrsMstQVO paramHrmTrngCrsMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngCrsHeader(HrmTrngCrsMstQVO paramHrmTrngCrsMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCrsDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngcrsDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTrngCrs(HrmTrngCrsMstHdrBean paramHrmTrngCrsMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngInsCrsHeaderMetaInfo(HrmTrngInsCrsQVO paramHrmTrngInsCrsQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngInsCrsHeader(HrmTrngInsCrsQVO paramHrmTrngInsCrsQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngInsCrsDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngInsCrsDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTrngInsCrs(HrmTrngInsCrsHdrBean paramHrmTrngInsCrsHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCrsBudHeaderMetaInfo(HrmTrngCrsBudQVO paramHrmTrngCrsBudQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngCrsBudHeader(HrmTrngCrsBudQVO paramHrmTrngCrsBudQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCrsBudDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngCrsBudDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTrngCrsBud(HrmTrngCrsBudHdrBean paramHrmTrngCrsBudHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCalHeaderMetaInfo(HrmTrngCalQVO paramHrmTrngCalQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngCalHeader(HrmTrngCalQVO paramHrmTrngCalQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngCalDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngCalDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTrngCal(HrmTrngCalHdrBean paramHrmTrngCalHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmFacHeaderMetaInfo(HrmTrngFacQVO paramHrmTrngFacQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmFacHeader(HrmTrngFacQVO paramHrmTrngFacQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmFacMast(HrmTrngFacBean paramHrmTrngFacBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmFacTrngHeaderMetaInfo(HrmTrngFacTrngQVO paramHrmTrngFacTrngQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmFacTrngHeader(HrmTrngFacTrngQVO paramHrmTrngFacTrngQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmFacTrngDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmFacTrngCalDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmFacTrng(HrmTrngFacTrngHdrBean paramHrmTrngFacTrngHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpTrngReqHeaderMetaInfo(HrmTrngEmpReqQVO paramHrmTrngEmpReqQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpTrngReqHeader(HrmTrngEmpReqQVO paramHrmTrngEmpReqQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpReqDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpReqDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpTrngReq(HrmTrngEmpReqHdrBean paramHrmTrngEmpReqHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveEmpTrngReq(HrmTrngEmpReqHdrBean paramHrmTrngEmpReqHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectEmpTrngReq(HrmTrngEmpReqHdrBean paramHrmTrngEmpReqHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitEmpTrngReq(HrmTrngEmpReqHdrBean paramHrmTrngEmpReqHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmployeeCodeLOVdataQ(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmployeeCodeLOVdataN(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String getGroupInformation(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpHistHeaderMetaInfo(HrmTrngEmpHistQVO paramHrmTrngEmpHistQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpHistHeader(HrmTrngEmpHistQVO paramHrmTrngEmpHistQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpHistDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpHistDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpAttHeaderMetaInfo(HrmTrngEmpAttQVO paramHrmTrngEmpAttQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpAttHeader(HrmTrngEmpAttQVO paramHrmTrngEmpAttQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpAttDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpAttDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTrngEmpAtt(HrmTrngEmpAttHdrBean paramHrmTrngEmpAttHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngFacFdBkDtlMetaInfo(HrmTrngFacFdbkQVO paramHrmTrngFacFdbkQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngFacFdBkDetailInfo(HrmTrngFacFdbkQVO paramHrmTrngFacFdbkQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngFacFdBkNextDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngFacFdBkNextDtl(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngFacFdbkDtlHdrMetaInfo(HrmTrngFacFdbkQVO paramHrmTrngFacFdbkQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngFacFdbkDtlHdr(HrmTrngFacFdbkQVO paramHrmTrngFacFdbkQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmFacFeedback(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpFdBkDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpFdBkDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTrngEmpFbkHeaderMetaInfo(HrmTrngEmpFbkQVO paramHrmTrngEmpFbkQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTrngEmpFbkHeader(HrmTrngEmpFbkQVO paramHrmTrngEmpFbkQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpFeedback(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngFdbkRatingHelpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
void calendarClose(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCalCloseCrsNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgMstBranchCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgInstCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgCountryCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgCityCodeLOVdataQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgFacMstEmpNoLOVNmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgFacMstBaseInstLOVQmode(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngBudCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngBudCalendarCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngBudCourseCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCalNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngSiteLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCrsInsNameLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmClsCalCrsLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpHistEmpLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpHistCrsLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpHistCalLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAttendanceDtlLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCalInstLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCalCrsCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgCourseLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgReqCourseLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngFacultyLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngRatingLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgReqCalLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgReqRecoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrgReqEmpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCalDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmFacNameLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngCourseLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrngFacultyLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
HashMap getEligClassInfo() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmGenEligRuleHdrBean paramHrmGenEligRuleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws EnrgiseSystemException, EnrgiseApplicationException, RemoteException;
|
||||
|
||||
RecordMetaInfo getGenEligRuleMetaInfo(HrmGenEligRuleQVO paramHrmGenEligRuleQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getGenEligRuleHeaderInfo(HrmGenEligRuleQVO paramHrmGenEligRuleQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmGenEligRuleQuery(HrmGenEligRuleQueryHdrBean paramHrmGenEligRuleQueryHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmGenEligRuleQueryDetail(HrmGenEligRuleQueryQVO paramHrmGenEligRuleQueryQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmGenEligRuleQueryDetailMetaInfo(HrmGenEligRuleQueryQVO paramHrmGenEligRuleQueryQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLeaveMasterHdrMetaInfo(HrmLvMstQVO paramHrmLvMstQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLeaveMasterHeaderInfo(HrmLvMstQVO paramHrmLvMstQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLeaveMasterDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLeaveMasterDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmCurLeaveMasterDetailInfo() throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmLeaveMst(HrmLvMstHdrBean paramHrmLvMstHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvMstStateLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveDetailLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveMasterLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveMasterCalLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveCodeInsertLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLeaveLedgerDtlMetaInfo(HrmLvLedgerQVO paramHrmLvLedgerQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLeaveLedgerDetailInfo(HrmLvLedgerQVO paramHrmLvLedgerQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLeaveLedgerTxnDtlMetaInfo(HrmLvLedgerQVO paramHrmLvLedgerQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLeaveLedgerTxnDetailInfo(HrmLvLedgerQVO paramHrmLvLedgerQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveLeaveLedger(HrmLvLedgerHdrBean paramHrmLvLedgerHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmployeeNumberLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveCodesLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmpCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String getGroupInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpLeaveEncashHdrMetaInfo(HrmLvEncashQVO paramHrmLvEncashQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpLeaveEncashHdrInfo(HrmLvEncashQVO paramHrmLvEncashQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmLvEncashHdrBean paramHrmLvEncashHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveLeaveEncash(HrmLvEncashHdrBean paramHrmLvEncashHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectLvEncash(HrmLvEncashHdrBean paramHrmLvEncashHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitLvEncash(HrmLvEncashHdrBean paramHrmLvEncashHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLeaveTypesLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvEncashEmpNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvEncashEmpNoNLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEncshLvCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvApplnEmpNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvApplnEmpNoNLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpLeaveAppQueryDtlMetaInfo(HrmLvApplnQueryQVO paramHrmLvApplnQueryQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpLeaveAppQueryDtlInfo(HrmLvApplnQueryQVO paramHrmLvApplnQueryQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmLvApplnHdrBean paramHrmLvApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveLeaveAppln(HrmLvApplnHdrBean paramHrmLvApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String CancelLeaveAppln(HrmLvApplnHdrBean paramHrmLvApplnHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getLeaveDates(HrmLvApplnHdrBean paramHrmLvApplnHdrBean) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpLeaveAppQueryScreenDtlMetaInfo(HrmLvApplnQVO paramHrmLvApplnQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpLeaveAppQueryScreenDtlInfo(HrmLvApplnQVO paramHrmLvApplnQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvAppQryEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmLvAppQryLvCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpLvAppLvCdLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpLvAppLvCdInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmLeaveCanQueryDtlMetaInfo(HrmLvCancQueryQVO paramHrmLvCancQueryQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmLeaveCanQueryDetailInfo(HrmLvCancQueryQVO paramHrmLvCancQueryQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpLeaveCanQueryScreenDtlMetaInfo(HrmLvCancQVO paramHrmLvCancQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpLeaveCanQueryScreenDtlInfo(HrmLvCancQVO paramHrmLvCancQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmLvCancHdrBean paramHrmLvCancHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveLeaveCanc(HrmLvCancHdrBean paramHrmLvCancHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCnclLeaveEmpLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCnclLeaveTypeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPromOrderHdrMetaInfo(HrmPrmOrderQVO paramHrmPrmOrderQVO) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPromOrderHdr(HrmPrmOrderQVO paramHrmPrmOrderQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String savePromOrder(HrmPrmOrderHdrBean paramHrmPrmOrderHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromOrderEmpNoNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromOrderEmpNoQLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromOrderNoQLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromToGradeNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromToDesignationNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRatingCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getKPAGrpCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingGradeNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingDesignationNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRatNoLOVQdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getKPARatingHeaderMetaInfo(HrmPrmKPARatingQVO paramHrmPrmKPARatingQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getKPARatingHeaderInfo(HrmPrmKPARatingQVO paramHrmPrmKPARatingQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getPrmKPARatingPosDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getPrmKPARatingPosDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getPrmKPARatingFinDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getPrmKPARatingFinDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmPrmKPARatingHdrBean paramHrmPrmKPARatingHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPrmTCHdrMetaInfo(HrmPrmTestScoreQVO paramHrmPrmTestScoreQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPrmTCHdrInfo(HrmPrmTestScoreQVO paramHrmPrmTestScoreQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPrmTCDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPrmTCDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPositionCodeLOVNew(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPositionCodeLOVQuery(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String savePrmTCData(HrmPrmTestScoreHdrBean paramHrmPrmTestScoreHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPrmESDtlMetaInfo(HrmPrmExperienceScoreQVO paramHrmPrmExperienceScoreQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPrmESDtlInfo(HrmPrmExperienceScoreQVO paramHrmPrmExperienceScoreQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getESPositionCodeLOVQuery(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getESPositionCodeLOVNew(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmPrmESData(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getPrmQualCriteriaDetailMetaInfo(HrmPrmQualCriteriaQVO paramHrmPrmQualCriteriaQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getPrmQualCriteriaDetail(HrmPrmQualCriteriaQVO paramHrmPrmQualCriteriaQVO, long paramLong1, long paramLong2) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String savePrmQualCriteriaDtl(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmPrmQualPositionLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmPrmQualificationLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmPrmCriteriaPostLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPrmCriteriaDetailInfo(HrmPrmCriteriaQVO paramHrmPrmCriteriaQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPrmCriteriaDetailMetaInfo(HrmPrmCriteriaQVO paramHrmPrmCriteriaQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmPrmCriteriaHdrBean paramHrmPrmCriteriaHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingFromGradeNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingFromDesignationNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingToGradeNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromKPARatingToDesignationNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getPrmViewAssDetailMetaInfo(String paramString, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getPrmViewAssDetail(String paramString, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws CreateException, RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String savePrmViewAssDtl(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmViewAssSiteCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmViewAssNoticeCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmViewAssPromotionCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmEmployeeNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmViewAssPosCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmPrmNoticeNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmPrmPositionNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmPrmNoticeDtlHdrMetaInfo(HrmPrmNoticeDtlQVO paramHrmPrmNoticeDtlQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmPrmNoticeDtlHdrInfo(HrmPrmNoticeDtlQVO paramHrmPrmNoticeDtlQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getNoticeDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getPrmNoticeDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveNoticeDtlData(HrmPrmNoticeDtlHdrBean paramHrmPrmNoticeDtlHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromNotGradeNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPromNotDesignationNLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getPrmGenAssPrmNoLOVData(LovQueryVO paramLovQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException, CreateException, RemoteException;
|
||||
|
||||
String savePrmGenAss(BaseHeaderBean paramBaseHeaderBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws EnrgiseApplicationException, EnrgiseSystemException, CreateException, RemoteException;
|
||||
|
||||
LovVO getHrmLvCreditRegionLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRoasterHdrMetaInfo(HrmRoasterEntryQVO paramHrmRoasterEntryQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRoasterHdrInfo(HrmRoasterEntryQVO paramHrmRoasterEntryQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveRoasterHdr(HrmRoasterEntryHdrBean paramHrmRoasterEntryHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRstrCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmRoasterEntryDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmRoasterEntryDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRstrSocialStatusLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getRoasterEmpDetailsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAdhocReportHdrMetaInfo(HrmAdhocReportQVO paramHrmAdhocReportQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAdhocReportHeaderInfo(HrmAdhocReportQVO paramHrmAdhocReportQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAdhocReport(HrmAdhocReportHdrBean paramHrmAdhocReportHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpPersAssetMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpPersAssetInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpPersAsset(HrmEmpPersHdrBean paramHrmEmpPersHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBHome;
|
||||
import wenrgise.hrms.ejb.facade.HrmSecondFacade;
|
||||
|
||||
public interface HrmSecondFacadeHome extends EJBHome {
|
||||
HrmSecondFacade create() throws CreateException, RemoteException;
|
||||
}
|
@@ -0,0 +1,372 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBObject;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.RecordMetaInfo;
|
||||
import wenrgise.common.utility.UserInfo;
|
||||
import wenrgise.common.vo.LovQueryVO;
|
||||
import wenrgise.common.vo.LovVO;
|
||||
import wenrgise.hrms.bean.HrmATDDeputChrgRptHdrBean;
|
||||
import wenrgise.hrms.bean.HrmATDDeputOrderSngEmpHdrBean;
|
||||
import wenrgise.hrms.bean.HrmATDTransOrderForSingleEmpBean;
|
||||
import wenrgise.hrms.bean.HrmAppTempHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAppraisalKPAHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAprslHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAprslSpcTmplHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAprslStartOrderHdrBean;
|
||||
import wenrgise.hrms.bean.HrmAprslStartRuleHdrBean;
|
||||
import wenrgise.hrms.bean.HrmChargeReportHdrBean;
|
||||
import wenrgise.hrms.bean.HrmDeputationApplicationHdrBean;
|
||||
import wenrgise.hrms.bean.HrmEmpTransCnclApplHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTransCnclOrderSingEmpHdrBean;
|
||||
import wenrgise.hrms.bean.HrmTransferApplicationHdrBean;
|
||||
import wenrgise.hrms.vo.HrmATDDptnApplQVO;
|
||||
import wenrgise.hrms.vo.HrmATDDptnChrgRptQVO;
|
||||
import wenrgise.hrms.vo.HrmATDDptnOrderSingleEmpQVO;
|
||||
import wenrgise.hrms.vo.HrmATDTransApplQVO;
|
||||
import wenrgise.hrms.vo.HrmATDTransChrgRptQVO;
|
||||
import wenrgise.hrms.vo.HrmATDTransCnclApplQVO;
|
||||
import wenrgise.hrms.vo.HrmATDTransCnclOrderSingleEmpQVO;
|
||||
import wenrgise.hrms.vo.HrmATDTransSingleEmpQVO;
|
||||
import wenrgise.hrms.vo.HrmAppTempQueryVO;
|
||||
import wenrgise.hrms.vo.HrmAppraisalKPAQVO;
|
||||
import wenrgise.hrms.vo.HrmAprslQVO;
|
||||
import wenrgise.hrms.vo.HrmAprslSpcTmplQVO;
|
||||
import wenrgise.hrms.vo.HrmAprslStartOrderQVO;
|
||||
import wenrgise.hrms.vo.HrmAprslStartRuleQVO;
|
||||
import wenrgise.workflow.bean.WflWorkListInfoBean;
|
||||
|
||||
public interface HrmThirdFacade extends EJBObject {
|
||||
WflWorkListInfoBean getWorkListInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmTransSingleEmpRecordMetaInfo(HrmATDTransSingleEmpQVO paramHrmATDTransSingleEmpQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmTransSingleEmpHeaderInfo(HrmATDTransSingleEmpQVO paramHrmATDTransSingleEmpQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransOrderNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransAplnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmToSiteCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmToWorkGroupLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmATDTransOrderForSingleEmpBean paramHrmATDTransOrderForSingleEmpBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveTranOrderSingleEmp(HrmATDTransOrderForSingleEmpBean paramHrmATDTransOrderForSingleEmpBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectTranOrderSingleEmp(HrmATDTransOrderForSingleEmpBean paramHrmATDTransOrderForSingleEmpBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitTranOrderSingleEmp(HrmATDTransOrderForSingleEmpBean paramHrmATDTransOrderForSingleEmpBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpTransAppHeaderMetaInfo(HrmATDTransApplQVO paramHrmATDTransApplQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpTransAppHeader(HrmATDTransApplQVO paramHrmATDTransApplQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTransAppl(HrmTransferApplicationHdrBean paramHrmTransferApplicationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmChargeRepHeaderMetaInfo(HrmATDTransChrgRptQVO paramHrmATDTransChrgRptQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmChargeRepHeader(HrmATDTransChrgRptQVO paramHrmATDTransChrgRptQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmChargeReportHdrBean paramHrmChargeReportHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveTranChrgRpt(HrmChargeReportHdrBean paramHrmChargeReportHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectTranChrgRpt(HrmChargeReportHdrBean paramHrmChargeReportHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitTranChrgRpt(HrmChargeReportHdrBean paramHrmChargeReportHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpTransCnclHeaderMetaInfo(HrmATDTransCnclApplQVO paramHrmATDTransCnclApplQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpTransCnclHeader(HrmATDTransCnclApplQVO paramHrmATDTransCnclApplQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmTransCnclAppl(HrmEmpTransCnclApplHdrBean paramHrmEmpTransCnclApplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitTransferCnclAppln(HrmEmpTransCnclApplHdrBean paramHrmEmpTransCnclApplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveTransferCnclAppln(HrmEmpTransCnclApplHdrBean paramHrmEmpTransCnclApplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectTransferCnclAppln(HrmEmpTransCnclApplHdrBean paramHrmEmpTransCnclApplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String cancelTransfer(HrmATDTransOrderForSingleEmpBean paramHrmATDTransOrderForSingleEmpBean, Timestamp paramTimestamp1, ArrayList paramArrayList, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpDeputAppHdrMetaInfo(HrmATDDptnApplQVO paramHrmATDDptnApplQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpDeputAppHeaderInfo(HrmATDDptnApplQVO paramHrmATDDptnApplQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmDeputationApplicationHdrBean paramHrmDeputationApplicationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveDeputAppln(HrmDeputationApplicationHdrBean paramHrmDeputationApplicationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectDeputAppln(HrmDeputationApplicationHdrBean paramHrmDeputationApplicationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitDeputAppln(HrmDeputationApplicationHdrBean paramHrmDeputationApplicationHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpTrnsCnclOrderHdrMetaInfo(HrmATDTransCnclOrderSingleEmpQVO paramHrmATDTransCnclOrderSingleEmpQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpTrnsCnclOrderHeaderInfo(HrmATDTransCnclOrderSingleEmpQVO paramHrmATDTransCnclOrderSingleEmpQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmTransCnclOrderSingEmpHdrBean paramHrmTransCnclOrderSingEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitTranCnclOrder(HrmTransCnclOrderSingEmpHdrBean paramHrmTransCnclOrderSingEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveTranCnclOrder(HrmTransCnclOrderSingEmpHdrBean paramHrmTransCnclOrderSingEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectTranCnclOrder(HrmTransCnclOrderSingEmpHdrBean paramHrmTransCnclOrderSingEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmDeputOrderSngEmpHdrMetaInfo(HrmATDDptnOrderSingleEmpQVO paramHrmATDDptnOrderSingleEmpQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmDeputOrderSngEmpHeaderInfo(HrmATDDptnOrderSingleEmpQVO paramHrmATDDptnOrderSingleEmpQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmATDDeputOrderSngEmpHdrBean paramHrmATDDeputOrderSngEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveDeputOrder(HrmATDDeputOrderSngEmpHdrBean paramHrmATDDeputOrderSngEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectDeputOrder(HrmATDDeputOrderSngEmpHdrBean paramHrmATDDeputOrderSngEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitDeputOrder(HrmATDDeputOrderSngEmpHdrBean paramHrmATDDeputOrderSngEmpHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmDeputChargeRepHdrMetaInfo(HrmATDDptnChrgRptQVO paramHrmATDDptnChrgRptQVO, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmDeputChargeRepHeaderInfo(HrmATDDptnChrgRptQVO paramHrmATDDptnChrgRptQVO, long paramLong1, long paramLong2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveData(HrmATDDeputChrgRptHdrBean paramHrmATDDeputChrgRptHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveDeputChrgRpt(HrmATDDeputChrgRptHdrBean paramHrmATDDeputChrgRptHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectDeputChrgRpt(HrmATDDeputChrgRptHdrBean paramHrmATDDeputChrgRptHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String submitDeputChrgRpt(HrmATDDeputChrgRptHdrBean paramHrmATDDeputChrgRptHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnApplnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnOfcNoteNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnDesignationLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnWorkgroupLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnEmpNoInsLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnSite1LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnSite2LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTrnSite3LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChrgOrderNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChrgOrderNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChrgCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCnclApplNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmCnclOfNoteNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpNoQCnclApplLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmEmpNoICnclApplLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputApplnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputEmpNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputEmpNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputAdvtNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputPostNameLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransCnclOrderAppNoLOVQdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransCnclOrderAppNoLOVIdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransCnclOrderLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputationOrderNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputApplcnNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDeputApplcnNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmTransReptEmpNoLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDepChrgOrderNoLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDepChrgOrderNoQLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmDepChrgCodeLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpAprslHdrMetaInfo(HrmAprslQVO paramHrmAprslQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpAprslHdrInfo(HrmAprslQVO paramHrmAprslQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpAprslKPADetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpAprslKPADetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmEmpAprslGoalsDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmEmpAprslGoalsDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslTrngReqDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrAprslTrngReqDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrAprslEmpPerDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmEmpAprsl(HrmAprslHdrBean paramHrmAprslHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslStartOrderLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmpAprslStOrderLOVQ(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmpAprslStOrderLOVI(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating0LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating1LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating2LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating3LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating4LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslRating5LOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String calEmpFinRating(HrmAprslHdrBean paramHrmAprslHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveEmpAprsl(HrmAprslHdrBean paramHrmAprslHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectEmpAprsl(HrmAprslHdrBean paramHrmAprslHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAppTemplateHdrMetaInfo(HrmAppTempQueryVO paramHrmAppTempQueryVO) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAppTemplateHeaderInfo(HrmAppTempQueryVO paramHrmAppTempQueryVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAppTempSecDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAppTempSecDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAprslTmplSec(HrmAppTempHdrBean paramHrmAppTempHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslTmplNameLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslSecCodeNameLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslKPALOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslParentCodeLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveHrmAprslTmplMst(HrmAppTempHdrBean paramHrmAppTempHdrBean, String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAppTempSecKPADtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAppTempSecKPADetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAppRaisalKpaHeaderMetaInfo(HrmAppraisalKPAQVO paramHrmAppraisalKPAQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAppRaisalKpaHeader(HrmAppraisalKPAQVO paramHrmAppraisalKPAQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAppRaisalKpa(HrmAppraisalKPAHdrBean paramHrmAppraisalKPAHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAppRaisalKpaDetailMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAppRaisalKpaDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryAppraisalWorkGrpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String getHrmAppRaisalKpaExactWeightage(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslStOrderMetaInfo(HrmAprslStartOrderQVO paramHrmAprslStartOrderQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslStOrderInfo(HrmAprslStartOrderQVO paramHrmAprslStartOrderQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAprslStOrder(HrmAprslStartOrderHdrBean paramHrmAprslStartOrderHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslStOrderNoLOVQrydata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslStRuleHdrMetaInfo(HrmAprslStartRuleQVO paramHrmAprslStartRuleQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslStRuleHeader(HrmAprslStartRuleQVO paramHrmAprslStartRuleQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslStRuleDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslStRuleDetail(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAprslStRule(HrmAprslStartRuleHdrBean paramHrmAprslStartRuleHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getClsMstData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getClsDtlData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getClsMstDataQ(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getClsDtlDataQ(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryEmployeeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getEmployeeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryStOrdLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryWrkGrpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQuerySiteCodeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getWrkGrpLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmChgRepEmpLOVdata(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslSpcTmpHdrMetaInfo(HrmAprslSpcTmplQVO paramHrmAprslSpcTmplQVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslSpcTmpHeaderInfo(HrmAprslSpcTmplQVO paramHrmAprslSpcTmplQVO, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslSpcTmpKPADtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslSpcTmpKPADetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslSpcTmpGoalsDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslSpcTmpGoalsDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslSpcTmpEligDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
ArrayList getHrmAprslSpcTmpEligDetailInfo(String paramString, long paramLong1, long paramLong2) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String saveHrmAprslSpcTmp(HrmAprslSpcTmplHdrBean paramHrmAprslSpcTmplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String approveHrmAprslSpcTmp(HrmAprslSpcTmplHdrBean paramHrmAprslSpcTmplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
String rejectHrmAprslSpcTmp(HrmAprslSpcTmplHdrBean paramHrmAprslSpcTmplHdrBean, Timestamp paramTimestamp1, String paramString1, String paramString2, boolean paramBoolean1, ArrayList paramArrayList, boolean paramBoolean2, Timestamp paramTimestamp2, UserInfo paramUserInfo) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQuerySpcTemplateData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getTemplateData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryStartOrdLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getQueryTemplateData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getTempSectionData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getSpcEmployeeLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslTempNameQLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getAprslTmplRatingCodeQLOV(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
LovVO getHrmAprslEmpNoLOVData(LovQueryVO paramLovQueryVO) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
|
||||
RecordMetaInfo getHrmAprslEmpDtlMetaInfo(String paramString) throws RemoteException, CreateException, EnrgiseApplicationException, EnrgiseSystemException;
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.ejb.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBHome;
|
||||
import wenrgise.hrms.ejb.facade.HrmThirdFacade;
|
||||
|
||||
public interface HrmThirdFacadeHome extends EJBHome {
|
||||
HrmThirdFacade create() throws CreateException, RemoteException;
|
||||
}
|
Reference in New Issue
Block a user