DBA Data[Home] [Help]

APPS.PA_PURGE_PJR_TXNS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 28

/*This cursor will select all the assignments, which are either cancelled or filled
for Project passed. The other conditions are not checked as in closed project
purge, purging of requirements will start only if all requirements are cancelled
or filled*/

    CURSOR CUR_REQUIREMENTS_CLOSED IS
    SELECT assignment_id
    FROM pa_project_assignments pa WHERE pa.assignment_type = 'OPEN_ASSIGNMENT'
    AND pa.project_id = P_PROJECT_ID;
Line: 39

/*This cursor will select all the assignments, which are either cancelled or filled
for Project passed and whose end dates are before purge till date .This is
applicable for open indirect project purge.*/

    CURSOR CUR_REQUIREMENTS_ACTIVE IS
    SELECT pa.assignment_id
    FROM pa_project_assignments pa, pa_project_statuses ps
    WHERE pa.assignment_type = 'OPEN_ASSIGNMENT'
    AND pa.status_code = ps.project_status_code
    AND ps.status_type='OPEN_ASGMT'
    AND ps.project_system_status_code <> 'OPEN_ASGMT'
    AND pa.project_id = P_PROJECT_ID
    AND pa.end_date <= P_txn_to_date
    AND NOT EXISTS (Select NULL
                   From pa_project_assignments pa1,pa_project_statuses pps
                   where pa1.source_assignment_id=pa.assignment_id
                   AND pa1.end_date >P_txn_to_date
                   AND pa1.status_code = pps.project_status_code
                   AND pps.status_type = 'STAFFED_ASGMT'
                   AND pps.project_system_status_code <> 'STAFFED_ASGMT_CANCEL');
Line: 76

	l_requirement_id_tab.DELETE;
Line: 203

        l_requirement_id_tab.DELETE;
Line: 361

/*This cursor will select all the assignments for project passed(Closed Project Purge.
  All the assignments belong to project id passed will be purged. No other
  conditions are mentioned as the purge program will purge closed project
  assignments only if the all the assignmnets are eligible for purging.*/

   CURSOR CUR_ASSIGNMENTS_CLOSED IS
   SELECT assignment_id FROM Pa_project_assignments pa
   WHERE pa.project_id = P_Project_Id
   AND pa.assignment_type <>'OPEN_ASSIGNMENT';
Line: 372

/*This cursor will select all the assignments for project passed whose end date is
  falling before purge till date. This cursor is applicable in case of open project
  purge. In this case, we purge all the assignments falling before purge till date.*/

   CURSOR CUR_ASSIGNMENTS_ACTIVE  IS
   SELECT assignment_id FROM Pa_project_assignments pa
   WHERE pa.project_id = P_Project_Id
   AND pa.assignment_type <>'OPEN_ASSIGNMENT'
   AND p_txn_to_date >= pa.end_date;
Line: 398

        l_assignment_id_tab.DELETE;
Line: 523

        l_assignment_id_tab.DELETE;
Line: 683

    l_nos_fi_inserted                    NUMBER ;
Line: 684

    l_nos_fid_inserted                   NUMBER ;
Line: 685

    l_nos_fi_deleted                     NUMBER ;
Line: 686

    l_nos_fid_deleted                    NUMBER ;
Line: 687

    l_nos_fi_amt_inserted                NUMBER;
Line: 688

    l_nos_fi_amt_deleted                 NUMBER;
Line: 691

    SELECT forecast_item_id from pa_forecast_items
    WHERE assignment_id =x_assignment_id;
Line: 708

   l_nos_fi_inserted  :=0;
Line: 709

   l_nos_fid_inserted :=0;
Line: 710

   l_nos_fi_deleted   :=0;
Line: 711

   l_nos_fid_deleted  :=0;
Line: 712

   l_nos_fi_amt_deleted :=0;
Line: 713

   l_nos_fi_amt_inserted :=0;
Line: 751

/* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

       pa_debug.debug('Inserting Records into pa_forecast_items_AR table  ') ;
Line: 756

       x_err_stage := 'Inserting Records into pa_forecast_items_AR table for forecast item '||to_char(l_forecast_item_id) ;
Line: 758

         INSERT INTO pa_frcst_items_AR
              (PURGE_BATCH_ID,
               PURGE_RELEASE,
               PURGE_PROJECT_ID,
               FORECAST_ITEM_ID,
               FORECAST_ITEM_TYPE,
               PROJECT_ORG_ID,
               EXPENDITURE_ORG_ID,
               EXPENDITURE_ORGANIZATION_ID,
               PROJECT_ORGANIZATION_ID,
               PROJECT_ID,
               PROJECT_TYPE_CLASS,
               PERSON_ID,
               RESOURCE_ID,
               BORROWED_FLAG,
               ASSIGNMENT_ID,
               ITEM_DATE,
               ITEM_UOM,
               ITEM_QUANTITY,
               PVDR_PERIOD_SET_NAME,
               PVDR_PA_PERIOD_NAME,
               PVDR_GL_PERIOD_NAME,
               RCVR_PERIOD_SET_NAME,
               RCVR_PA_PERIOD_NAME,
               RCVR_GL_PERIOD_NAME,
               GLOBAL_EXP_PERIOD_END_DATE,
               EXPENDITURE_TYPE,
               EXPENDITURE_TYPE_CLASS,
               COST_REJECTION_CODE,
               REV_REJECTION_CODE,
               TP_REJECTION_CODE,
               BURDEN_REJECTION_CODE,
               OTHER_REJECTION_CODE,
               DELETE_FLAG,
               ERROR_FLAG,
               PROVISIONAL_FLAG,
               CREATION_DATE,
               CREATED_BY,
               LAST_UPDATE_DATE,
               LAST_UPDATED_BY,
               LAST_UPDATE_LOGIN,
               REQUEST_ID,
               PROGRAM_APPLICATION_ID,
               PROGRAM_ID,
               PROGRAM_UPDATE_DATE,
               ASGMT_SYS_STATUS_CODE,
               CAPACITY_QUANTITY,
               OVERCOMMITMENT_QUANTITY,
               AVAILABILITY_QUANTITY,
               OVERCOMMITMENT_FLAG,
               AVAILABILITY_FLAG,
               TP_AMOUNT_TYPE,
               FORECAST_AMT_CALC_FLAG,
               COST_TXN_CURRENCY_CODE,
               TXN_RAW_COST,
               TXN_BURDENED_COST,
               REVENUE_TXN_CURRENCY_CODE,
               TXN_REVENUE,
               TP_TXN_CURRENCY_CODE,
               TXN_TRANSFER_PRICE,
               PROJECT_CURRENCY_CODE,
               PROJECT_RAW_COST,
               PROJECT_BURDENED_COST,
               PROJECT_REVENUE,
               PROJECT_TRANSFER_PRICE,
               PROJFUNC_CURRENCY_CODE,
               PROJFUNC_RAW_COST,
               PROJFUNC_BURDENED_COST,
               PROJFUNC_REVENUE,
               PROJFUNC_TRANSFER_PRICE,
               EXPFUNC_CURRENCY_CODE,
               EXPFUNC_RAW_COST,
               EXPFUNC_BURDENED_COST,
               EXPFUNC_TRANSFER_PRICE,
               OVERPROVISIONAL_QTY,
               OVER_PROV_CONF_QTY,
               CONFIRMED_QTY,
               PROVISIONAL_QTY,
               JOB_ID)

          SELECT  p_purge_batch_id,
                  p_purge_release,
                  p_project_id,
                  Forecast_Item_Id,
                  Forecast_Item_Type,
                  Project_Org_Id,
                  Expenditure_Org_Id,
                  Expenditure_Organization_Id,
                  Project_Organization_Id,
                  Project_Id,
                  Project_Type_Class,
                  Person_Id,
                  Resource_Id,
                  Borrowed_Flag,
                  Assignment_Id,
                  Item_Date,
                  Item_Uom,
                  Item_Quantity,
                  Pvdr_Period_Set_Name,
                  Pvdr_Pa_Period_Name,
                  Pvdr_Gl_Period_Name,
                  Rcvr_Period_Set_Name,
                  Rcvr_Pa_Period_Name,
                  Rcvr_Gl_Period_Name,
                  Global_Exp_Period_End_Date,
                  Expenditure_Type,
                  Expenditure_Type_Class,
                  Cost_Rejection_Code,
                  Rev_Rejection_Code,
                  Tp_Rejection_Code,
                  Burden_Rejection_Code,
                  Other_Rejection_Code,
                  Delete_Flag,
                  Error_Flag,
                  Provisional_Flag,
                  Creation_Date,
                  Created_By,
                  Last_Update_Date,
                  Last_Updated_By,
                  Last_Update_Login,
                  Request_Id,
                  Program_Application_Id,
                  Program_Id,
                  Program_Update_Date,
                  Asgmt_Sys_Status_Code,
                  Capacity_Quantity,
                  Overcommitment_Quantity,
                  Availability_Quantity,
                  Overcommitment_Flag,
                  Availability_Flag,
                  Tp_Amount_Type,
                  Forecast_Amt_Calc_Flag,
                  Cost_Txn_Currency_Code,
                  Txn_Raw_Cost,
                  Txn_Burdened_Cost,
                  Revenue_Txn_Currency_Code,
                  Txn_Revenue,
                  Tp_Txn_Currency_Code,
                  Txn_Transfer_Price,
                  Project_Currency_Code,
                  Project_Raw_Cost,
                  Project_Burdened_Cost,
                  Project_Revenue,
                  Project_Transfer_Price,
                  Projfunc_Currency_Code,
                  projfunc_Raw_Cost,
                  Projfunc_Burdened_Cost,
                  Projfunc_Revenue,
                  Projfunc_Transfer_Price,
                  Expfunc_Currency_Code,
                  Expfunc_Raw_Cost,
                  Expfunc_Burdened_Cost,
                  Expfunc_Transfer_Price,
                  Overprovisional_Qty,
                  Over_Prov_Conf_Qty,
                  Confirmed_Qty,
                  Provisional_Qty,
                  Job_Id
              FROM pa_forecast_items
              WHERE forecast_item_id = l_forecast_item_id;
Line: 919

 /*Increase the value of l_nos_fi_inserted to indicate number of records inserted in forecast_items table.
  The value will increase for each loop(forecast item id*/
            l_nos_fi_inserted := l_nos_fi_inserted + SQL%ROWCOUNT;
Line: 923

       pa_debug.debug('Inserting Records into pa_forecast_item_DETAILS_AR table  ') ;
Line: 924

       x_err_stage := 'Inserting Records into forecast_item_detail table for forecast item '||to_char(l_forecast_item_id) ;
