Posts

Showing posts from January, 2018

temp table data

---------------------------------------- tmpProjAdjustmentLocalAdjustFinal = projAdjustmentValidation.insertIntoTmpProjAdjustment(tmpProjAdjustment_ds,tmpProjAdjustment,tmpProjAdjustmentCost);     if (projAdjustmentValidation.validate() )     {         delete_from tmpProjAdjustment;         tmpProjAdjustment.setTmpData(tmpProjAdjustmentLocalAdjustFinal);         tmpProjAdjustment_ds.research();         throw error('@OGI3856');     } ---------------------------- // a_OGI_61X_TFS3436_PWPOnProjectMatching : Customization by sreekanth on 29 Mar 2017 - New Method public TmpProjAdjustment insertIntoTmpProjAdjustment(FormDataSource  tmpProjAdjustment_ds,                                 TmpProjAdjustment   tmpProjAdjustment,               ...