Line: 926

              INSERT INTO PA_FRCST_ITEM_DTLS_AR
                  (PURGE_BATCH_ID,
                   PURGE_RELEASE,
                   PURGE_PROJECT_ID,
                   FORECAST_ITEM_ID,
                   AMOUNT_TYPE_ID,
                   LINE_NUM,
                   RESOURCE_TYPE_CODE,
                   PERSON_BILLABLE_FLAG,
                   ITEM_DATE,
                   ITEM_UOM,
                   ITEM_QUANTITY,
                   EXPENDITURE_ORG_ID,
                   PROJECT_ORG_ID,
                   PVDR_ACCT_CURR_CODE,
                   PVDR_ACCT_AMOUNT,
                   RCVR_ACCT_CURR_CODE,
                   RCVR_ACCT_AMOUNT,
                   PROJ_CURRENCY_CODE,
                   PROJ_AMOUNT,
                   DENOM_CURRENCY_CODE,
                   DENOM_AMOUNT,
                   TP_AMOUNT_TYPE,
                   BILLABLE_FLAG,
                   FORECAST_SUMMARIZED_CODE,
                   UTIL_SUMMARIZED_CODE,
                   WORK_TYPE_ID,
                   RESOURCE_UTIL_CATEGORY_ID,
                   ORG_UTIL_CATEGORY_ID,
                   RESOURCE_UTIL_WEIGHTED,
                   ORG_UTIL_WEIGHTED,
                   PROVISIONAL_FLAG,
                   REVERSED_FLAG,
                   NET_ZERO_FLAG,
                   REDUCE_CAPACITY_FLAG,
                   LINE_NUM_REVERSED,
                   CREATION_DATE,
                   CREATED_BY,
                   LAST_UPDATE_DATE,
                   LAST_UPDATED_BY,
                   LAST_UPDATE_LOGIN,
                   REQUEST_ID,
                   PROGRAM_APPLICATION_ID,
                   PROGRAM_ID,
                   PROGRAM_UPDATE_DATE,
                   CAPACITY_QUANTITY,
                   OVERCOMMITMENT_QTY,
                   OVERPROVISIONAL_QTY,
                   OVER_PROV_CONF_QTY,
                   CONFIRMED_QTY,
                   PROVISIONAL_QTY,
                   JOB_ID,
                   PROJECT_ID,
                   RESOURCE_ID,
                   EXPENDITURE_ORGANIZATION_ID,
                   PJI_SUMMARIZED_FLAG)

           SELECT  p_purge_batch_id,
                   p_Purge_Release,
                   p_Project_Id,
                   Forecast_Item_Id,
                   Amount_Type_Id,
                   Line_Num,
                   Resource_Type_Code,
                   Person_Billable_Flag,
                   Item_Date,
                   Item_Uom,
                   Item_Quantity,
                   Expenditure_Org_Id,
                   Project_Org_Id,
                   Pvdr_Acct_Curr_Code,
                   Pvdr_Acct_Amount,
                   Rcvr_Acct_Curr_Code,
                   Rcvr_Acct_Amount,
                   Proj_Currency_Code,
                   Proj_Amount,
                   Denom_Currency_Code,
                   Denom_Amount,
                   Tp_Amount_Type,
                   Billable_Flag,
                   Forecast_Summarized_Code,
                   Util_Summarized_Code,
                   Work_Type_Id,
                   Resource_Util_Category_Id,
                   Org_Util_Category_Id,
                   Resource_Util_Weighted,
                   Org_Util_Weighted,
                   Provisional_Flag,
                   Reversed_Flag,
                   Net_Zero_Flag,
                   Reduce_Capacity_Flag,
                   Line_Num_Reversed,
                   Creation_Date,
                   Created_By,
                   Last_Update_Date,
                   Last_Updated_By,
                   Last_Update_Login,
                   Request_Id,
                   Program_Application_Id,
                   Program_Id,
                   Program_Update_Date,
                   CAPACITY_QUANTITY,
                   OVERCOMMITMENT_QTY,
                   OVERPROVISIONAL_QTY,
                   OVER_PROV_CONF_QTY,
                   CONFIRMED_QTY,
                   PROVISIONAL_QTY,
                   JOB_ID,
                   PROJECT_ID,
                   RESOURCE_ID,
                   EXPENDITURE_ORGANIZATION_ID,
                   PJI_SUMMARIZED_FLAG
           FROM PA_forecast_item_details
           WHERE forecast_item_id=l_forecast_item_id;
Line: 1041

  /*Increase the value of l_nos_fis_inserted to indicate number of records inserted in forecast_items detail table.
  The value will increase for each loop(forecast item id*/
          l_nos_fid_inserted := l_nos_fid_inserted + SQL%ROWCOUNT;
Line: 1045

            INSERT INTO PA_FI_AMOUNT_DETAILS_AR
                       (PURGE_BATCH_ID,
			PURGE_RELEASE,
			PURGE_PROJECT_ID,
			FORECAST_ITEM_ID,
			LINE_NUM,
			ITEM_DATE,
			ITEM_UOM,
			ITEM_QUANTITY,
			REVERSED_FLAG,
			NET_ZERO_FLAG,
			LINE_NUM_REVERSED,
			CREATION_DATE,
			CREATED_BY,
			LAST_UPDATE_DATE,
			LAST_UPDATED_BY,
			LAST_UPDATE_LOGIN,
			REQUEST_ID,
			PROGRAM_APPLICATION_ID,
			PROGRAM_ID,
			PROGRAM_UPDATE_DATE,
			COST_TXN_CURRENCY_CODE,
			TXN_RAW_COST,
			TXN_BURDENED_COST,
			REVENUE_TXN_CURRENCY_CODE,
			TXN_REVENUE,
			TP_TXN_CURRENCY_CODE,
			TXN_TRANSFER_PRICE,
			PROJECT_CURRENCY_CODE,
			PROJECT_COST_RATE_DATE,
			PROJECT_COST_RATE_TYPE,
			PROJECT_COST_EXCHANGE_RATE,
			PROJECT_RAW_COST,
			PROJECT_BURDENED_COST,
			PROJECT_REVENUE_RATE_DATE,
			PROJECT_REVENUE_RATE_TYPE,
			PROJECT_REVENUE_EXCHANGE_RATE,
			PROJECT_REVENUE,
			PROJECT_TP_RATE_DATE,
			PROJECT_TP_RATE_TYPE,
			PROJECT_TP_EXCHANGE_RATE,
			PROJECT_TRANSFER_PRICE,
			PROJFUNC_CURRENCY_CODE,
			PROJFUNC_COST_RATE_DATE,
			PROJFUNC_COST_RATE_TYPE,
			PROJFUNC_COST_EXCHANGE_RATE,
			PROJFUNC_RAW_COST,
			PROJFUNC_BURDENED_COST,
			PROJFUNC_REVENUE,
			PROJFUNC_TRANSFER_PRICE,
			--PROJFUNC_RATE_DATE,
			--PROJFUNC_RATE_TYPE,
			--PROJFUNC_EXCHANGE_RATE,
			EXPFUNC_CURRENCY_CODE,
			EXPFUNC_COST_RATE_DATE,
			EXPFUNC_COST_RATE_TYPE,
			EXPFUNC_COST_EXCHANGE_RATE,
			EXPFUNC_RAW_COST,
			EXPFUNC_BURDENED_COST,
			EXPFUNC_TP_RATE_DATE,
			EXPFUNC_TP_RATE_TYPE,
			EXPFUNC_TP_EXCHANGE_RATE,
			EXPFUNC_TRANSFER_PRICE)

                SELECT  P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                        Forecast_Item_Id,
			Line_Num,
			Item_Date,
			Item_Uom,
			Item_Quantity,
			Reversed_Flag,
			Net_Zero_Flag,
			Line_Num_Reversed,
			Creation_Date,
			Created_By,
			Last_Update_Date,
			Last_Updated_By,
			Last_Update_Login,
			Request_Id,
			Program_Application_Id,
			Program_Id,
			Program_Update_Date,
			Cost_Txn_Currency_Code,
			Txn_Raw_Cost,
			Txn_Burdened_Cost,
			Revenue_Txn_Currency_Code,
			Txn_Revenue,
			Tp_Txn_Currency_Code,
			Txn_Transfer_Price,
			Project_Currency_Code,
			Project_Cost_Rate_Date,
			Project_Cost_Rate_Type,
			Project_Cost_Exchange_Rate,
			Project_Raw_Cost,
			Project_Burdened_Cost,
			Project_Revenue_Rate_Date,
			Project_Revenue_Rate_Type,
			Project_Revenue_Exchange_Rate,
			Project_Revenue,
			Project_Tp_Rate_Date,
			Project_Tp_Rate_Type,
			Project_Tp_Exchange_Rate,
			Project_Transfer_Price,
			Projfunc_Currency_Code,
			Projfunc_Cost_Rate_Date,
			Projfunc_Cost_Rate_Type,
			Projfunc_Cost_Exchange_Rate,
			Projfunc_Raw_Cost,
			Projfunc_Burdened_Cost,
			Projfunc_Revenue,
			Projfunc_Transfer_Price,
			--Projfunc_Rate_Date,
			--Projfunc_Rate_Type,
			--Projfunc_Exchange_Rate,
			Expfunc_Currency_Code,
			Expfunc_Cost_Rate_Date,
			Expfunc_Cost_Rate_Type,
			Expfunc_Cost_Exchange_Rate,
			Expfunc_Raw_Cost,
			Expfunc_Burdened_Cost,
			Expfunc_Tp_Rate_Date,
			Expfunc_Tp_Rate_Type,
			Expfunc_Tp_Exchange_Rate,
			Expfunc_Transfer_Price
           FROM PA_FI_AMOUNT_DETAILS Where forecast_item_id=l_forecast_item_id;
Line: 1173

       /*Increase the value of l_nos_fi_amt_inserted to reflct the number of records inserted */

                 l_nos_fi_amt_inserted := l_nos_fi_amt_inserted + SQL%ROWCOUNT;
Line: 1179

/*To keep the count of no os records deleted from pa_forecast_items and pa_forecast_item_details, manipulate the
  count of l_nos_of fi_deleted and l_nos_fis_deleted. */

       pa_debug.debug('Deleting Records from  pa_fi_amount_details table  ') ;
Line: 1185

            DELETE PA_FI_AMOUNT_DETAILS
            WHERE forecast_item_id =l_forecast_item_id;
Line: 1188

           l_nos_fi_amt_deleted := l_nos_fi_amt_deleted + SQL%ROWCOUNT;
Line: 1193

            DELETE PA_FORECAST_ITEM_DETAILS
            WHERE forecast_item_id =l_forecast_item_id;
Line: 1196

            l_nos_fid_deleted :=l_nos_fid_deleted + SQL%ROWCOUNT;
Line: 1202

            DELETE PA_FORECAST_ITEMS
            WHERE forecast_item_id=l_forecast_item_id;
Line: 1205

           l_nos_fi_deleted :=l_nos_fi_deleted + SQL%ROWCOUNT;
Line: 1212

/*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
 The procedure is called once for pa_forecast_items and once for pa_forecast_item_details */

  	pa_purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_FORECAST_ITEMS',
	                       l_nos_fi_inserted,
	                       l_nos_fi_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1228

	                       l_nos_fid_inserted,
	                       l_nos_fid_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1238

	                       /*  l_nos_fid_inserted,  bug 2480653 */
                               /*  l_nos_fid_deleted,  bug 2480653 */
                               l_nos_fi_amt_inserted,
                               l_nos_fi_amt_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 1287

    l_nos_schedule_inserted              NUMBER ;
Line: 1288

    l_nos_schedule_his_inserted          NUMBER ;
Line: 1289

    l_nos_schedule_exp_inserted         NUMBER ;
Line: 1290

    l_nos_schedule_deleted               NUMBER ;
Line: 1291

    l_nos_schedule_his_deleted           NUMBER ;
Line: 1292

    l_nos_schedule_exp_deleted          NUMBER ;
Line: 1296

    SELECT schedule_id from pa_schedules
    WHERE assignment_id =x_assignment_id;
Line: 1300

    SELECT schedule_exception_id from pa_schedule_except_history
    WHERE assignment_id =a_assignment_id;
Line: 1316

    l_nos_schedule_inserted      :=0;
Line: 1317

    l_nos_schedule_his_inserted  :=0;
Line: 1318

    l_nos_schedule_exp_inserted  :=0;
Line: 1319

    l_nos_schedule_deleted       :=0;
Line: 1320

    l_nos_schedule_his_deleted   :=0;
Line: 1321

    l_nos_schedule_exp_deleted   :=0;
Line: 1339

       /* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

       pa_debug.debug('Inserting Records into pa_schedules_AR table  ') ;
Line: 1344

       x_err_stage := 'Inserting Records into pa_schedules_AR table for schedule id '||to_char(l_schedule_id) ;
Line: 1346

       INSERT INTO PA_SCHEDULES_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			SCHEDULE_ID,
 			CALENDAR_ID,
 			ASSIGNMENT_ID,
 			PROJECT_ID,
 			SCHEDULE_TYPE_CODE,
 			STATUS_CODE,
 			START_DATE,
 			END_DATE,
 			MONDAY_HOURS,
 			TUESDAY_HOURS,
 			WEDNESDAY_HOURS,
 			THURSDAY_HOURS,
 			FRIDAY_HOURS,
 			SATURDAY_HOURS,
 			SUNDAY_HOURS,
 			REQUEST_ID,
 			PROGRAM_APPLICATION_ID,
 			PROGRAM_ID,
 			PROGRAM_UPDATE_DATE,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATE_BY,
 			LAST_UPDATE_LOGIN,
 			FORECAST_TXN_VERSION_NUMBER,
 			FORECAST_TXN_GENERATED_FLAG)

                 SELECT p_purge_batch_id,
                       	p_Purge_Release,
 			p_Project_Id,
 			Schedule_Id,
 			Calendar_Id,
 			Assignment_Id,
 			Project_Id,
 			Schedule_Type_Code,
 			Status_Code,
 			Start_Date,
 			End_Date,
 			Monday_Hours,
 			Tuesday_Hours,
 			Wednesday_Hours,
 			Thursday_Hours,
 			Friday_Hours,
 			Saturday_Hours,
 			Sunday_Hours,
 			Request_Id,
 			Program_Application_Id,
 			Program_Id,
 			Program_Update_Date,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Update_By,
 			Last_Update_Login,
 			Forecast_Txn_Version_Number,
 			Forecast_Txn_Generated_Flag
                FROM pa_schedules WHERE schedule_id=l_schedule_id;
Line: 1408

        /*Increase the value of l_nos_schedule_inserted to indicate number of records inserted in schedule_ar  table.
          The value will increase for each loop*/

             l_nos_schedule_inserted := l_nos_schedule_inserted + SQL%ROWCOUNT;
Line: 1413

       pa_debug.debug('Inserting Records into pa_schedule_except_history_AR table  ') ;
Line: 1414

       x_err_stage := 'Inserting Records into pa_schedules_except_history_AR table for schedule id '||to_char(l_schedule_id) ;
Line: 1416

             INSERT INTO PA_SCHEDULES_HSTRY_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
			PURGE_PROJECT_ID,
 			SCHEDULE_ID,
 			CALENDAR_ID,
 			ASSIGNMENT_ID,
 			PROJECT_ID,
 			SCHEDULE_TYPE_CODE,
 			STATUS_CODE,
 			START_DATE,
 			END_DATE,
 			MONDAY_HOURS,
 			TUESDAY_HOURS,
 			WEDNESDAY_HOURS,
 			THURSDAY_HOURS,
 			FRIDAY_HOURS,
 			SATURDAY_HOURS,
 			SUNDAY_HOURS,
 			CHANGE_ID,
 			LAST_APPROVED_FLAG,
 			REQUEST_ID,
 			PROGRAM_APPLICATION_ID,
 			PROGRAM_ID,
 			PROGRAM_UPDATE_DATE,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATE_BY,
 			LAST_UPDATE_LOGIN)

                SELECT  p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        Schedule_Id,
 			Calendar_Id,
 			Assignment_Id,
 			Project_Id,
 			Schedule_Type_Code,
 			Status_Code,
 			Start_Date,
 			End_Date,
 			Monday_Hours,
 			Tuesday_Hours,
 			Wednesday_Hours,
 			Thursday_Hours,
 			Friday_Hours,
 			Saturday_Hours,
 			Sunday_Hours,
 			Change_Id,
 			Last_Approved_Flag,
 			Request_Id,
 			Program_Application_Id,
 			Program_Id,
 			Program_Update_Date,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Update_By,
 			Last_Update_Login
                FROM pa_schedules_history WHERE schedule_id=l_schedule_id;
Line: 1478

        /*Increase the value of l_nos_schedule_his_inserted to indicate number of records inserted in schedule_history_ar
          table. The value will increase for each loop*/

             l_nos_schedule_his_inserted := l_nos_schedule_his_inserted + SQL%ROWCOUNT;
Line: 1485

          /*To keep the count of no os records deleted from pa_forecast_items and pa_forecast_item_details, manipulate the
            count of l_nos_of fi_deleted and l_nos_fis_deleted. */

             pa_debug.debug('Deleting Records from  pa_schedule_history table  ') ;
Line: 1491

            DELETE PA_SCHEDULES_HISTORY
            WHERE schedule_id =l_schedule_id;
Line: 1494

            l_nos_schedule_his_deleted :=l_nos_schedule_his_deleted + SQL%ROWCOUNT;
Line: 1500

            DELETE PA_SCHEDULES
            WHERE schedule_id=l_schedule_id;
Line: 1503

           l_nos_schedule_deleted :=l_nos_schedule_deleted + SQL%ROWCOUNT;
Line: 1519

       /* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

       pa_debug.debug('inserting records into  pa_schedules_except_history_ar  table  ') ;
Line: 1524

       x_err_stage := 'Inserting Records into pa_schedules_except_history_AR table for schedule id '||to_char(l_schedule_id) ;
Line: 1526

         INSERT INTO PA_SCH_EXCPT_HSTRY_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			SCHEDULE_EXCEPTION_ID,
			CALENDAR_ID,
 			ASSIGNMENT_ID,
 			PROJECT_ID,
 			SCHEDULE_TYPE_CODE,
 			STATUS_CODE,
 			EXCEPTION_TYPE_CODE,
 			RESOURCE_CALENDAR_PERCENT,
 			NON_WORKING_DAY_FLAG,
 			CHANGE_HOURS_TYPE_CODE,
 			START_DATE,
 			END_DATE,
 			MONDAY_HOURS,
 			TUESDAY_HOURS,
 			WEDNESDAY_HOURS,
 			THURSDAY_HOURS,
 			FRIDAY_HOURS,
 			SATURDAY_HOURS,
 			SUNDAY_HOURS ,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATE_BY,
 			LAST_UPDATE_LOGIN,
 			CHANGE_ID,
 			DURATION_SHIFT_TYPE_CODE,
 			DURATION_SHIFT_UNIT_CODE,
 			NUMBER_OF_SHIFT,
 			CHANGE_CALENDAR_TYPE_CODE,
 			CHANGE_CALENDAR_ID)

              SELECT    p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        schedule_Exception_Id,
			Calendar_Id,
 			Assignment_Id,
 			Project_Id,
 			Schedule_Type_Code,
 			Status_Code,
 			Exception_Type_Code,
 			Resource_Calendar_Percent,
 			Non_Working_Day_Flag,
 			Change_Hours_Type_Code,
 			Start_Date,
 			End_Date,
 			Monday_Hours,
 			Tuesday_Hours,
 			Wednesday_Hours,
 			Thursday_Hours,
 			Friday_Hours,
 			Saturday_Hours,
 			Sunday_Hours ,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Update_By,
 			Last_Update_Login,
 			Change_Id,
 			Duration_Shift_Type_Code,
 			Duration_Shift_Unit_Code,
 			Number_Of_Shift,
 			Change_Calendar_Type_Code,
 			Change_Calendar_Id
                 FROM pa_schedule_except_history WHERE schedule_exception_id=l_schedule_exception_id;
Line: 1596

        /*Increase the value of l_nos_schedule_his_inserted to indicate number of records inserted inschedule_except_history_ar
          table. The value will increase for each loop*/

             l_nos_schedule_exp_inserted := l_nos_schedule_exp_inserted + SQL%ROWCOUNT;
Line: 1603

          /*To keep the count of no os records deleted from pa_schedules_except_history , manipulate the
            count of l_nos_schedule_exp_deleted . */

             pa_debug.debug('Deleting Records from  pa_scheduleexcept_history table  ') ;
Line: 1609

            DELETE PA_SCHEDULE_EXCEPT_HISTORY
            WHERE schedule_exception_id =l_schedule_exception_id;
Line: 1612

            l_nos_schedule_exp_deleted := l_nos_schedule_exp_deleted + SQL%ROWCOUNT;
Line: 1618

/*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
  the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
 The procedure is called pa_schedules, pa_schedule_except_history and pa_schedules_history tables */

  	pa_purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_SCHEDULES',
	                       l_nos_schedule_inserted,
	                       l_nos_schedule_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1635

	                       l_nos_schedule_his_inserted,
	                       l_nos_schedule_his_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1645

                               l_nos_schedule_exp_inserted,
                               l_nos_schedule_exp_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 1692

    l_nos_candidate_inserted             NUMBER ;
Line: 1693

    l_nos_candidate_rev_inserted         NUMBER ;
Line: 1694

    l_nos_candidate_deleted              NUMBER ;
Line: 1695

    l_nos_candidate_rev_deleted          NUMBER ;
Line: 1698

    SELECT candidate_id from pa_candidates
    WHERE assignment_id =x_assignment_id;
Line: 1714

  l_nos_candidate_inserted     :=0;
Line: 1715

  l_nos_candidate_rev_inserted :=0;
Line: 1716

  l_nos_candidate_deleted      :=0;
Line: 1717

  l_nos_candidate_rev_deleted  :=0;
Line: 1754

       /* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

      pa_debug.debug('Inserting Records into pa_candidates_AR table  ') ;
Line: 1759

      x_err_stage := 'Inserting Records into pa_candidates_AR table for candidate id '||to_char(l_candidate_id) ;
Line: 1761

          INSERT INTO PA_CANDIDATES_AR
                      ( PURGE_BATCH_ID,
			PURGE_RELEASE,
			PURGE_PROJECT_ID,
			CANDIDATE_ID,
 			ASSIGNMENT_ID,
 			RESOURCE_ID,
 			RECORD_VERSION_NUMBER,
 			STATUS_CODE,
 			NOMINATED_BY_PERSON_ID,
 			NOMINATION_DATE,
 			NOMINATION_COMMENTS,
 			CANDIDATE_RANKING,
 			ATTRIBUTE_CATEGORY,
 			ATTRIBUTE1,
 			ATTRIBUTE2,
 			ATTRIBUTE3,
 			ATTRIBUTE4,
 			ATTRIBUTE5,
 			ATTRIBUTE6,
 			ATTRIBUTE7,
 			ATTRIBUTE8,
 			ATTRIBUTE9,
 			ATTRIBUTE10,
 			ATTRIBUTE11,
 			ATTRIBUTE12,
 			ATTRIBUTE13,
 			ATTRIBUTE14,
 			ATTRIBUTE15,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN)

                SELECT  p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        Candidate_Id,
 			Assignment_Id,
 			Resource_Id,
 			Record_Version_Number,
 			Status_Code,
 			Nominated_By_Person_Id,
 			Nomination_Date,
 			Nomination_Comments,
 			Candidate_Ranking,
 			Attribute_Category,
 			Attribute1,
 			Attribute2,
 			Attribute3,
 			Attribute4,
 			Attribute5,
 			Attribute6,
 			Attribute7,
 			Attribute8,
 			Attribute9,
 			Attribute10,
 			Attribute11,
 			Attribute12,
 			Attribute13,
 			Attribute14,
 			Attribute15,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login
               FROM PA_CANDIDATES  WHERE candidate_id=l_candidate_id;
Line: 1831

     /*Increase the value of l_nos_candidate_inserted to indicate number of records inserted in candidates_ar  table.
       The value will increase for each loop*/

             l_nos_candidate_inserted := l_nos_candidate_inserted + SQL%ROWCOUNT;
Line: 1836

       pa_debug.debug('Inserting Records into pa_candidate_reviews_AR table  ') ;
Line: 1837

       x_err_stage := 'Inserting Records into pa_candidate_reviews_AR  table for candidate  id '||to_char(l_candidate_id) ;
Line: 1839

           INSERT INTO PA_CANDIDATES_REV_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			CANDIDATE_REVIEW_ID,
 			CANDIDATE_ID,
 			RECORD_VERSION_NUMBER,
 			STATUS_CODE,
 			REVIEWER_PERSON_ID,
 			REVIEW_DATE,
 			CHANGE_REASON_CODE,
 			REVIEW_COMMENTS,
 			ATTRIBUTE_CATEGORY,
 			ATTRIBUTE1,
 			ATTRIBUTE2,
 			ATTRIBUTE3,
 			ATTRIBUTE4,
 			ATTRIBUTE5,
 			ATTRIBUTE6,
 			ATTRIBUTE7,
 			ATTRIBUTE8,
 			ATTRIBUTE9,
 			ATTRIBUTE10,
 			ATTRIBUTE11,
 			ATTRIBUTE12,
 			ATTRIBUTE13,
 			ATTRIBUTE14,
 			ATTRIBUTE15,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN)

                SELECT  p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        Candidate_Review_Id,
 			Candidate_Id,
 			Record_Version_Number,
 			Status_Code,
 			Reviewer_Person_Id,
 			Review_Date,
 			Change_Reason_Code,
 			Review_Comments,
 			Attribute_Category,
 			Attribute1,
 			Attribute2,
 			Attribute3,
 			Attribute4,
 			Attribute5,
 			Attribute6,
 			Attribute7,
 			Attribute8,
 			Attribute9,
 			Attribute10,
 			Attribute11,
 			Attribute12,
 			Attribute13,
 			Attribute14,
 			Attribute15,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login
                FROM PA_CANDIDATE_REVIEWS WHERE candidate_id = l_candidate_id;
Line: 1907

        /*Increase the value of l_nos_candidate_rev_inserted to indicate number of records inserted in candidate_reviews_ar
          table. The value will increase for each loop*/

             l_nos_candidate_rev_inserted := l_nos_candidate_rev_inserted + SQL%ROWCOUNT;
Line: 1914

          /*To keep the count of no os records deleted from pa_candidates and pa_candidate_reviews, manipulate the
            count of l_nos_candidate_deleted and l_nos_candidate_rev_deleted. */

             pa_debug.debug('Deleting Records from  pa_candidate_reviews table  ') ;
Line: 1920

            DELETE PA_CANDIDATE_REVIEWS
            WHERE candidate_id =l_candidate_id;
Line: 1923

            l_nos_candidate_rev_deleted :=l_nos_candidate_rev_deleted + SQL%ROWCOUNT;
Line: 1928

            DELETE PA_CANDIDATES
            WHERE candidate_id =l_candidate_id;
Line: 1931

            l_nos_candidate_deleted :=l_nos_candidate_deleted + SQL%ROWCOUNT;
Line: 1939

  /*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
    the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
    The procedure is called pa_schedules, pa_schedule_except_history and pa_schedules_history tables */

        pa_purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_CANDIDATES',
	                       l_nos_candidate_inserted,
	                       l_nos_candidate_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1956

	                       l_nos_candidate_rev_inserted,
	                       l_nos_candidate_rev_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 1998

    l_nos_conflicts_inserted             NUMBER ;
Line: 1999

    l_nos_conflicts_deleted              NUMBER ;
Line: 2006

    SELECT DISTINCT asgn.project_id
      FROM pa_project_assignments asgn,
           pa_assignment_conflict_hist hist
     WHERE asgn.assignment_id = hist.conflict_assignment_id
       AND hist.assignment_id = x_assignment_id;
Line: 2031

         l_nos_conflicts_inserted :=0;
Line: 2032

         l_nos_conflicts_deleted  :=0;
Line: 2057

    INSERT INTO PA_ASGMT_CNFLT_HIST_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			CONFLICT_GROUP_ID,
 			ASSIGNMENT_ID,
 			CONFLICT_ASSIGNMENT_ID,
 			RESOLVE_CONFLICTS_ACTION_CODE,
 			INTRA_TXN_CONFLICT_FLAG,
 			PROCESSED_FLAG,
 			SELF_CONFLICT_FLAG,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN)

                SELECT  P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                        Conflict_Group_Id,
 			Assignment_Id,
			Conflict_Assignment_Id,
 			Resolve_Conflicts_Action_Code,
 			Intra_Txn_Conflict_Flag,
 			Processed_Flag,
 			Self_Conflict_Flag,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login
                FROM   PA_ASSIGNMENT_CONFLICT_HIST WHERE assignment_id = l_assignment_id;
Line: 2091

        /*Increase the value of l_nos_conflicts_inserted to indicate number of records inserted in assignment_conflict_hist
          table. The value will increase for each loop*/

             l_nos_conflicts_inserted := l_nos_conflicts_inserted + SQL%ROWCOUNT;
Line: 2098

          /*To keep the count of no of records deleted from pa_assignment_conflict_hist, manipulate the
            count of l_nos_conflicts. */

             pa_debug.debug('Deleting Records from  pa_assignment_conflict_hist table  ') ;
Line: 2104

            DELETE PA_ASSIGNMENT_CONFLICT_HIST
            WHERE assignment_id =l_assignment_id;
Line: 2107

            l_nos_conflicts_deleted :=l_nos_conflicts_deleted + SQL%ROWCOUNT;
Line: 2110

/*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
  the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
 The procedure is called pa_schedules, pa_schedule_except_history and pa_schedules_history tables */

  	pa_purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_ASSIGNMENT_CONFLICT_HIST',
	                       l_nos_conflicts_inserted,
	                       l_nos_conflicts_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage);
Line: 2200

    l_nos_assignments_inserted           NUMBER ;
Line: 2201

    l_nos_assignments_his_inserted       NUMBER ;
Line: 2202

    l_nos_assignments_deleted            NUMBER ;
Line: 2203

    l_nos_assignments_his_deleted        NUMBER ;
Line: 2217

    l_nos_assignments_inserted      :=0;
Line: 2218

    l_nos_assignments_his_inserted  :=0;
Line: 2219

    l_nos_assignments_deleted       :=0;
Line: 2220

    l_nos_assignments_his_deleted   :=0;
Line: 2292

           pa_debug.debug('Inserting Records into pa_project_asgmts_AR table  ') ;
Line: 2293

           x_err_stage := 'Inserting Records into pa_project_asgmts_AR table for assignment  id '||to_char(l_assignment_id) ;
Line: 2295

               INSERT INTO PA_PROJECT_ASGMTS_AR
                     ( 	PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			ASSIGNMENT_ID,
 			ASSIGNMENT_NAME,
 			ASSIGNMENT_TYPE,
 			MULTIPLE_STATUS_FLAG,
 			RECORD_VERSION_NUMBER,
 			STATUS_CODE,
 			PROJECT_ID,
 			PROJECT_ROLE_ID,
 			RESOURCE_ID,
 			PROJECT_PARTY_ID,
 			DESCRIPTION,
 			START_DATE,
 			END_DATE,
 			ASSIGNMENT_EFFORT,
 			EXTENSION_POSSIBLE,
 			SOURCE_ASSIGNMENT_ID,
 			ASSIGNMENT_TEMPLATE_ID,
 			MIN_RESOURCE_JOB_LEVEL,
 			MAX_RESOURCE_JOB_LEVEL,
 			ASSIGNMENT_NUMBER,
 			ADDITIONAL_INFORMATION,
 			WORK_TYPE_ID,
 			REVENUE_CURRENCY_CODE,
 			REVENUE_BILL_RATE,
 			EXPENSE_OWNER,
 			EXPENSE_LIMIT,
 			EXPENSE_LIMIT_CURRENCY_CODE,
 			FCST_TP_AMOUNT_TYPE,
 			FCST_JOB_ID,
 			LOCATION_ID,
 			CALENDAR_TYPE,
 			CALENDAR_ID,
 			RESOURCE_CALENDAR_PERCENT,
 			ATTRIBUTE_CATEGORY,
 			ATTRIBUTE1,
 			ATTRIBUTE2,
 			ATTRIBUTE3,
 			ATTRIBUTE4,
 			ATTRIBUTE5,
 			ATTRIBUTE6,
 			ATTRIBUTE7,
 			ATTRIBUTE8,
 			ATTRIBUTE9,
 			ATTRIBUTE10,
 			ATTRIBUTE11,
 			ATTRIBUTE12,
 			ATTRIBUTE13,
 			ATTRIBUTE14,
 			ATTRIBUTE15 ,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN,
 			PENDING_APPROVAL_FLAG,
 			FCST_JOB_GROUP_ID,
 			EXPENDITURE_ORG_ID,
 			EXPENDITURE_ORGANIZATION_ID,
 			EXPENDITURE_TYPE_CLASS,
 			EXPENDITURE_TYPE,
 			APPRVL_STATUS_CODE,
 			NOTE_TO_APPROVER,
 			STAFFING_PRIORITY_CODE,
                        STAFFING_OWNER_PERSON_ID,
 			TEMPLATE_FLAG,
 			NO_OF_ACTIVE_CANDIDATES,
 			MASS_WF_IN_PROGRESS_FLAG,
 			BILL_RATE_OVERRIDE,
 			BILL_RATE_CURR_OVERRIDE,
 			MARKUP_PERCENT_OVERRIDE,
 			TP_RATE_OVERRIDE,
 			TP_CURRENCY_OVERRIDE,
 			TP_CALC_BASE_CODE_OVERRIDE,
 			TP_PERCENT_APPLIED_OVERRIDE,
 			MARKUP_PERCENT,
 			SEARCH_MIN_AVAILABILITY,
 			SEARCH_COUNTRY_CODE,
 			SEARCH_EXP_ORG_STRUCT_VER_ID,
 			SEARCH_EXP_START_ORG_ID,
 			SEARCH_MIN_CANDIDATE_SCORE,
			LAST_AUTO_SEARCH_DATE,
 			ENABLE_AUTO_CAND_NOM_FLAG,
 			COMPETENCE_MATCH_WEIGHTING,
 			AVAILABILITY_MATCH_WEIGHTING,
 			JOB_LEVEL_MATCH_WEIGHTING,
                        DISCOUNT_PERCENTAGE,  -- bug 2686889
                        RATE_DISC_REASON_CODE,
                        TRANSFER_PRICE_RATE,   --Added for bug 3051110
                        TRANSFER_PR_RATE_CURR,
			RESOURCE_LIST_MEMBER_ID)

               SELECT   P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                       	Assignment_Id,
                        Assignment_Name,
 			Assignment_Type,
 			Multiple_Status_Flag,
 			Record_Version_Number,
 			Status_Code,
 			Project_Id,
 			Project_Role_Id,
 			Resource_Id,
 			Project_Party_Id,
 			Description,
 			Start_Date,
 			End_Date,
 			Assignment_Effort,
 			Extension_Possible,
 			Source_Assignment_Id,
 			Assignment_Template_Id,
 			Min_Resource_Job_Level,
 			Max_Resource_Job_Level,
 			Assignment_Number,
 			Additional_Information,
 			Work_Type_Id,
 			Revenue_Currency_Code,
 			Revenue_Bill_Rate,
 			Expense_Owner,
 			Expense_Limit,
 			Expense_Limit_Currency_Code,
 			Fcst_Tp_Amount_Type,
 			Fcst_Job_Id,
 			Location_Id,
 			Calendar_Type,
 			Calendar_Id,
 			Resource_Calendar_Percent,
 			Attribute_Category,
 			Attribute1,
 			Attribute2,
 			Attribute3,
 			Attribute4,
 			Attribute5,
 			Attribute6,
 			Attribute7,
 			Attribute8,
 			Attribute9,
 			Attribute10,
 			Attribute11,
 			Attribute12,
 			Attribute13,
 			Attribute14,
 			Attribute15 ,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login,
 			Pending_Approval_Flag,
 			Fcst_Job_Group_Id,
 			Expenditure_Org_Id,
 			Expenditure_Organization_Id,
 			Expenditure_Type_Class,
 			Expenditure_Type,
 			Apprvl_Status_Code,
 			Note_To_Approver,
 			Staffing_Priority_Code,
                        Staffing_Owner_Person_Id,
 			Template_Flag,
 			No_Of_Active_Candidates,
 			Mass_Wf_In_Progress_Flag,
 			Bill_Rate_Override,
 			Bill_Rate_Curr_Override,
 			Markup_Percent_Override,
 			Tp_Rate_Override,
 			Tp_Currency_Override,
 			Tp_Calc_Base_Code_Override,
 			Tp_Percent_Applied_Override,
 			Markup_Percent,
 			Search_Min_Availability,
 			Search_Country_Code,
 			Search_Exp_Org_Struct_Ver_Id,
 			Search_Exp_Start_Org_Id,
 			Search_Min_Candidate_Score,
			Last_Auto_Search_Date,
 			Enable_Auto_Cand_Nom_Flag,
 			Competence_Match_Weighting,
 			Availability_Match_Weighting,
 			Job_Level_Match_Weighting,
                        discount_percentage,
                        rate_disc_reason_Code,
                        Transfer_price_Rate,  -- Added for bug 3051110
                        Transfer_pr_rate_curr,
			Resource_List_Member_Id
                 FROM pa_project_assignments where assignment_id=l_assignment_id;
Line: 2485

 /*Increase the value of l_nos_assignments_inserted to indicate number of records inserted in assignments_ar table.
  The value will increase for each loop(assignment id)*/
            l_nos_assignments_inserted := l_nos_assignments_inserted + SQL%ROWCOUNT;
Line: 2489

       pa_debug.debug('Inserting Records into pa_assignment_history ar  table  ') ;
Line: 2491

            INSERT INTO PA_ASGMTS_HSTRY_AR
                       (PURGE_BATCH_ID,
			PURGE_RELEASE,
			PURGE_PROJECT_ID,
			ASSIGNMENT_ID,
 			ASSIGNMENT_NAME,
 			ASSIGNMENT_TYPE,
 			MULTIPLE_STATUS_FLAG,
 			RECORD_VERSION_NUMBER,
 			CHANGE_ID,
 			APPRVL_STATUS_CODE,
 			STATUS_CODE,
 			PROJECT_ID,
 			PROJECT_ROLE_ID,
 			RESOURCE_ID,
 			PROJECT_PARTY_ID,
 			DESCRIPTION,
 			NOTE_TO_APPROVER,
 			START_DATE,
 			END_DATE,
 			ASSIGNMENT_EFFORT,
 			EXTENSION_POSSIBLE,
 			SOURCE_ASSIGNMENT_ID,
 			ASSIGNMENT_TEMPLATE_ID,
 			MIN_RESOURCE_JOB_LEVEL,
 			MAX_RESOURCE_JOB_LEVEL,
 			ASSIGNMENT_NUMBER,
 			ADDITIONAL_INFORMATION,
 			WORK_TYPE_ID,
 			REVENUE_CURRENCY_CODE,
 			REVENUE_BILL_RATE,
 			EXPENSE_OWNER,
 			EXPENSE_LIMIT,
 			EXPENSE_LIMIT_CURRENCY_CODE ,
 			FCST_TP_AMOUNT_TYPE,
 			FCST_JOB_ID,
 			FCST_JOB_GROUP_ID,
 			EXPENDITURE_ORG_ID,
 			EXPENDITURE_ORGANIZATION_ID,
 			EXPENDITURE_TYPE_CLASS,
 			EXPENDITURE_TYPE,
 			LOCATION_ID,
 			CALENDAR_TYPE,
 			CALENDAR_ID,
 			RESOURCE_CALENDAR_PERCENT,
 			PENDING_APPROVAL_FLAG,
 			LAST_APPROVED_FLAG,
 			ATTRIBUTE_CATEGORY,
 			ATTRIBUTE1,
 			ATTRIBUTE2,
 			ATTRIBUTE3,
 			ATTRIBUTE4,
 			ATTRIBUTE5,
 			ATTRIBUTE6,
 			ATTRIBUTE7,
 			ATTRIBUTE8,
 			ATTRIBUTE9,
 			ATTRIBUTE10,
 			ATTRIBUTE11,
 			ATTRIBUTE12,
 			ATTRIBUTE13,
 			ATTRIBUTE14,
 			ATTRIBUTE15,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN,
 			STAFFING_PRIORITY_CODE,
                        STAFFING_OWNER_PERSON_ID,
 			PROJECT_SUBTEAM_ID,
 			NO_OF_ACTIVE_CANDIDATES,
 			TEMPLATE_FLAG,
 			COMPETENCE_MATCH_WEIGHTING,
 			AVAILABILITY_MATCH_WEIGHTING,
 			JOB_LEVEL_MATCH_WEIGHTING,
 			SEARCH_MIN_AVAILABILITY,
 			SEARCH_COUNTRY_CODE,
 			SEARCH_EXP_ORG_STRUCT_VER_ID,
 			SEARCH_EXP_START_ORG_ID,
 			SEARCH_MIN_CANDIDATE_SCORE,
 			LAST_AUTO_SEARCH_DATE,
 			ENABLE_AUTO_CAND_NOM_FLAG,
 			MASS_WF_IN_PROGRESS_FLAG,
 			BILL_RATE_OVERRIDE,
 			BILL_RATE_CURR_OVERRIDE,
 			MARKUP_PERCENT_OVERRIDE,
 			TP_RATE_OVERRIDE,
 			TP_CURRENCY_OVERRIDE,
 			TP_CALC_BASE_CODE_OVERRIDE,
 			TP_PERCENT_APPLIED_OVERRIDE,
 			MARKUP_PERCENT,
                        TRANSFER_PRICE_RATE,  -- Added for bug 3051110
                        TRANSFER_PR_RATE_CURR,
			DISCOUNT_PERCENTAGE,  -- Added for bug 3041583
			RATE_DISC_REASON_CODE) -- Added for bug 3041583
                SELECT  P_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        Assignment_Id,
 			Assignment_Name,
 			Assignment_Type,
 			Multiple_Status_Flag,
 			Record_Version_Number,
 			Change_Id,
 			Apprvl_Status_Code,
 			Status_Code,
 			Project_Id,
 			Project_Role_Id,
 			Resource_Id,
 			Project_Party_Id,
 			Description,
 			Note_To_Approver,
 			Start_Date,
 			End_Date,
 			Assignment_Effort,
 			Extension_Possible,
 			Source_Assignment_Id,
 			Assignment_Template_Id,
 			Min_Resource_Job_Level,
 			Max_Resource_Job_Level,
 			Assignment_Number,
 			Additional_Information,
 			Work_Type_Id,
 			Revenue_Currency_Code,
 			Revenue_Bill_Rate,
 			Expense_Owner,
 			Expense_Limit,
 			Expense_Limit_Currency_Code ,
 			Fcst_Tp_Amount_Type,
 			Fcst_Job_Id,
 			Fcst_Job_Group_Id,
 			Expenditure_Org_Id,
 			Expenditure_Organization_Id,
 			Expenditure_Type_Class,
 			Expenditure_Type,
 			Location_Id,
 			Calendar_Type,
 			Calendar_Id,
 			Resource_Calendar_Percent,
 			Pending_Approval_Flag,
 			Last_Approved_Flag,
 			Attribute_Category,
 			Attribute1,
 			Attribute2,
 			Attribute3,
 			Attribute4,
 			Attribute5,
 			Attribute6,
 			Attribute7,
 			Attribute8,
 			Attribute9,
 			Attribute10,
 			Attribute11,
 			Attribute12,
 			Attribute13,
 			Attribute14,
 			Attribute15,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login,
 			Staffing_Priority_Code,
                        Staffing_Owner_Person_Id,
 			Project_Subteam_Id,
 			No_Of_Active_Candidates,
 			Template_Flag,
 			Competence_Match_Weighting,
 			Availability_Match_Weighting,
 			Job_Level_Match_Weighting,
 			Search_Min_Availability,
 			Search_Country_Code,
 			Search_Exp_Org_Struct_Ver_Id,
 			Search_Exp_Start_Org_Id,
 			Search_Min_Candidate_Score,
 			Last_Auto_Search_Date,
 			Enable_Auto_Cand_Nom_Flag,
 			Mass_Wf_In_Progress_Flag,
 			Bill_Rate_Override,
 			Bill_Rate_Curr_Override,
 			Markup_Percent_Override,
 			Tp_Rate_Override,
 			Tp_Currency_Override,
 			Tp_Calc_Base_Code_Override,
 			Tp_Percent_Applied_Override,
 			Markup_Percent,
                        Transfer_price_rate,  -- Added for bug 3051110
                        Transfer_pr_rate_curr,
			discount_percentage,  -- Added for bug 3041583
			rate_disc_reason_code -- Added for bug 3041583
                  From pa_assignments_history where assignment_id=l_assignment_id;
Line: 2684

     /*Increase the value of l_assignments_his_inserted to indicate number of records inserted in assignments_history_ar
          table. The value will increase for each loop*/

             l_nos_assignments_his_inserted := l_nos_assignments_his_inserted  + SQL%ROWCOUNT;
Line: 2691

          /*To keep the count of no of records deleted from pa_project_assignments and pa_assignments_history, manipulate the
            count of l_nos_assignments_deleted and l_nos_assignments_his_deleted. */

             pa_debug.debug('Deleting Records from  pa_assignments_history table  ') ;
Line: 2697

            DELETE PA_ASSIGNMENTS_HISTORY
            WHERE assignment_id =l_assignment_id;
Line: 2700

            l_nos_assignments_his_deleted :=l_nos_assignments_his_deleted + SQL%ROWCOUNT;
Line: 2705

            DELETE PA_PROJECT_ASSIGNMENTS
            WHERE assignment_id =l_assignment_id;
Line: 2708

            l_nos_assignments_deleted :=l_nos_assignments_deleted + SQL%ROWCOUNT;
Line: 2716

                               l_nos_assignments_inserted,
                               l_nos_assignments_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 2726

                               l_nos_assignments_his_inserted,
                               l_nos_assignments_his_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 2770

    l_nos_parties_inserted               NUMBER ;
Line: 2771

    l_nos_parties_deleted                NUMBER ;
Line: 2784

    l_nos_parties_inserted:=0;
Line: 2785

    l_nos_parties_deleted :=0 ;
Line: 2791

           pa_debug.debug('Inserting Records into PA_project_parties_AR table  ') ;
Line: 2792

           x_err_stage := 'Inserting Records into pa_project_parties_AR table for assignment  id '||to_char(l_assignment_id);
Line: 2794

               INSERT INTO PA_PROJECT_PARTIES_AR
                       (PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			PROJECT_PARTY_ID,
 			OBJECT_ID,
 			OBJECT_TYPE,
 			PROJECT_ID,
 			RESOURCE_ID,
 			RESOURCE_TYPE_ID,
 			RESOURCE_SOURCE_ID,
 			PROJECT_ROLE_ID,
 			START_DATE_ACTIVE,
 			END_DATE_ACTIVE,
 			SCHEDULED_FLAG,
 			RECORD_VERSION_NUMBER,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN,
 			GRANT_ID)

               SELECT   p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                        Project_Party_Id,
   		        Object_Id,
 		        Object_Type,
 			Project_Id,
 			Resource_Id,
 			Resource_Type_Id,
 			Resource_Source_Id,
 			Project_Role_Id,
 			Start_Date_Active,
 			End_Date_Active,
 			Scheduled_Flag,
 			Record_Version_Number,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login,
 			Grant_Id
              FROM PA_PROJECT_PARTIES WHERE project_party_id = (SELECT project_party_id from pa_project_assignments
                                                                WHERE assignment_id=l_assignment_id);
Line: 2841

         /*Increase the value of l_assignments_his_inserted to indicate number of records inserted in assignments_history_ar
          table. The value will increase for each loop*/

             l_nos_parties_inserted := l_nos_parties_inserted  + SQL%ROWCOUNT;
Line: 2848

          /*To keep the count of no of records deleted from pa_project_parties, manipulate the
            count of l_nos_parties_deleted */

             pa_debug.debug('Deleting Records from  pa_project_parties table  ') ;
Line: 2854

            DELETE PA_PROJECT_PARTIES
            WHERE project_party_id =(SELECT project_party_id FROM pa_project_assignments
                                     WHERE assignment_id=l_assignment_id);
Line: 2858

            l_nos_parties_deleted :=l_nos_parties_deleted + SQL%ROWCOUNT;
Line: 2865

                               l_nos_parties_inserted,
                               l_nos_parties_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 2912

      l_nos_action_sets_inserted           NUMBER;
Line: 2913

      l_nos_set_lines_inserted             NUMBER;
Line: 2914

      l_nos_lines_cond_inserted            NUMBER;
Line: 2915

      l_nos_lines_aud_inserted             NUMBER;
Line: 2916

      l_nos_action_sets_deleted            NUMBER;
Line: 2917

      l_nos_set_lines_deleted              NUMBER;
Line: 2918

      l_nos_lines_cond_deleted             NUMBER;
Line: 2919

      l_nos_lines_aud_deleted              NUMBER;
Line: 2922

      SELECT action_set_id From Pa_action_sets
      WHERE action_set_type_code = 'ADVERTISEMENT'
      AND object_type ='OPEN_ASSIGNMENT'
      AND object_id=x_assignment_id;
Line: 2938

      l_nos_action_sets_inserted :=0;
Line: 2939

      l_nos_set_lines_inserted   :=0;
Line: 2940

      l_nos_lines_cond_inserted  :=0;
Line: 2941

      l_nos_lines_aud_inserted   :=0;
Line: 2942

      l_nos_action_sets_deleted  :=0;
Line: 2943

      l_nos_set_lines_deleted    :=0;
Line: 2944

      l_nos_lines_cond_deleted   :=0;
Line: 2945

      l_nos_lines_aud_deleted    :=0;
Line: 2995

           pa_debug.debug('Inserting Records into PA_ACTION_SETS_AR table  ') ;
Line: 2996

           x_err_stage := 'Inserting Records into P_ACTION_SETS_AR table for assignment  id '||to_char(l_assignment_id);
Line: 2998

              INSERT INTO PA_ACTION_SETS_AR
                       (PURGE_BATCH_ID,
			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			ACTION_SET_ID,
 			ACTION_SET_NAME,
 			ACTION_SET_TYPE_CODE,
 			OBJECT_TYPE,
 			OBJECT_ID,
 			START_DATE_ACTIVE,
 			END_DATE_ACTIVE,
 			ACTUAL_START_DATE,
 			DESCRIPTION,
 			RECORD_VERSION_NUMBER,
 			SOURCE_ACTION_SET_ID,
 			STATUS_CODE,
 			ACTION_SET_TEMPLATE_FLAG,
 			MOD_SOURCE_ACTION_SET_FLAG,
 			ATTRIBUTE_CATEGORY,
 			ATTRIBUTE1,
 			ATTRIBUTE2,
 			ATTRIBUTE3,
 			ATTRIBUTE4,
 			ATTRIBUTE5,
 			ATTRIBUTE6,
 			ATTRIBUTE7,
 			ATTRIBUTE8,
 			ATTRIBUTE9,
 			ATTRIBUTE10,
 			ATTRIBUTE11,
 			ATTRIBUTE12,
 			ATTRIBUTE13,
 			ATTRIBUTE14,
 			ATTRIBUTE15,
 			CREATED_BY,
 			CREATION_DATE,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN)

               SELECT   p_purge_batch_id,
                        p_purge_release,
                        p_project_id,
                      	Action_Set_Id,
 			Action_Set_Name,
 			Action_Set_Type_Code,
 			Object_Type,
 			Object_Id,
 			Start_Date_Active,
 			End_Date_Active,
 			Actual_Start_Date,
 			Description,
 			Record_Version_Number,
 			Source_Action_Set_Id,
 			Status_Code,
 			Action_Set_Template_Flag,
 			Mod_Source_Action_Set_Flag,
 			Attribute_Category,
 			Attribute1,
 			Attribute2,
 			Attribute3,
 			Attribute4,
 			Attribute5,
 			Attribute6,
 			Attribute7,
 			Attribute8,
 			Attribute9,
 			Attribute10,
 			Attribute11,
 			Attribute12,
 			Attribute13,
 			Attribute14,
 			Attribute15,
 			Created_By,
 			Creation_Date,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login
              From pa_action_sets where action_set_id=l_action_set_id;
Line: 3078

        /*Increase the value of l_nos_action_sets_inserted to indicate number of records inserted in action_sets_ar  table.
          The value will increase for each loop*/

             l_nos_action_sets_inserted := l_nos_action_sets_inserted + SQL%ROWCOUNT;
Line: 3083

       pa_debug.debug('Inserting Records into pa_action_set_lines_AR table  ') ;
Line: 3084

       x_err_stage := 'Inserting Records into pa_action_setl_lines_AR table for action set  id '||to_char(l_action_set_id) ;
Line: 3087

            INSERT INTO PA_ACTION_SET_LINES_AR
                      ( PURGE_BATCH_ID,
 			PURGE_RELEASE,
			PURGE_PROJECT_ID,
			ACTION_SET_LINE_ID,
 			ACTION_SET_ID,
 			ACTION_SET_LINE_NUMBER,
 			STATUS_CODE,
	 		DESCRIPTION,
 			RECORD_VERSION_NUMBER,
 			LINE_DELETED_FLAG,
 			ACTION_CODE,
 			ACTION_ATTRIBUTE1,
 			ACTION_ATTRIBUTE2,
 			ACTION_ATTRIBUTE3,
 			ACTION_ATTRIBUTE4,
 			ACTION_ATTRIBUTE5,
 			ACTION_ATTRIBUTE6,
 			ACTION_ATTRIBUTE7,
	 		ACTION_ATTRIBUTE8,
 			ACTION_ATTRIBUTE9,
 			ACTION_ATTRIBUTE10,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN)

                SELECT  P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                     	Action_Set_Line_Id,
 			Action_Set_Id,
 			Action_Set_Line_Number,
 			Status_Code,
	 		Description,
 			Record_Version_Number,
 			Line_Deleted_Flag,
 			Action_Code,
 			Action_Attribute1,
 			Action_Attribute2,
 			Action_Attribute3,
 			Action_Attribute4,
 			Action_Attribute5,
 			Action_Attribute6,
 			Action_Attribute7,
	 		Action_Attribute8,
 			Action_Attribute9,
 			Action_Attribute10,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login
                FROM Pa_Action_Set_Lines WHERE action_set_id=l_action_set_id;
Line: 3143

      /*Increase the value of l_nos_set_lines_inserted to indicate number of records inserted in action_set_lines_ar table.
       The value will increase for each loop*/

             l_nos_set_lines_inserted := l_nos_set_lines_inserted + SQL%ROWCOUNT;
Line: 3148

       pa_debug.debug('Inserting Records into pa_action_set_line_cond_AR table  ') ;
Line: 3149

       x_err_stage := 'Inserting Records into pa_action_set_line__cond_AR table for lines of action set id '||to_char(l_action_set_id) ;
Line: 3151

               INSERT INTO PA_ACTN_SET_LN_COND_AR
                      (	PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			ACTION_SET_LINE_ID,
 			ACTION_SET_LINE_CONDITION_ID,
			DESCRIPTION,
 			CONDITION_DATE,
 			CONDITION_CODE,
 			CONDITION_ATTRIBUTE1,
 			CONDITION_ATTRIBUTE2,
 			CONDITION_ATTRIBUTE3,
 			CONDITION_ATTRIBUTE4,
 			CONDITION_ATTRIBUTE5,
 			CONDITION_ATTRIBUTE6,
 			CONDITION_ATTRIBUTE7,
 			CONDITION_ATTRIBUTE8,
	 		CONDITION_ATTRIBUTE9,
 			CONDITION_ATTRIBUTE10,
 			CREATION_DATE,
 			CREATED_BY,
	 		LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
	 		LAST_UPDATE_LOGIN)

                 SELECT P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                     	Action_Set_Line_Id,
           		Action_Set_Line_Condition_Id,
			Description,
 			Condition_Date,
 			Condition_Code,
 			Condition_Attribute1,
 			Condition_Attribute2,
 			Condition_Attribute3,
 			Condition_Attribute4,
 			Condition_Attribute5,
 			Condition_Attribute6,
 			Condition_Attribute7,
 			Condition_Attribute8,
	 		Condition_Attribute9,
 			Condition_Attribute10,
 			Creation_Date,
 			Created_By,
	 		Last_Update_Date,
 			Last_Updated_By,
	 		Last_Update_Login
            FROM PA_ACTION_SET_LINE_COND WHERE action_set_line_id IN (SELECT action_set_line_id
                                                                      From pa_action_set_lines where action_set_id=l_action_set_id);
Line: 3202

       /*Increase the value of l_l_nos_lines_cond_inserted to indicate number of records inserted in action_set_lines_acond_ar  table.
          The value will increase for each loop*/

             l_nos_lines_cond_inserted := l_nos_lines_cond_inserted + SQL%ROWCOUNT;
Line: 3207

       pa_debug.debug('Inserting Records into pa_action_set_lines_audit table  ') ;
Line: 3208

       x_err_stage := 'Inserting Records into pa_action_set_lines_audit table for lines of action set id '||to_char(l_action_set_id) ;
Line: 3210

            INSERT INTO PA_ACTN_SETLN_AUD_AR
                      ( PURGE_BATCH_ID,
 			PURGE_RELEASE,
 			PURGE_PROJECT_ID,
 			ACTION_SET_LINE_ID,
 			OBJECT_TYPE,
 			OBJECT_ID,
 			ACTION_SET_TYPE_CODE,
 			STATUS_CODE,
 			REASON_CODE,
 			ACTION_CODE,
 			AUDIT_DISPLAY_ATTRIBUTE,
 			AUDIT_ATTRIBUTE,
 			ACTION_DATE,
 			ACTIVE_FLAG,
 			REVERSED_ACTION_SET_LINE_ID,
 			OBJECT_NAME,
 			ENCODED_ERROR_MESSAGE,
 			CREATION_DATE,
 			CREATED_BY,
 			LAST_UPDATE_DATE,
 			LAST_UPDATED_BY,
 			LAST_UPDATE_LOGIN,
 			REQUEST_ID,
 			PROGRAM_APPLICATION_ID,
 			PROGRAM_ID,
 			PROGRAM_UPDATE_DATE)

                 SELECT P_purge_batch_id,
                        P_purge_release,
                        P_project_id,
                        Action_Set_Line_Id,
 			Object_Type,
 			Object_Id,
 			Action_Set_Type_Code,
 			Status_Code,
 			Reason_Code,
 			Action_Code,
 			Audit_Display_Attribute,
 			Audit_Attribute,
 			Action_Date,
 			Active_Flag,
 			Reversed_Action_Set_Line_Id,
 			Object_Name,
 			Encoded_Error_Message,
 			Creation_Date,
 			Created_By,
 			Last_Update_Date,
 			Last_Updated_By,
 			Last_Update_Login,
 			Request_Id,
 			Program_Application_Id,
 			Program_Id,
 			Program_Update_Date
                  From  PA_ACTION_SET_LINE_AUD WHERE action_set_line_ID IN (SELECT action_set_line_id From pa_action_set_lines
                                                                            WHERE action_set_id=l_action_set_id);
Line: 3268

        /*Increase the value of l_nos_lines_aud_inserted to indicate number of records inserted in action_set_lines_aud_ar
          table. The value will increase for each loop*/

            l_nos_lines_aud_inserted :=  l_nos_lines_aud_inserted + SQL%ROWCOUNT;
Line: 3275

          /*To keep the count of no of records deleted from adcertisement related tables, manipulate the
            count of variables: */

           pa_debug.debug('Deleting Records from  pa_action_set_lines_aud table  ') ;
Line: 3281

            DELETE PA_ACTION_SET_LINE_AUD
            WHERE action_set_line_ID IN (SELECT action_set_line_id From pa_action_set_lines
                                         WHERE action_set_id=l_action_set_id);
Line: 3285

           l_nos_lines_aud_deleted :=  l_nos_lines_aud_deleted + SQL%ROWCOUNT;
Line: 3290

            DELETE PA_ACTION_SET_LINE_COND
            WHERE action_set_line_ID IN (SELECT action_set_line_id From pa_action_set_lines
                                         WHERE action_set_id=l_action_set_id);
Line: 3294

            l_nos_lines_cond_deleted := l_nos_lines_cond_deleted + SQL%ROWCOUNT;
Line: 3299

            DELETE  PA_ACTION_SET_LINES
            WHERE action_set_id=l_action_set_id;
Line: 3302

            l_nos_set_lines_deleted := l_nos_set_lines_deleted + SQL%ROWCOUNT;
Line: 3307

            DELETE  PA_ACTION_SETS
            WHERE action_set_id=l_action_set_id;
Line: 3310

            l_nos_action_sets_deleted := l_nos_action_sets_deleted + SQL%ROWCOUNT;
Line: 3322

                               l_nos_action_sets_inserted,
                               l_nos_action_sets_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 3332

                               l_nos_set_lines_inserted,
                               l_nos_set_lines_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 3343

                              l_nos_lines_cond_inserted,
                              l_nos_lines_cond_deleted,
                              x_err_code,
                              x_err_stack,
                              x_err_stage
                               ) ;
Line: 3354

                               l_nos_lines_aud_inserted,
                               l_nos_lines_aud_deleted,
                               x_err_code,
                               x_err_stack,
                               x_err_stage
                               ) ;
Line: 3404

    SELECT item_key
      FROM pa_wf_processes
     WHERE entity_key1  = TO_CHAR(p_project_id)
       AND entity_key2  = x_entity_key
       AND wf_type_code = p_wf_type_code
       AND item_type    = p_item_type;
Line: 3414

    l_nos_wf_process_inserted           NUMBER ;
Line: 3415

    l_nos_wf_process_dtls_inserted      NUMBER ;
Line: 3416

    l_nos_wf_ntf_perf_inserted          NUMBER ;
Line: 3417

    l_nos_wf_process_deleted            NUMBER ;
Line: 3418

    l_nos_wf_process_dtls_deleted       NUMBER ;
Line: 3419

    l_nos_wf_ntf_perf_deleted           NUMBER ;
Line: 3435

    l_nos_wf_process_inserted           := 0;
Line: 3436

    l_nos_wf_process_dtls_inserted      := 0;
Line: 3437

    l_nos_wf_ntf_perf_inserted          := 0;
Line: 3438

    l_nos_wf_process_deleted            := 0;
Line: 3439

    l_nos_wf_process_dtls_deleted       := 0;
Line: 3440

    l_nos_wf_ntf_perf_deleted           := 0;
Line: 3454

/* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

          Pa_Debug.DEBUG('Inserting Records into pa_wf_processes_AR table  ') ;
Line: 3459

          x_err_stage := 'Inserting Records into pa_wf_processes_AR table for item key '||l_item_key ;
Line: 3461

          INSERT INTO pa_wf_processes_ar
               (purge_batch_id,
                purge_release,
                purge_project_id,
                wf_type_code,
                item_type,
                item_key,
                entity_key1,
                entity_key2,
                description,
                last_updated_by,
                last_update_date,
                creation_date,
                created_by,
                last_update_login)
          SELECT  p_purge_batch_id,
                  p_purge_release,
                  p_project_id,
                  wf_type_code,
                  item_type,
                  item_key,
                  entity_key1,
                  entity_key2,
                  description,
                  last_updated_by,
                  last_update_date,
                  creation_date,
                  created_by,
                  last_update_login
             FROM pa_wf_processes
            WHERE entity_key1  = TO_CHAR(p_project_id)
              AND entity_key2  = l_entity_key
              AND wf_type_code = p_wf_type_code
              AND item_type    = p_item_type;
Line: 3496

 /*Increase the value of l_nos_wf_process_inserted to indicate number of records inserted in pa_wf_processes_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_process_inserted := l_nos_wf_process_inserted + SQL%ROWCOUNT;
Line: 3500

              Pa_Debug.DEBUG('Inserting Records into pa_wf_process_DETAILS_AR table  ') ;
Line: 3501

              x_err_stage := 'Inserting Records into pa_wf_process_DETAILS_AR table for item key '|| l_item_key ;
Line: 3504

              INSERT INTO pa_wf_process_details_ar
                   (purge_batch_id,
                    purge_release,
                    purge_project_id,
                    wf_type_code,
                    item_type,
                    item_key,
                    object_id1,
                    object_id2,
                    process_status_code,
                    source_attribute1,
                    source_attribute2,
                    source_attribute3,
                    source_attribute4,
                    source_attribute5,
                    source_attribute6,
                    source_attribute7,
                    source_attribute8,
                    source_attribute9,
                    source_attribute10,
                    last_updated_by,
                    last_update_date,
                    creation_date,
                    created_by,
                    last_update_login)
              SELECT  p_purge_batch_id,
                      p_purge_release,
                      p_project_id,
                      wf_type_code,
                      item_type,
                      item_key,
                      object_id1,
                      object_id2,
                      process_status_code,
                      source_attribute1,
                      source_attribute2,
                      source_attribute3,
                      source_attribute4,
                      source_attribute5,
                      source_attribute6,
                      source_attribute7,
                      source_attribute8,
                      source_attribute9,
                      source_attribute10,
                      last_updated_by,
                      last_update_date,
                      creation_date,
                      created_by,
                      last_update_login
                 FROM pa_wf_process_details
                WHERE item_key   = l_item_key
                  AND object_id1 = l_entity_key
                  AND wf_type_code = p_wf_type_code
                  AND item_type    = p_item_type;
Line: 3559

            /* Increase the value of l_nos_wf_process_dtls_inserted to indicate number of records inserted in
               pa_wf_process_details_ar table. The value will increase for each loop(item_key)*/
               l_nos_wf_process_dtls_inserted := l_nos_wf_process_dtls_inserted + SQL%ROWCOUNT;
Line: 3563

           Pa_Debug.DEBUG('Inserting Records into pa_wf_ntf_performers_AR table  ') ;
Line: 3564

           x_err_stage := 'Inserting Records into pa_wf_ntf_performers_AR table for item key '|| l_item_key ;
Line: 3567

           INSERT INTO pa_wf_ntf_performers_ar
                (purge_batch_id,
                 purge_release,
                 purge_project_id,
                 wf_type_code,
                 item_type,
                 item_key,
                 object_id1,
                 object_id2,
                 user_name,
                 user_type,
                 routing_order,
                 current_approver_flag,
                 approver_comments,
                 group_id,
                 approver_group_id,
                 approval_status,
                 sequence_number,
                 action_code,
                 action_date,
                 display_flag,
                 last_updated_by,
                 last_update_date,
                 creation_date,
                 created_by,
                 last_update_login)
           SELECT  p_purge_batch_id,
                   p_purge_release,
                   p_project_id,
                   wf_type_code,
                   item_type,
                   item_key,
                   object_id1,
                   object_id2,
                   user_name,
                   user_type,
                   routing_order,
                   current_approver_flag,
                   approver_comments,
                   group_id,
                   approver_group_id,
                   approval_status,
                   sequence_number,
                   action_code,
                   action_date,
                   display_flag,
                   Fnd_Global.user_id,
                   SYSDATE,
                   SYSDATE,
                   Fnd_Global.user_id,
                   Fnd_Global.login_id
              FROM pa_wf_ntf_performers
             WHERE object_id2 = TO_CHAR(p_project_id)
               AND object_id1 = l_entity_key
               AND wf_type_code = p_wf_type_code
               AND item_type    = p_item_type;
Line: 3624

 /*Increase the value of l_nos_wf_ntf_perf_inserted to indicate number of records inserted in pa_wf_process_details_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_ntf_perf_inserted := l_nos_wf_ntf_perf_inserted + SQL%ROWCOUNT;
Line: 3630

/* To keep the count of no of records deleted from pa_wf_processes, pa_wf_process_details and pa_wf_ntf_performers,
   manipulate the count of l_nos_wf_process_deleted, l_nos_wf_process_dtls_deleted and l_nos_wf_ntf_perf_deleted. */

       Pa_Debug.DEBUG('Deleting Records from  pa_wf_ntf_performers table  ') ;
Line: 3636

       DELETE pa_wf_ntf_performers
        WHERE object_id2   = TO_CHAR(p_project_id)
          AND object_id1   = l_entity_key
          AND wf_type_code = p_wf_type_code
          AND item_type    = p_item_type;
Line: 3642

       l_nos_wf_ntf_perf_deleted := l_nos_wf_ntf_perf_deleted + SQL%ROWCOUNT;
Line: 3647

       DELETE pa_wf_process_details
        WHERE object_id2   = TO_CHAR(p_project_id)
          AND object_id1   = l_entity_key
          AND wf_type_code = p_wf_type_code
          AND item_type    = p_item_type;
Line: 3653

       l_nos_wf_process_dtls_deleted := l_nos_wf_process_dtls_deleted + SQL%ROWCOUNT;
Line: 3659

       DELETE pa_wf_processes
        WHERE entity_key1  = TO_CHAR(p_project_id)
          AND entity_key2  = l_entity_key
          AND wf_type_code = p_wf_type_code
          AND item_type    = p_item_type;
Line: 3665

       l_nos_wf_process_deleted := l_nos_wf_process_deleted + SQL%ROWCOUNT;
Line: 3692

  /*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
    the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
    The procedure is called once for ppa_wf_processes, pa_wf_process_details and pa_wf_ntf_performers tables */

        Pa_Purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_WF_NTF_PERFORMERS',
	                       l_nos_wf_ntf_perf_inserted,
	                       l_nos_wf_ntf_perf_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 3709

	                       l_nos_wf_process_dtls_inserted,
	                       l_nos_wf_process_dtls_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 3719

	                       l_nos_wf_process_inserted,
	                       l_nos_wf_process_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 3755

    SELECT item_key
      FROM pa_wf_process_details
     WHERE NVL(object_id2, object_id1) = x_object_id
       AND item_type    = p_item_type;
Line: 3763

    l_nos_wf_process_inserted           NUMBER ;
Line: 3764

    l_nos_wf_process_dtls_inserted      NUMBER ;
Line: 3765

    l_nos_wf_process_deleted            NUMBER ;
Line: 3766

    l_nos_wf_process_dtls_deleted       NUMBER ;
Line: 3782

    l_nos_wf_process_inserted           := 0;
Line: 3783

    l_nos_wf_process_dtls_inserted      := 0;
Line: 3784

    l_nos_wf_process_deleted            := 0;
Line: 3785

    l_nos_wf_process_dtls_deleted       := 0;
Line: 3799

/* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

          Pa_Debug.DEBUG('Inserting Records into pa_wf_processes_AR table  ') ;
Line: 3804

          x_err_stage := 'Inserting Records into pa_wf_processes_AR table for item key '||l_item_key ;
Line: 3806

          INSERT INTO pa_wf_processes_ar
               (purge_batch_id,
                purge_release,
                purge_project_id,
                wf_type_code,
                item_type,
                item_key,
                entity_key1,
                entity_key2,
                description,
                last_updated_by,
                last_update_date,
                creation_date,
                created_by,
                last_update_login)
          SELECT  p_purge_batch_id,
                  p_purge_release,
                  p_project_id,
                  wf_type_code,
                  item_type,
                  item_key,
                  entity_key1,
                  entity_key2,
                  description,
                  last_updated_by,
                  last_update_date,
                  creation_date,
                  created_by,
                  last_update_login
             FROM pa_wf_processes
            WHERE item_key     = l_item_key
              AND entity_key1  = TO_CHAR(p_project_id)
              AND item_type    = p_item_type;
Line: 3840

 /*Increase the value of l_nos_wf_process_inserted to indicate number of records inserted in pa_wf_processes_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_process_inserted := l_nos_wf_process_inserted + SQL%ROWCOUNT;
Line: 3844

              Pa_Debug.DEBUG('Inserting Records into pa_wf_process_DETAILS_AR table  ') ;
Line: 3845

              x_err_stage := 'Inserting Records into pa_wf_process_DETAILS_AR table for item key '|| l_item_key ;
Line: 3848

              INSERT INTO pa_wf_process_details_ar
                   (purge_batch_id,
                    purge_release,
                    purge_project_id,
                    wf_type_code,
                    item_type,
                    item_key,
                    object_id1,
                    object_id2,
                    process_status_code,
                    source_attribute1,
                    source_attribute2,
                    source_attribute3,
                    source_attribute4,
                    source_attribute5,
                    source_attribute6,
                    source_attribute7,
                    source_attribute8,
                    source_attribute9,
                    source_attribute10,
                    last_updated_by,
                    last_update_date,
                    creation_date,
                    created_by,
                    last_update_login)
              SELECT  p_purge_batch_id,
                      p_purge_release,
                      p_project_id,
                      wf_type_code,
                      item_type,
                      item_key,
                      object_id1,
                      object_id2,
                      process_status_code,
                      source_attribute1,
                      source_attribute2,
                      source_attribute3,
                      source_attribute4,
                      source_attribute5,
                      source_attribute6,
                      source_attribute7,
                      source_attribute8,
                      source_attribute9,
                      source_attribute10,
                      last_updated_by,
                      last_update_date,
                      creation_date,
                      created_by,
                      last_update_login
                 FROM pa_wf_process_details
                WHERE item_key   = l_item_key
                  AND NVL(object_id2, object_id1) = TO_CHAR(l_object_id)
                  AND item_type    = p_item_type;
Line: 3902

            /* Increase the value of l_nos_wf_process_dtls_inserted to indicate number of records inserted in
               pa_wf_process_details_ar table. The value will increase for each loop(item_key)*/
               l_nos_wf_process_dtls_inserted := l_nos_wf_process_dtls_inserted + SQL%ROWCOUNT;
Line: 3908

/* To keep the count of no of records deleted from pa_wf_processes and pa_wf_process_details, manipulate the
   count of l_nos_wf_process_deleted and l_nos_wf_process_dtls_deleted. */

       Pa_Debug.DEBUG('Deleting Records from  pa_wf_process_details table  ') ;
Line: 3914

       DELETE pa_wf_process_details
        WHERE item_key   = l_item_key
          AND NVL(object_id2, object_id1) = TO_CHAR(l_object_id)
          AND item_type    = p_item_type;
Line: 3919

       l_nos_wf_process_dtls_deleted := l_nos_wf_process_dtls_deleted + SQL%ROWCOUNT;
Line: 3925

       DELETE pa_wf_processes
        WHERE item_key     = l_item_key
          AND entity_key1  = TO_CHAR(p_project_id)
          AND item_type    = p_item_type;
Line: 3930

       l_nos_wf_process_deleted := l_nos_wf_process_deleted + SQL%ROWCOUNT;
Line: 3957

  /*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
    the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
    The procedure is called once for pa_wf_processes, pa_wf_process_details and pa_wf_ntf_performers tables */

       	Pa_Purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_WF_PROCESS_DETAILS',
	                       l_nos_wf_process_dtls_inserted,
	                       l_nos_wf_process_dtls_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 3974

	                       l_nos_wf_process_inserted,
	                       l_nos_wf_process_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 4015

    SELECT item_key, group_id
      FROM pa_wf_ntf_performers
     WHERE object_id1 = x_object_id
       AND wf_type_code = p_wf_type_code
       AND item_type    <> 'PAWFAAP';
Line: 4025

    l_nos_wf_process_inserted           NUMBER ;
Line: 4026

    l_nos_wf_ntf_perf_inserted          NUMBER ;
Line: 4027

    l_nos_wf_process_deleted            NUMBER ;
Line: 4028

    l_nos_wf_ntf_perf_deleted           NUMBER ;
Line: 4044

    l_nos_wf_process_inserted           := 0;
Line: 4045

    l_nos_wf_ntf_perf_inserted          := 0;
Line: 4046

    l_nos_wf_process_deleted            := 0;
Line: 4047

    l_nos_wf_ntf_perf_deleted           := 0;
Line: 4061

/* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

          Pa_Debug.DEBUG('Inserting Records into pa_wf_processes_AR table  ') ;
Line: 4066

          x_err_stage := 'Inserting Records into pa_wf_processes_AR table for assignment_id/group_id '||l_group_id ;
Line: 4068

          INSERT INTO pa_wf_processes_ar
               (purge_batch_id,
                purge_release,
                purge_project_id,
                wf_type_code,
                item_type,
                item_key,
                entity_key1,
                entity_key2,
                description,
                last_updated_by,
                last_update_date,
                creation_date,
                created_by,
                last_update_login)
          SELECT  p_purge_batch_id,
                  p_purge_release,
                  p_project_id,
                  wf_type_code,
                  item_type,
                  item_key,
                  entity_key1,
                  entity_key2,
                  description,
                  last_updated_by,
                  last_update_date,
                  creation_date,
                  created_by,
                  last_update_login
             FROM pa_wf_processes
            WHERE ( entity_key2  = TO_CHAR(l_object_id)
               OR entity_key2  = TO_CHAR(l_group_id ))
              AND entity_key1  = TO_CHAR(p_project_id)
              AND wf_type_code = p_wf_type_code
              AND item_type    <> 'PAWFAAP';
Line: 4104

 /*Increase the value of l_nos_wf_process_inserted to indicate number of records inserted in pa_wf_processes_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_process_inserted := l_nos_wf_process_inserted + SQL%ROWCOUNT;
Line: 4108

           Pa_Debug.DEBUG('Inserting Records into pa_wf_ntf_performers_AR table  ') ;
Line: 4109

           x_err_stage := 'Inserting Records into pa_wf_ntf_performers_AR table for assignment_id/group_id '|| l_group_id ;
Line: 4112

           INSERT INTO pa_wf_ntf_performers_ar
                (purge_batch_id,
                 purge_release,
                 purge_project_id,
                 wf_type_code,
                 item_type,
                 item_key,
                 object_id1,
                 object_id2,
                 user_name,
                 user_type,
                 routing_order,
                 current_approver_flag,
                 approver_comments,
                 group_id,
                 approver_group_id,
                 approval_status,
                 sequence_number,
                 action_code,
                 action_date,
                 display_flag,
                 last_updated_by,
                 last_update_date,
                 creation_date,
                 created_by,
                 last_update_login)
           SELECT  p_purge_batch_id,
                   p_purge_release,
                   p_project_id,
                   wf_type_code,
                   item_type,
                   item_key,
                   object_id1,
                   object_id2,
                   user_name,
                   user_type,
                   routing_order,
                   current_approver_flag,
                   approver_comments,
                   group_id,
                   approver_group_id,
                   approval_status,
                   sequence_number,
                   action_code,
                   action_date,
                   display_flag,
                   Fnd_Global.user_id,
                   SYSDATE,
                   SYSDATE,
                   Fnd_Global.user_id,
                   Fnd_Global.login_id
              FROM pa_wf_ntf_performers
             WHERE object_id1 = TO_CHAR(l_object_id)
               AND wf_type_code = p_wf_type_code
               AND item_type    <> 'PAWFAAP';
Line: 4168

 /*Increase the value of l_nos_wf_ntf_perf_inserted to indicate number of records inserted in pa_wf_process_details_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_ntf_perf_inserted := l_nos_wf_ntf_perf_inserted + SQL%ROWCOUNT;
Line: 4174

/* To keep the count of no of records deleted from pa_wf_processes, pa_wf_process_details and pa_wf_ntf_performers,
   manipulate the count of l_nos_wf_process_deleted, l_nos_wf_process_dtls_deleted and l_nos_wf_ntf_perf_deleted. */

       Pa_Debug.DEBUG('Deleting Records from  pa_wf_ntf_performers table  ') ;
Line: 4180

       DELETE pa_wf_ntf_performers
        WHERE object_id1 = TO_CHAR(l_object_id)
          AND wf_type_code = p_wf_type_code
          AND item_type    <> 'PAWFAAP';
Line: 4185

       l_nos_wf_ntf_perf_deleted := l_nos_wf_ntf_perf_deleted + SQL%ROWCOUNT;
Line: 4191

       DELETE pa_wf_processes
        WHERE entity_key1  = TO_CHAR(p_project_id)
          aND (entity_key2  = TO_CHAR(l_object_id)
           OR entity_key2  = TO_CHAR(l_group_id) )
          AND wf_type_code = p_wf_type_code
          AND item_type    <> 'PAWFAAP';
Line: 4198

       l_nos_wf_process_deleted := l_nos_wf_process_deleted + SQL%ROWCOUNT;
Line: 4225

  /*After "deleting" or "deleting and inserting" a set of records the transaction is commited. This also creates a record in
    the Pa_Purge_Project_details, which will show the no. of records that are purged from each table.
    The procedure is called once for pa_wf_processes and pa_wf_ntf_performers tables */

        Pa_Purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_WF_NTF_PERFORMERS',
	                       l_nos_wf_ntf_perf_inserted,
	                       l_nos_wf_ntf_perf_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 4242

	                       l_nos_wf_process_inserted,
	                       l_nos_wf_process_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;
Line: 4285

    SELECT item_key
      FROM pa_wf_processes
     WHERE entity_key1  = TO_CHAR(p_project_id)
       AND entity_key2  = x_entity_key
       AND wf_type_code = p_wf_type_code
       AND item_type    = p_item_type;
Line: 4295

    l_nos_wf_process_inserted           NUMBER ;
Line: 4296

    l_nos_wf_process_deleted            NUMBER ;
Line: 4312

    l_nos_wf_process_inserted           := 0;
Line: 4313

    l_nos_wf_process_deleted            := 0;
Line: 4322

/* If archive flag is YES, archiving of data needs to be done. Insert data into correspodning AR tables */

       IF p_archive_flag='Y' THEN

          Pa_Debug.DEBUG('Inserting Records into pa_wf_processes_AR table  ') ;
Line: 4327

          x_err_stage := 'Inserting Records into pa_wf_processes_AR table for item key '||l_item_key ;
Line: 4329

          INSERT INTO pa_wf_processes_ar
               (purge_batch_id,
                purge_release,
                purge_project_id,
                wf_type_code,
                item_type,
                item_key,
                entity_key1,
                entity_key2,
                description,
                last_updated_by,
                last_update_date,
                creation_date,
                created_by,
                last_update_login)
          SELECT  p_purge_batch_id,
                  p_purge_release,
                  p_project_id,
                  wf_type_code,
                  item_type,
                  item_key,
                  entity_key1,
                  entity_key2,
                  description,
                  last_updated_by,
                  last_update_date,
                  creation_date,
                  created_by,
                  last_update_login
             FROM pa_wf_processes
            WHERE entity_key1  = TO_CHAR(p_project_id)
              AND entity_key2  = p_entity_key2
              AND wf_type_code = p_wf_type_code
              AND item_type    = p_item_type;
Line: 4364

 /*Increase the value of l_nos_wf_process_inserted to indicate number of records inserted in pa_wf_processes_ar table.
  The value will increase for each loop(item_key)*/
            l_nos_wf_process_inserted := l_nos_wf_process_inserted + SQL%ROWCOUNT;
Line: 4371

/* To keep the count of no of records deleted from pa_wf_processes manipulate the count of l_nos_wf_process_deleted. */

       Pa_Debug.DEBUG('Deleting Records from  pa_wf_processes table  ') ;
Line: 4377

       DELETE pa_wf_processes
        WHERE entity_key1  = TO_CHAR(p_project_id)
          AND entity_key2  = p_entity_key2
          AND wf_type_code = p_wf_type_code
          AND item_type    = p_item_type;
Line: 4383

       l_nos_wf_process_deleted := l_nos_wf_process_deleted + SQL%ROWCOUNT;
Line: 4408

  /*After "deleting" or "deleting and inserting" a set of records the transaction is commited.
    This also creates a record in the Pa_Purge_Project_details, which will show the no. of
    records that are purged from each table.The procedure is called once for pa_wf_processes tables */

       	Pa_Purge.CommitProcess(p_purge_batch_id,
	                       p_project_id,
	                       'PA_WF_PROCESSES',
	                       l_nos_wf_process_inserted,
	                       l_nos_wf_process_deleted,
	                       x_err_code,
	                       x_err_stack,
	                       x_err_stage
	                       ) ;