DBA Data[Home] [Help]

APPS.PA_PLAN_MATRIX SQL Statements

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

Line: 50

               PA_DEBUG.g_err_stage := 'Entering Get_Period_Info and selecting ' ||
               'min dates from budget lines';
Line: 71

        SELECT  min(pa_bdgt.start_date),
                max(pa_bdgt.start_date)
        INTO    l_min_pa_bdgt_st_dt,
                l_max_pa_bdgt_st_dt
        FROM pa_budget_lines pa_bdgt
        WHERE pa_bdgt.resource_assignment_id = l_resource_assignment_id
        AND pa_bdgt.TXN_CURRENCY_CODE = l_transaction_currency_code
        AND pa_bdgt.bucketing_period_code IS NULL;
Line: 84

        SELECT  inr1.period_name,
                inr1.start_date,
                inr1.end_date
        INTO    x_period_name,
                x_start_date,
                x_end_date
        FROM
        (
         SELECT G.period_name,
                G.start_date,
                G.end_date
         FROM
              Gl_Periods G,
              pa_implementations_all imp ,
              pa_projects_all p,
              gl_sets_of_books sob
          WHERE
             G.start_date      < LEAST (NVL(l_min_pa_bdgt_st_dt, l_st_dt_4_st_pd), l_st_dt_4_st_pd )  AND
             p.project_id = l_project_id AND
             nvl(p.org_id,-99) = nvl(imp.org_id,-99) AND
             imp.set_of_books_id = sob.set_of_books_id AND
             G.period_set_name = imp.period_set_name AND
             G.period_type     = sob.accounted_period_type AND
             ADJUSTMENT_PERIOD_FLAG = 'N'
             ORDER BY G.Start_Date desc
         ) inr1
         WHERE  Rownum < 2;
Line: 130

        SELECT  inr1.period_name,
                inr1.start_date,
                inr1.end_date
        INTO    x_period_name,
                x_start_date,
                x_end_date
        FROM
        (
         SELECT G.period_name,
                G.start_date,
                G.end_date
          FROM
               Gl_Periods G,
               pa_implementations_all imp ,
               pa_projects_all p
           WHERE
             G.start_date      < LEAST (NVL(l_min_pa_bdgt_st_dt, l_st_dt_4_st_pd), l_st_dt_4_st_pd )  AND
             p.project_id = l_project_id AND
             nvl(p.org_id,-99) = nvl(imp.org_id,-99) AND
             G.period_set_name = imp.period_set_name AND
             G.period_type     = imp.pa_period_type AND
             ADJUSTMENT_PERIOD_FLAG = 'N'
             ORDER BY G.Start_Date desc
         ) inr1
         WHERE  Rownum < 2;
Line: 176

         SELECT G.period_name,
                G.start_date,
                G.end_date
         INTO   x_period_name,
                x_start_date,
                x_end_date
         FROM
               Gl_Periods G,
               pa_implementations_all imp ,
               pa_projects_all p ,
               gl_sets_of_books sob
           WHERE
              G.start_date      >  GREATEST (NVL(l_max_pa_bdgt_st_dt, l_st_dt_4_end_pd) , l_st_dt_4_end_pd ) AND
              p.project_id = l_project_id AND
              nvl(p.org_id,-99) = nvl(imp.org_id,-99) AND
              imp.set_of_books_id = sob.set_of_books_id AND
              G.period_set_name = imp.period_set_name AND
              G.period_type     = sob.accounted_period_type AND
              ADJUSTMENT_PERIOD_FLAG = 'N' AND
              Rownum < 2
              ORDER BY G.Start_Date;
Line: 216

         SELECT G.period_name,
                G.start_date,
                G.end_date
         INTO   x_period_name,
                x_start_date,
                x_end_date
         FROM
               Gl_Periods G,
               pa_implementations_all imp ,
               pa_projects_all p
           WHERE
              G.start_date      >  GREATEST (NVL(l_max_pa_bdgt_st_dt, l_st_dt_4_end_pd) , l_st_dt_4_end_pd ) AND
              p.project_id = l_project_id AND
              nvl(p.org_id,-99) = nvl(imp.org_id,-99) AND
              G.period_set_name = imp.period_set_name AND
              G.period_type     = imp.pa_period_type AND
              ADJUSTMENT_PERIOD_FLAG = 'N' AND
              Rownum < 2
              ORDER BY G.Start_Date;
Line: 287

       l_last_updated_by   NUMBER := FND_GLOBAL.USER_ID;
Line: 290

       l_last_update_date  DATE := l_creation_date;
Line: 291

       l_last_update_login      NUMBER := FND_GLOBAL.LOGIN_ID;
Line: 342

    SELECT DISTINCT Resource_Assignment_Id,
                    Source_Txn_Currency_Code
    FROM Pa_Fin_Plan_Lines_Tmp;
Line: 352

               PA_DEBUG.g_err_stage := 'Entering Populate_Budget_Lines and selecting ' ||
               'cost/revenue values from budget lines';
Line: 400

       SELECT NVL(version_type,'ALL') INTO
       l_version_type FROM pa_budget_versions
       where budget_version_id = p_budget_version_id;
Line: 442

          /* FPB2: MRC No changes done as no amount columns are being updated.
                   DO NOT ADD ANY AMOUNT COLUMNS TO THIS UPDATE. ELSE MAKE CALL TO MRC !!!!
          */
          UPDATE Pa_Budget_Lines
          SET Bucketing_Period_Code = NULL
          WHERE  Pa_Budget_Lines.resource_assignment_id = main_cur_rec.resource_assignment_id
          AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
          AND ( Pa_Budget_Lines.Bucketing_period_code = 'PE'       -- Bug 2810094. update the SE records where
                OR                                                 -- start_date < period profile start period start date
                (Pa_Budget_Lines.Bucketing_period_code = 'SE' AND  -- with bucketing period code as null
                 Pa_Budget_Lines.start_date < p_st_dt_4_st_pd
                )
              );
Line: 484

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code,
                        quantity
            INTO        l_prec_txn_raw_cost,
                        l_prec_txn_burdened_cost,
                        l_prec_txn_revenue,
                        l_prec_txn_curr_code,
                        l_prec_txn_quantity
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'TRANSACTION'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code;
Line: 510

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code
            INTO        l_prec_proj_raw_cost,
                        l_prec_proj_burdened_cost,
                        l_prec_proj_revenue,
                        l_prec_proj_curr_code
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'PROJECT'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code ;
Line: 533

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code
            INTO        l_prec_func_raw_cost,
                        l_prec_func_burdened_cost,
                        l_prec_func_revenue,
                        l_prec_func_curr_code
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'PROJ_FUNCTIONAL'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code;
Line: 558

                 UPDATE Pa_Budget_Lines
                 SET
                 Period_Name            = l_bdgt_prec_per_name,
                 Start_Date             = l_bdgt_prec_per_st_dt,
                 End_Date               = l_bdgt_prec_per_end_dt,
             --  Quantity               = l_prec_txn_quantity,
             --  Raw_cost               = l_prec_func_raw_cost,
             --  Burdened_cost          = l_prec_func_burdened_cost,
             --  Revenue                = l_prec_func_revenue,
             --  Txn_Raw_cost           = l_prec_txn_raw_cost,
             --  Txn_Burdened_cost      = l_prec_txn_burdened_cost,
             --  Txn_Revenue            = l_prec_txn_revenue,
             --  Project_Raw_cost       = l_prec_proj_raw_cost,
             --  Project_Burdened_cost  = l_prec_proj_burdened_cost,
             --  Project_Revenue        = l_prec_proj_revenue,
                 LAST_UPDATE_LOGIN      = l_last_update_login,
                 LAST_UPDATED_BY        = l_last_updated_by,
                 LAST_UPDATE_DATE       = l_last_update_date
                 WHERE  resource_assignment_id = main_cur_rec.resource_assignment_id
                 AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
                 AND Pa_Budget_Lines.bucketing_period_code = l_bucketing_period_code
                 AND budget_version_id = l_budget_version_id
                 returning budget_line_id into l_budget_line_id; /* FPB2: MRC */
Line: 584

                 select pa_budget_lines_s.nextval
                 into   l_budget_line_id
                 from   dual;
Line: 588

                 INSERT INTO PA_BUDGET_LINES
                                (budget_line_id, /* FPB2 */
                                 budget_version_id, /* FPB2 */
                                 Resource_Assignment_Id,
                                 Start_Date,
                                 End_Date,
                                 Period_Name,
                                 Quantity,
                                 Raw_cost,
                                 Burdened_cost ,
                                 Revenue,
                                 projfunc_currency_code,
                                 Txn_Raw_cost,
                                 Txn_Burdened_cost,
                                 Txn_Revenue,
                                 txn_currency_code,
                                 Project_Raw_cost,
                                 Project_Burdened_cost,
                                 Project_Revenue,
                                 project_currency_code,
                                 bucketing_period_code,
                                 CREATION_DATE ,
                                 CREATED_BY ,
                                 LAST_UPDATE_LOGIN ,
                                 LAST_UPDATED_BY ,
                                 LAST_UPDATE_DATE,
                                 RAW_COST_SOURCE,
                                 BURDENED_COST_SOURCE,
                                 QUANTITY_SOURCE,
                                 REVENUE_SOURCE)
                 VALUES         (l_budget_line_id,       /* FPB2 */
                                 l_budget_version_id,    /* FPB2 */
                                 main_cur_rec.resource_assignment_id,
                                 l_bdgt_prec_per_st_dt,
                                 l_bdgt_prec_per_end_dt,
                                 l_bdgt_prec_per_name,
                                 l_prec_txn_quantity,
                                 l_prec_func_raw_cost ,
                                 l_prec_func_burdened_cost ,
                                 l_prec_func_revenue,
                                 l_prec_func_curr_code,
                                 l_prec_txn_raw_cost,
                                 l_prec_txn_burdened_cost ,
                                 l_prec_txn_revenue ,
                                 l_prec_txn_curr_code,
                                 l_prec_proj_raw_cost ,
                                 l_prec_proj_burdened_cost,
                                 l_prec_proj_revenue ,
                                 l_prec_proj_curr_code,
                                 l_bucketing_period_code,
                                 l_creation_date ,
                                 l_created_by ,
                                 l_last_update_login ,
                                 l_last_updated_by ,
                                 l_last_update_date,
                                 l_raw_cost_source,
                                 l_bd_cost_source,
                                 l_qty_source,
                                 l_rev_source );
Line: 663

                                          p_action         => PA_MRC_FINPLAN.G_ACTION_INSERT,
                                          x_return_status  => x_return_status,
                                          x_msg_count      => x_msg_count,
                                          x_msg_data       => x_msg_data);
Line: 681

                          PA_DEBUG.g_err_stage := 'EXCEPTION while trying to insert ' ||
                          'PD data in budget lines table';
Line: 696

        /* FPB2 : MRC DO NOT ADD AMOUNT COLUMNS TO THE UPDATE OR CONSIDER MRC IMPACT !!! */

                   UPDATE Pa_Budget_Lines
                   SET Bucketing_Period_Code = 'PE'
                   WHERE Pa_Budget_Lines.START_DATE < l_st_dt_4_st_pd
                   AND  Pa_Budget_Lines.resource_assignment_id = main_cur_rec.resource_assignment_id
                   AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
                   AND Pa_Budget_Lines.Bucketing_period_code IS NULL;
Line: 713

   /* FPB2 : Please note that if the following update is modified to udpate
      amount columns MRC api call needs to be made appropirately */

          UPDATE Pa_Budget_Lines
          SET Bucketing_Period_Code = NULL
          WHERE  Pa_Budget_Lines.resource_assignment_id = main_cur_rec.resource_assignment_id
          AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
          AND ( Pa_Budget_Lines.Bucketing_period_code = 'SE'          -- Bug 2810094. update the PE records where
                OR                                                    -- start_date > period profile end period start date
                (                                                     -- with bucketing period code as null
                    Pa_Budget_Lines.Bucketing_period_code = 'PE'
                    AND Pa_Budget_Lines.Start_Date > l_st_dt_4_end_pd
                )
               );
Line: 757

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code,
                        quantity
            INTO        l_succ_txn_raw_cost,
                        l_succ_txn_burdened_cost,
                        l_succ_txn_revenue,
                        l_succ_txn_curr_code,
                        l_succ_txn_quantity
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'TRANSACTION'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code;
Line: 783

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code
            INTO        l_succ_proj_raw_cost,
                        l_succ_proj_burdened_cost,
                        l_succ_proj_revenue,
                        l_succ_proj_curr_code
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'PROJECT'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code;
Line: 806

            SELECT      raw_cost,
                        burdened_cost,
                        revenue,
                        currency_code
            INTO        l_succ_func_raw_cost,
                        l_succ_func_burdened_cost,
                        l_succ_func_revenue,
                        l_succ_func_curr_code
            FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = l_bucketing_period_code
            AND resource_assignment_id = main_cur_rec.resource_assignment_id
            AND currency_type = 'PROJ_FUNCTIONAL'
            AND source_txn_currency_code = main_cur_rec.source_txn_currency_code;
Line: 831

           UPDATE Pa_Budget_Lines
           SET
           Period_Name                  = l_bdgt_succ_per_name,
           Start_Date                   = l_bdgt_succ_per_st_dt,
           End_Date                     = l_bdgt_succ_per_end_dt,
       --  Quantity                     = l_succ_txn_quantity,
       --  Raw_cost                     = l_succ_func_raw_cost,
       --  Burdened_cost                = l_succ_func_burdened_cost,
       --  Revenue                      = l_succ_func_revenue,
       --  Txn_Raw_cost                 = l_succ_txn_raw_cost,
       --  Txn_Burdened_cost            = l_succ_txn_burdened_cost,
       --  Txn_Revenue                  = l_succ_txn_revenue,
       --  Project_Raw_cost             = l_succ_proj_raw_cost,
       --  Project_Burdened_cost        = l_succ_proj_burdened_cost,
       --  Project_Revenue              = l_succ_proj_revenue,
           LAST_UPDATE_LOGIN            = l_last_update_login,
           LAST_UPDATED_BY              = l_last_updated_by,
           LAST_UPDATE_DATE             = l_last_update_date
           WHERE resource_assignment_id = main_cur_rec.resource_assignment_id
           AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
           AND Pa_Budget_Lines.bucketing_period_code = l_bucketing_period_code
           AND budget_version_id = l_budget_version_id
           returning budget_line_id into l_budget_line_id;
Line: 872

                                  p_action         => PA_MRC_FINPLAN.G_ACTION_UPDATE,
                                  x_return_status  => x_return_status,
                                  x_msg_count      => x_msg_count,
                                  x_msg_data       => x_msg_data);
Line: 884

          select pa_budget_lines_s.nextval
          into   l_budget_line_id
          from   dual;
Line: 888

      INSERT INTO PA_BUDGET_LINES
                        (Budget_Line_id,    /* FPB2 */
                         Budget_Version_id, /* FPB2 */
                         Resource_Assignment_Id,
                         Start_Date,
                         End_Date,
                         Period_Name,
                         Quantity,
                         Raw_cost,
                         Burdened_cost ,
                         Revenue,
                         projfunc_currency_code,
                         Txn_Raw_cost,
                         Txn_Burdened_cost,
                         Txn_Revenue,
                         txn_currency_code,
                         Project_Raw_cost,
                         Project_Burdened_cost,
                         Project_Revenue,
                         project_currency_code,
                         bucketing_period_code,
                         CREATION_DATE ,
                         CREATED_BY ,
                         LAST_UPDATE_LOGIN ,
                         LAST_UPDATED_BY ,
                         LAST_UPDATE_DATE,
                         RAW_COST_SOURCE,
                         BURDENED_COST_SOURCE,
                         QUANTITY_SOURCE,
                         REVENUE_SOURCE)
      VALUES            (l_budget_line_id,                 /* FPB2 */
                         l_budget_version_id,              /* FPB2 */
                         main_cur_rec.resource_assignment_id,
                         l_bdgt_succ_per_st_dt,
                         l_bdgt_succ_per_end_dt,
                         l_bdgt_succ_per_name,
                         l_succ_txn_quantity,
                         l_succ_func_raw_cost ,
                         l_succ_func_burdened_cost ,
                         l_succ_func_revenue,
                         l_succ_func_curr_code,
                         l_succ_txn_raw_cost,
                         l_succ_txn_burdened_cost ,
                         l_succ_txn_revenue ,
                         l_succ_txn_curr_code,
                         l_succ_proj_raw_cost ,
                         l_succ_proj_burdened_cost,
                         l_succ_proj_revenue ,
                         l_succ_proj_curr_code,
                         l_bucketing_period_code,
                         l_creation_date ,
                         l_created_by ,
                         l_last_update_login ,
                         l_last_updated_by ,
                         l_last_update_date,
                         l_raw_cost_source,
                         l_bd_cost_source,
                         l_qty_source,
                         l_rev_source );
Line: 963

                                          p_action         => PA_MRC_FINPLAN.G_ACTION_INSERT,
                                          x_return_status  => x_return_status,
                                          x_msg_count      => x_msg_count,
                                          x_msg_data       => x_msg_data);
Line: 981

                  PA_DEBUG.g_err_stage := 'Exception while trying to insert ' ||
                  'SD data in budget lines table';
Line: 997

          UPDATE Pa_Budget_Lines
          SET Bucketing_Period_Code = 'SE'
          WHERE Pa_Budget_Lines.START_DATE > l_st_dt_4_end_pd
          AND Pa_Budget_Lines.resource_assignment_id = main_cur_rec.resource_assignment_id
          AND Pa_Budget_Lines.TXN_CURRENCY_CODE = main_cur_rec.source_txn_currency_code
          AND Pa_Budget_Lines.Bucketing_period_code IS NULL;
Line: 1294

  l_quantity_filter_flag VARCHAR2(1); -- to filter and not insert/update anything for quantity and
Line: 1379

  SELECT DISTINCT Resource_Assignment_Id,
                  Object_Id,
                  Object_Type_Code,
                  Currency_Type,
                  Currency_Code,
                  Source_Txn_Currency_Code
         FROM
   Pa_Fin_Plan_Lines_Tmp;
Line: 1397

    SELECT Period_Name,
           Start_Date,
           Quantity,
           Raw_Cost,
           Burdened_Cost,
           Revenue,
           Old_Quantity,
           Old_Raw_Cost,
           Old_Burdened_Cost,
           Old_Revenue,
           Borrowed_Revenue,
           Tp_Revenue_In,
           Tp_Revenue_Out,
           Revenue_Adj,
           Lent_Resource_Cost,
           Tp_Cost_In,
           Tp_Cost_Out,
           Cost_Adj,
           Unassigned_Time_Cost,
           Utilization_Percent,
           Utilization_Adj,
           Utilization_Hours,
           Capacity,
           Head_Count,
           Head_Count_Adj,
           Margin,
           Margin_Percentage,
           Bucketing_Period_Code,       -- added this column in the cursor
           Parent_Assignment_Id,        -- added this column in the cursor
           NVL(Delete_Flag,'N')         -- added this column in the cursor
    FROM  Pa_Fin_Plan_Lines_Tmp
    WHERE Resource_Assignment_Id = c_resource_assignment_id AND
          Object_Id              = c_object_id              AND
          Object_Type_Code       = c_object_type_code       AND
          Currency_Type          = c_currency_type          AND
          Currency_Code          = c_currency_code          AND
          Source_Txn_Currency_Code = c_source_txn_currency_code AND
          Start_Date             BETWEEN c_start_date       AND
                                         c_end_date         AND
          (Bucketing_Period_Code IS NULL  OR
               (p_calling_module = 'FINANCIAL_PLANNING' AND
                Bucketing_Period_Code IN ('PE','SE')));  -- Bug 2789114
Line: 1481

  l_last_updated_by   NUMBER := FND_GLOBAL.USER_ID;
Line: 1484

  l_last_update_date  DATE := l_creation_date;
Line: 1485

  l_last_update_login      NUMBER := FND_GLOBAL.LOGIN_ID;
Line: 1493

    l_delete_flag_tab                   PA_PLSQL_DATATYPES.Char30TabTyp;        --added this Table
Line: 1503

         So the logic is coded as a single select and using multiple IFs  - SManivannan  */
    x_return_status := FND_API.G_RET_STS_SUCCESS;
Line: 1507

            PA_DEBUG.g_err_stage := 'Entering Main Plan Matrix and selecting prj profile';
Line: 1512

       SELECT
           number_of_periods,
           period_name1,
           period_name2,
           period_name3,
           period_name4,
           period_name5,
           period_name6,
           period_name7,
           period_name8,
           period_name9,
           period_name10,
           period_name11,
           period_name12,
           period_name13,
           period_name14,
           period_name15,
           period_name16,
           period_name17,
           period_name18,
           period_name19,
           period_name20,
           period_name21,
           period_name22,
           period_name23,
           period_name24,
           period_name25,
           period_name26,
           period_name27,
           period_name28,
           period_name29,
           period_name30,
           period_name31,
           period_name32,
           period_name33,
           period_name34,
           period_name35,
           period_name36,
           period_name37,
           period_name38,
           period_name39,
           period_name40,
           period_name41,
           period_name42,
           period_name43,
           period_name44,
           period_name45,
           period_name46,
           period_name47,
           period_name48,
           period_name49,
           period_name50,
           period_name51,
           period_name52,
           period1_start_date,
           period2_start_date,
           period3_start_date,
           period4_start_date,
           period5_start_date,
           period6_start_date,
           period7_start_date,
           period8_start_date,
           period9_start_date,
           period10_start_date,
           period11_start_date,
           period12_start_date,
           period13_start_date,
           period14_start_date,
           period15_start_date,
           period16_start_date,
           period17_start_date,
           period18_start_date,
           period19_start_date,
           period20_start_date,
           period21_start_date,
           period22_start_date,
           period23_start_date,
           period24_start_date,
           period25_start_date,
           period26_start_date,
           period27_start_date,
           period28_start_date,
           period29_start_date,
           period30_start_date,
           period31_start_date,
           period32_start_date,
           period33_start_date,
           period34_start_date,
           period35_start_date,
           period36_start_date,
           period37_start_date,
           period38_start_date,
           period39_start_date,
           period40_start_date,
           period41_start_date,
           period42_start_date,
           period43_start_date,
           period44_start_date,
           period45_start_date,
           period46_start_date,
           period47_start_date,
           period48_start_date,
           period49_start_date,
           period50_start_date,
           period51_start_date,
           period52_start_date     INTO
           l_number_of_periods,
           l_period_name1,
           l_period_name2,
           l_period_name3,
           l_period_name4,
           l_period_name5,
           l_period_name6,
           l_period_name7,
           l_period_name8,
           l_period_name9,
           l_period_name10,
           l_period_name11,
           l_period_name12,
           l_period_name13,
           l_period_name14,
           l_period_name15,
           l_period_name16,
           l_period_name17,
           l_period_name18,
           l_period_name19,
           l_period_name20,
           l_period_name21,
           l_period_name22,
           l_period_name23,
           l_period_name24,
           l_period_name25,
           l_period_name26,
           l_period_name27,
           l_period_name28,
           l_period_name29,
           l_period_name30,
           l_period_name31,
           l_period_name32,
           l_period_name33,
           l_period_name34,
           l_period_name35,
           l_period_name36,
           l_period_name37,
           l_period_name38,
           l_period_name39,
           l_period_name40,
           l_period_name41,
           l_period_name42,
           l_period_name43,
           l_period_name44,
           l_period_name45,
           l_period_name46,
           l_period_name47,
           l_period_name48,
           l_period_name49,
           l_period_name50,
           l_period_name51,
           l_period_name52,
           l_period1_start_date,
           l_period2_start_date,
           l_period3_start_date,
           l_period4_start_date,
           l_period5_start_date,
           l_period6_start_date,
           l_period7_start_date,
           l_period8_start_date,
           l_period9_start_date,
           l_period10_start_date,
           l_period11_start_date,
           l_period12_start_date,
           l_period13_start_date,
           l_period14_start_date,
           l_period15_start_date,
           l_period16_start_date,
           l_period17_start_date,
           l_period18_start_date,
           l_period19_start_date,
           l_period20_start_date,
           l_period21_start_date,
           l_period22_start_date,
           l_period23_start_date,
           l_period24_start_date,
           l_period25_start_date,
           l_period26_start_date,
           l_period27_start_date,
           l_period28_start_date,
           l_period29_start_date,
           l_period30_start_date,
           l_period31_start_date,
           l_period32_start_date,
           l_period33_start_date,
           l_period34_start_date,
           l_period35_start_date,
           l_period36_start_date,
           l_period37_start_date,
           l_period38_start_date,
           l_period39_start_date,
           l_period40_start_date,
           l_period41_start_date,
           l_period42_start_date,
           l_period43_start_date,
           l_period44_start_date,
           l_period45_start_date,
           l_period46_start_date,
           l_period47_start_date,
           l_period48_start_date,
           l_period49_start_date,
           l_period50_start_date,
           l_period51_start_date,
           l_period52_start_date
        from
       pa_proj_period_profiles where
       period_profile_id = p_period_profile_id;
Line: 1743

           PA_DEBUG.g_err_stage := 'After selecting prj profile';
Line: 1758

   l_pd_name_map_tab.delete;
Line: 1759

   l_st_date_map_tab.delete;
Line: 2181

          SELECT pa_prof.Plan_Period_Type
          INTO l_plan_period_type
          FROM Pa_Proj_Period_Profiles pa_prof
          WHERE pa_prof.period_profile_id = p_period_profile_id;
Line: 2196

        SELECT  min(pfpltmp.start_date),
                max(pfpltmp.start_date)
        INTO    l_min_pa_fp_ln_tmp_st_dt,
                l_max_pa_fp_ln_tmp_st_dt
        FROM pa_fin_plan_lines_tmp pfpltmp;
Line: 2203

           SELECT project_currency_code,
                  projfunc_currency_code
           INTO   l_project_currency_code,
                  l_projfunc_currency_code
           FROM pa_projects_all
           WHERE project_id = l_project_id;
Line: 2212

   SELECT count(*) into l_count_for_pop_call FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = 'PD';
Line: 2269

    SELECT count(*) into l_count_for_pop_call FROM PA_FIN_PLAN_LINES_TMP
            WHERE bucketing_period_code = 'SD';
Line: 2369

           l_delete_flag_tab;                   --added this column
Line: 2428

     SELECT SUM(NVL(bl.Raw_Cost,0)),
            SUM(NVL(bl.Burdened_Cost,0)),
            SUM(NVL(bl.Revenue,0)),
            SUM(NVL(bl.Quantity,0)),
            SUM(NVL(bl.Borrowed_Revenue,0)),
            SUM(NVL(bl.Tp_Revenue_In,0)),
            SUM(NVL(bl.Tp_Revenue_Out,0)),
            SUM(NVL(bl.Revenue_Adj,0)),
            SUM(NVL(bl.Lent_Resource_Cost,0)),
            SUM(NVL(bl.Tp_Cost_In,0)),
            SUM(NVL(bl.Tp_Cost_Out,0)),
            SUM(NVL(bl.Cost_Adj,0)),
            SUM(NVL(bl.Unassigned_Time_Cost,0)),
            SUM(NVL(bl.Utilization_Percent,0)),
            SUM(NVL(bl.Utilization_Adj,0)),
            SUM(NVL(bl.Utilization_Hours,0)),
            SUM(NVL(bl.Capacity,0)),
            SUM(NVL(bl.Head_Count,0)),
            SUM(NVL(bl.Head_Count_Adj,0)),
            SUM(NVL(bl.Margin,0)),
            SUM(NVL(bl.Margin_Percentage,0))  INTO
                l_prev_raw_cost,
                l_prev_burd_cost,
                l_prev_revenue,
                l_prev_quantity,
                l_prev_borr_revenue,
                l_prev_cc_rev_in,
                l_prev_cc_rev_out,
                l_prev_rev_adj,
                l_prev_lent_res_cost,
                l_prev_cc_cost_in,
                l_prev_cc_cost_out,
                l_prev_cost_adj,
                l_prev_unasg_time_cost,
                l_prev_util_per,
                l_prev_util_adj,
                l_prev_util_hrs,
                l_prev_capacity,
                l_prev_head_count,
                l_prev_head_count_adj,
                l_prev_margin,
                l_prev_margin_perc
         FROM
         Pa_Fin_Plan_Lines_Tmp bl WHERE
            bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
            bl.Object_Type_Code       = main_cur_rec.object_type_code       AND
            bl.Object_Id              = main_cur_rec.object_id              AND
            bl.Currency_Type          = main_cur_rec.currency_type         AND
            bl.Currency_Code          = main_cur_rec.currency_code          AND
            bl.start_date < l_st_dt_4_st_pd;
Line: 2479

         SELECT SUM(NVL(bl.Raw_Cost,0)),
            SUM(NVL(bl.Burdened_Cost,0)),
            SUM(NVL(bl.Revenue,0)),
            SUM(NVL(bl.Quantity,0)),
            SUM(NVL(bl.Borrowed_Revenue,0)),
            SUM(NVL(bl.Tp_Revenue_In,0)),
            SUM(NVL(bl.Tp_Revenue_Out,0)),
            SUM(NVL(bl.Revenue_Adj,0)),
            SUM(NVL(bl.Lent_Resource_Cost,0)),
            SUM(NVL(bl.Tp_Cost_In,0)),
            SUM(NVL(bl.Tp_Cost_Out,0)),
            SUM(NVL(bl.Cost_Adj,0)),
            SUM(NVL(bl.Unassigned_Time_Cost,0)),
            SUM(NVL(bl.Utilization_Percent,0)),
            SUM(NVL(bl.Utilization_Adj,0)),
            SUM(NVL(bl.Utilization_Hours,0)),
            SUM(NVL(bl.Capacity,0)),
            SUM(NVL(bl.Head_Count,0)),
            SUM(NVL(bl.Head_Count_Adj,0)),
            SUM(NVL(bl.Margin,0)),
            SUM(NVL(bl.Margin_Percentage,0))  INTO
                l_next_raw_cost,
                l_next_burd_cost,
                l_next_revenue,
                l_next_quantity,
                l_next_borr_revenue,
                l_next_cc_rev_in,
                l_next_cc_rev_out,
                l_next_rev_adj,
                l_next_lent_res_cost,
                l_next_cc_cost_in,
                l_next_cc_cost_out,
                l_next_cost_adj,
                l_next_unasg_time_cost,
                l_next_util_per,
                l_next_util_adj,
                l_next_util_hrs,
                l_next_capacity,
                l_next_head_count,
                l_next_head_count_adj,
                l_prev_margin,
                l_prev_margin_perc FROM
         Pa_Fin_Plan_Lines_Tmp bl WHERE
            bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
            bl.Object_Type_Code       = main_cur_rec.object_type_code       AND
            bl.Object_Id              = main_cur_rec.object_id              AND
            bl.Currency_Type          = main_cur_rec.currency_type AND
            bl.Currency_Code          = main_cur_rec.currency_code AND
            bl.Start_Date > l_st_dt_4_end_pd;
Line: 2533

     SELECT      SUM(NVL(bl.Txn_Raw_Cost,0)),
                 SUM(NVL(bl.Txn_Burdened_Cost,0)),
                 SUM(NVL(bl.Txn_Revenue,0)),
                 SUM(NVL(bl.Quantity,0))
                 INTO
                     l_prev_txn_raw_cost,
                     l_prev_txn_burd_cost,
                     l_prev_txn_revenue,
                     l_prev_quantity
              FROM
              Pa_Budget_Lines bl WHERE
                 bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
                 bl.Txn_Currency_Code  = main_cur_rec.source_txn_currency_code AND
                 bl.bucketing_period_code in ('PE','PD')
                 AND budget_version_id = p_budget_version_id;
Line: 2552

      SELECT     SUM(NVL(bl.Raw_Cost,0)),
                 SUM(NVL(bl.Burdened_Cost,0)),
                 SUM(NVL(bl.Revenue,0)),
                 SUM(NVL(bl.Project_Raw_Cost,0)),
                 SUM(NVL(bl.Project_Burdened_Cost,0)),
                 SUM(NVL(bl.Project_Revenue,0))
                 INTO
                   l_prev_raw_cost,
                   l_prev_burd_cost,
                   l_prev_revenue,
                   l_prev_proj_raw_cost,
                   l_prev_proj_burd_cost,
                   l_prev_proj_revenue
                    FROM
                    Pa_Budget_Lines bl WHERE
                       bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
                       bl.bucketing_period_code in ('PE','PD')
                       AND budget_version_id = p_budget_version_id;
Line: 2573

      SELECT     SUM(NVL(bl.Txn_Raw_Cost,0)),
                 SUM(NVL(bl.Txn_Burdened_Cost,0)),
                 SUM(NVL(bl.Txn_Revenue,0)),
                 SUM(NVL(bl.Quantity,0))
                 INTO
                     l_next_txn_raw_cost,
                     l_next_txn_burd_cost,
                     l_next_txn_revenue,
                     l_next_quantity
                 FROM
                 Pa_Budget_Lines bl WHERE
                 bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
                 bl.Txn_Currency_Code  = main_cur_rec.source_txn_currency_code AND
                 bl.bucketing_period_code in ('SE','SD')
                 AND budget_version_id = p_budget_version_id;
Line: 2591

       SELECT     SUM(NVL(bl.Raw_Cost,0)),
                  SUM(NVL(bl.Burdened_Cost,0)),
                  SUM(NVL(bl.Revenue,0)),
                  SUM(NVL(bl.Project_Raw_Cost,0)),
                  SUM(NVL(bl.Project_Burdened_Cost,0)),
                  SUM(NVL(bl.Project_Revenue,0))
                INTO
                    l_next_raw_cost,
                    l_next_burd_cost,
                    l_next_revenue,
                    l_next_proj_raw_cost,
                    l_next_proj_burd_cost,
                    l_next_proj_revenue
                     FROM
                     Pa_Budget_Lines bl WHERE
                        bl.Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
                        bl.bucketing_period_code in ('SE','SD')
                        AND budget_version_id = p_budget_version_id;
Line: 2790

                 SELECT P.Prior_Period_Amount
                 INTO
                    l_prior_amt FROM
                    Pa_Fp_Prior_Periods_Tmp P
                 WHERE
                    Resource_Assignment_Id = main_cur_rec.resource_assignment_id AND
                    Object_Id              = main_cur_rec.object_id AND
                    Object_Type_Code       = main_cur_rec.object_type_code AND
                    Amount_Type_Code       = l_amt_type_code AND
                    Amount_Subtype_Code    = l_amt_subtype_code AND
                    Currency_Type          = l_currency_type    AND
                    Currency_Code          = l_currency_code;
Line: 2815

  SELECT Period_Amount1,
         Period_Amount2,
         Period_Amount3,
         Period_Amount4,
         Period_Amount5,
         Period_Amount6,
         Period_Amount7,
         Period_Amount8,
         Period_Amount9,
         Period_Amount10,
         Period_Amount11,
         Period_Amount12,
         Period_Amount13,
         Period_Amount14,
         Period_Amount15,
         Period_Amount16,
         Period_Amount17,
         Period_Amount18,
         Period_Amount19,
         Period_Amount20,
         Period_Amount21,
         Period_Amount22,
         Period_Amount23,
         Period_Amount24,
         Period_Amount25,
         Period_Amount26,
         Period_Amount27,
         Period_Amount28,
         Period_Amount29,
         Period_Amount30,
         Period_Amount31,
         Period_Amount32,
         Period_Amount33,
         Period_Amount34,
         Period_Amount35,
         Period_Amount36,
         Period_Amount37,
         Period_Amount38,
         Period_Amount39,
         Period_Amount40,
         Period_Amount41,
         Period_Amount42,
         Period_Amount43,
         Period_Amount44,
         Period_Amount45,
         Period_Amount46,
         Period_Amount47,
         Period_Amount48,
         Period_Amount49,
         Period_Amount50,
         Period_Amount51,
         Period_Amount52,
         Parent_Assignment_id
      INTO  l_pd_amt1 ,
            l_pd_amt2 ,
            l_pd_amt3 ,
            l_pd_amt4 ,
            l_pd_amt5 ,
            l_pd_amt6 ,
            l_pd_amt7 ,
            l_pd_amt8 ,
            l_pd_amt9 ,
            l_pd_amt10 ,
            l_pd_amt11 ,
            l_pd_amt12 ,
            l_pd_amt13 ,
            l_pd_amt14 ,
            l_pd_amt15 ,
            l_pd_amt16 ,
            l_pd_amt17 ,
            l_pd_amt18 ,
            l_pd_amt19 ,
            l_pd_amt20 ,
            l_pd_amt21 ,
            l_pd_amt22 ,
            l_pd_amt23 ,
            l_pd_amt24 ,
            l_pd_amt25 ,
            l_pd_amt26 ,
            l_pd_amt27 ,
            l_pd_amt28 ,
            l_pd_amt29 ,
            l_pd_amt30 ,
            l_pd_amt31 ,
            l_pd_amt32 ,
            l_pd_amt33 ,
            l_pd_amt34 ,
            l_pd_amt35 ,
            l_pd_amt36 ,
            l_pd_amt37 ,
            l_pd_amt38 ,
            l_pd_amt39 ,
            l_pd_amt40 ,
            l_pd_amt41 ,
            l_pd_amt42 ,
            l_pd_amt43 ,
            l_pd_amt44 ,
            l_pd_amt45 ,
            l_pd_amt46 ,
            l_pd_amt47 ,
            l_pd_amt48 ,
            l_pd_amt49 ,
            l_pd_amt50 ,
            l_pd_amt51 ,
            l_pd_amt52,
            l_parent_assignment_id
 FROM pa_proj_periods_denorm
        WHERE period_profile_id = p_period_profile_id AND
                Budget_Version_Id      = p_budget_version_id AND
                project_id = p_project_id AND
                Resource_Assignment_Id = l_res_asg_id AND
                Object_Id              = l_obj_id AND
                Object_Type_Code       = l_obj_type_code AND
                Amount_Type_Code       = l_amt_type_code AND
                Amount_Subtype_Code    = l_amt_subtype_code AND
                Currency_Type          = l_currency_type    AND
                Currency_Code          = l_currency_code;
Line: 2992

  SELECT 0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         0,
         Parent_Assignment_id
      INTO  l_pd_amt1 ,
            l_pd_amt2 ,
            l_pd_amt3 ,
            l_pd_amt4 ,
            l_pd_amt5 ,
            l_pd_amt6 ,
            l_pd_amt7 ,
            l_pd_amt8 ,
            l_pd_amt9 ,
            l_pd_amt10 ,
            l_pd_amt11 ,
            l_pd_amt12 ,
            l_pd_amt13 ,
            l_pd_amt14 ,
            l_pd_amt15 ,
            l_pd_amt16 ,
            l_pd_amt17 ,
            l_pd_amt18 ,
            l_pd_amt19 ,
            l_pd_amt20 ,
            l_pd_amt21 ,
            l_pd_amt22 ,
            l_pd_amt23 ,
            l_pd_amt24 ,
            l_pd_amt25 ,
            l_pd_amt26 ,
            l_pd_amt27 ,
            l_pd_amt28 ,
            l_pd_amt29 ,
            l_pd_amt30 ,
            l_pd_amt31 ,
            l_pd_amt32 ,
            l_pd_amt33 ,
            l_pd_amt34 ,
            l_pd_amt35 ,
            l_pd_amt36 ,
            l_pd_amt37 ,
            l_pd_amt38 ,
            l_pd_amt39 ,
            l_pd_amt40 ,
            l_pd_amt41 ,
            l_pd_amt42 ,
            l_pd_amt43 ,
            l_pd_amt44 ,
            l_pd_amt45 ,
            l_pd_amt46 ,
            l_pd_amt47 ,
            l_pd_amt48 ,
            l_pd_amt49 ,
            l_pd_amt50 ,
            l_pd_amt51 ,
            l_pd_amt52,
            l_parent_assignment_id
 FROM pa_proj_periods_denorm
        WHERE period_profile_id = p_period_profile_id AND
                Budget_Version_Id      = p_budget_version_id AND
                project_id = p_project_id AND
                Resource_Assignment_Id = l_res_asg_id AND
                Object_Id              = l_obj_id AND
                Object_Type_Code       = l_obj_type_code AND
                Amount_Type_Code       = l_amt_type_code AND
                Amount_Subtype_Code    = l_amt_subtype_code AND
                Currency_Type          = l_currency_type    AND
                Currency_Code          = l_currency_code;
Line: 3168

/* For select from proj_period_denorm based on currency type */

           /* Reason for checking Period Start Date to map Denorm table columns.
              Currently this denorm table is designed for Financial Planning and
              Organization Forecasting.

              This model will be eventually used for existing Budget model also and
              if the budget is not based on a period ( PA or GL ) then the Period Name
              will be NULL in Budget Lines Table. So checking with Period Start Date.
                  SManivannan           */

 --Added by Vijay S Gautam
           FOR l_dummy IN 1 .. l_period_name_tab.count
           LOOP
           IF (p_calling_module = 'FINANCIAL_PLANNING') THEN
              l_start_date := l_start_date_tab(l_dummy);
Line: 3186

                  IF (l_delete_flag_tab(l_dummy) = 'Y') THEN
                        l_fcst_amt   := NVL(-l_old_fcst_amt,0);
Line: 3192

                  IF (l_delete_flag_tab(l_dummy) = 'Y') THEN
                        l_fcst_amt   := NULL;
Line: 3315

      /* Earlier, it was planned that the matrix table will be deleted for the given
         budget version id and inserted again for all res asg ids. But later it has been
         decided that we have to update the matrix table, if res asg id exists, otherwise
         to insert the record. So to avoid using another 52 additional variables, the
         table is updated with the pl sql table entries. If the update count is successful,
         then all the recent pl sql table elements will be deleted.
         If this causes performancet problems, then this logic should be changed to
         include additional 52 local variables and pl sql table deletion could be
         avoided.   */

         -- Added by Vijay s Gautam

         IF (main_cur_rec.currency_type = 'TRANSACTION' OR p_calling_module = 'ORG_FORECAST') THEN
         --
           UPDATE Pa_Proj_Periods_Denorm SET
           preceding_periods_amount     = l_prev_amt,
           succeeding_periods_amount    = l_next_amt,
           prior_period_amount          = l_prior_amt,
           period_amount1  = l_pd_amt1,
           period_amount2  = l_pd_amt2,
           period_amount3  = l_pd_amt3,
           period_amount4  = l_pd_amt4,
           period_amount5  = l_pd_amt5,
           period_amount6  = l_pd_amt6,
           period_amount7  = l_pd_amt7,
           period_amount8  = l_pd_amt8,
           period_amount9  = l_pd_amt9,
           period_amount10  = l_pd_amt10,
           period_amount11  = l_pd_amt11,
           period_amount12  = l_pd_amt12,
           period_amount13  = l_pd_amt13,
           period_amount14  = l_pd_amt14,
           period_amount15  = l_pd_amt15,
           period_amount16  = l_pd_amt16,
           period_amount17  = l_pd_amt17,
           period_amount18  = l_pd_amt18,
           period_amount19  = l_pd_amt19,
           period_amount20  = l_pd_amt20,
           period_amount21  = l_pd_amt21,
           period_amount22  = l_pd_amt22,
           period_amount23  = l_pd_amt23,
           period_amount24  = l_pd_amt24,
           period_amount25  = l_pd_amt25,
           period_amount26  = l_pd_amt26,
           period_amount27  = l_pd_amt27,
           period_amount28  = l_pd_amt28,
           period_amount29  = l_pd_amt29,
           period_amount30  = l_pd_amt30,
           period_amount31  = l_pd_amt31,
           period_amount32  = l_pd_amt32,
           period_amount33  = l_pd_amt33,
           period_amount34  = l_pd_amt34,
           period_amount35  = l_pd_amt35,
           period_amount36  = l_pd_amt36,
           period_amount37  = l_pd_amt37,
           period_amount38  = l_pd_amt38,
           period_amount39  = l_pd_amt39,
           period_amount40  = l_pd_amt40,
           period_amount41  = l_pd_amt41,
           period_amount42  = l_pd_amt42,
           period_amount43  = l_pd_amt43,
           period_amount44  = l_pd_amt44,
           period_amount45  = l_pd_amt45,
           period_amount46  = l_pd_amt46,
           period_amount47  = l_pd_amt47,
           period_amount48  = l_pd_amt48,
           period_amount49  = l_pd_amt49,
           period_amount50  = l_pd_amt50,
           period_amount51  = l_pd_amt51,
           period_amount52  = l_pd_amt52,
           parent_assignment_id = DECODE(l_parent_assign_id, NULL, l_parent_assignment_id, l_parent_assign_id),
           LAST_UPDATE_LOGIN = l_last_update_login,
           LAST_UPDATED_BY   = l_last_updated_by,
           LAST_UPDATE_DATE  = l_last_update_date
           WHERE
           Budget_Version_Id      = p_budget_version_id AND
           project_id = p_project_id AND
           Resource_Assignment_Id = l_res_asg_id AND
           Object_Id              = l_obj_id AND
           Object_Type_Code       = l_obj_type_code AND
           Amount_Type_Code       = l_amt_type_code AND
           Amount_Subtype_Code    = l_amt_subtype_code AND
           Currency_Type          = l_currency_type    AND
           Currency_Code          = l_currency_code;
Line: 3401

           SELECT DECODE(l_parent_assign_id, NULL, l_parent_assignment_id, l_parent_assign_id)
           INTO l_parent_assign_id_local from DUAL;
Line: 3476

                UPDATE Pa_Proj_Periods_Denorm SET
                   preceding_periods_amount     = l_prev_amt,
                   succeeding_periods_amount    = l_next_amt,
                   prior_period_amount          = l_prior_amt,
                   period_amount1  = NVL(period_amount1,0) + l_pd_amt1,
		      period_amount2  = NVL(period_amount2,0) + l_pd_amt2,
		      period_amount3  = NVL(period_amount3,0) + l_pd_amt3,
		      period_amount4  = NVL(period_amount4,0) + l_pd_amt4,
		      period_amount5  = NVL(period_amount5,0) + l_pd_amt5,
		      period_amount6  = NVL(period_amount6,0) + l_pd_amt6,
		      period_amount7  = NVL(period_amount7,0) + l_pd_amt7,
		      period_amount8  = NVL(period_amount8,0) + l_pd_amt8,
		      period_amount9  = NVL(period_amount9,0) + l_pd_amt9,
		      period_amount10  = NVL(period_amount10,0) + l_pd_amt10,
		      period_amount11  = NVL(period_amount11,0) + l_pd_amt11,
		      period_amount12  = NVL(period_amount12,0) + l_pd_amt12,
		      period_amount13  = NVL(period_amount13,0) + l_pd_amt13,
		      period_amount14  = NVL(period_amount14,0) + l_pd_amt14,
		      period_amount15  = NVL(period_amount15,0) + l_pd_amt15,
		      period_amount16  = NVL(period_amount16,0) + l_pd_amt16,
		      period_amount17  = NVL(period_amount17,0) + l_pd_amt17,
		      period_amount18  = NVL(period_amount18,0) + l_pd_amt18,
		      period_amount19  = NVL(period_amount19,0) + l_pd_amt19,
		      period_amount20  = NVL(period_amount20,0) + l_pd_amt20,
		      period_amount21  = NVL(period_amount21,0) + l_pd_amt21,
		      period_amount22  = NVL(period_amount22,0) + l_pd_amt22,
		      period_amount23  = NVL(period_amount23,0) + l_pd_amt23,
		      period_amount24  = NVL(period_amount24,0) + l_pd_amt24,
		      period_amount25  = NVL(period_amount25,0) + l_pd_amt25,
		      period_amount26  = NVL(period_amount26,0) + l_pd_amt26,
		      period_amount27  = NVL(period_amount27,0) + l_pd_amt27,
		      period_amount28  = NVL(period_amount28,0) + l_pd_amt28,
		      period_amount29  = NVL(period_amount29,0) + l_pd_amt29,
		      period_amount30  = NVL(period_amount30,0) + l_pd_amt30,
		      period_amount31  = NVL(period_amount31,0) + l_pd_amt31,
		      period_amount32  = NVL(period_amount32,0) + l_pd_amt32,
		      period_amount33  = NVL(period_amount33,0) + l_pd_amt33,
		      period_amount34  = NVL(period_amount34,0) + l_pd_amt34,
		      period_amount35  = NVL(period_amount35,0) + l_pd_amt35,
		      period_amount36  = NVL(period_amount36,0) + l_pd_amt36,
		      period_amount37  = NVL(period_amount37,0) + l_pd_amt37,
		      period_amount38  = NVL(period_amount38,0) + l_pd_amt38,
		      period_amount39  = NVL(period_amount39,0) + l_pd_amt39,
		      period_amount40  = NVL(period_amount40,0) + l_pd_amt40,
		      period_amount41  = NVL(period_amount41,0) + l_pd_amt41,
		      period_amount42  = NVL(period_amount42,0) + l_pd_amt42,
		      period_amount43  = NVL(period_amount43,0) + l_pd_amt43,
		      period_amount44  = NVL(period_amount44,0) + l_pd_amt44,
		      period_amount45  = NVL(period_amount45,0) + l_pd_amt45,
		      period_amount46  = NVL(period_amount46,0) + l_pd_amt46,
		      period_amount47  = NVL(period_amount47,0) + l_pd_amt47,
		      period_amount48  = NVL(period_amount48,0) + l_pd_amt48,
		      period_amount49  = NVL(period_amount49,0) + l_pd_amt49,
		      period_amount50  = NVL(period_amount50,0) + l_pd_amt50,
		      period_amount51  = NVL(period_amount51,0) + l_pd_amt51,
                   period_amount52  = NVL(period_amount52,0) + l_pd_amt52,
                   parent_assignment_id = DECODE(l_parent_assign_id, NULL, l_parent_assignment_id, l_parent_assign_id),
                   LAST_UPDATE_LOGIN = l_last_update_login,
                   LAST_UPDATED_BY   = l_last_updated_by,
                   LAST_UPDATE_DATE  = l_last_update_date
                   WHERE
                   Budget_Version_Id      = p_budget_version_id AND
                   project_id = p_project_id AND
                   Resource_Assignment_Id = l_res_asg_id AND
                   Object_Id              = l_obj_id AND
                   Object_Type_Code       = l_obj_type_code AND
                   Amount_Type_Code       = l_amt_type_code AND
                   Amount_Subtype_Code    = l_amt_subtype_code AND
                   Currency_Type          = l_currency_type    AND
                   Currency_Code          = l_currency_code;
Line: 3547

           INSERT INTO  Pa_Proj_Periods_Denorm
           (    CREATION_DATE ,
                CREATED_BY ,
                LAST_UPDATE_LOGIN ,
                LAST_UPDATED_BY ,
                LAST_UPDATE_DATE ,
                Project_Id,
                Budget_Version_Id,
                Resource_Assignment_Id,
                Period_Profile_Id,
                Object_Id,
                Object_Type_Code,
                Currency_Type,
                Currency_Code,
                Amount_Type_Code,
                Amount_Subtype_Code,
                Preceding_Periods_Amount ,
                Succeeding_Periods_Amount ,
                Prior_Period_Amount,
                Period_Amount1 ,
                Period_Amount2 ,
                Period_Amount3 ,
                Period_Amount4 ,
                Period_Amount5 ,
                Period_Amount6 ,
                Period_Amount7 ,
                Period_Amount8 ,
                Period_Amount9 ,
                Period_Amount10 ,
                Period_Amount11 ,
                Period_Amount12 ,
                Period_Amount13 ,
                Period_Amount14 ,
                Period_Amount15 ,
                Period_Amount16 ,
                Period_Amount17 ,
                Period_Amount18 ,
                Period_Amount19 ,
                Period_Amount20 ,
                Period_Amount21 ,
                Period_Amount22 ,
                Period_Amount23 ,
                Period_Amount24 ,
                Period_Amount25 ,
                Period_Amount26 ,
                Period_Amount27 ,
                Period_Amount28 ,
                Period_Amount29 ,
                Period_Amount30 ,
                Period_Amount31 ,
                Period_Amount32 ,
                Period_Amount33 ,
                Period_Amount34 ,
                Period_Amount35 ,
                Period_Amount36 ,
                Period_Amount37 ,
                Period_Amount38 ,
                Period_Amount39 ,
                Period_Amount40 ,
                Period_Amount41 ,
                Period_Amount42 ,
                Period_Amount43 ,
                Period_Amount44 ,
                Period_Amount45 ,
                Period_Amount46 ,
                Period_Amount47 ,
                Period_Amount48 ,
                Period_Amount49 ,
                Period_Amount50 ,
                Period_Amount51 ,
                Period_Amount52 ,
                parent_assignment_id,
                Amount_Type_Id,
                Amount_SubType_Id )
        VALUES(
                l_creation_date ,
                l_created_by ,
                l_last_update_login ,
                l_last_updated_by ,
                l_last_update_date ,
                p_project_id,
                p_budget_version_id,
                l_res_asg_id,
                p_period_profile_id,
                l_obj_id,
                l_obj_type_code,
                l_currency_type,
                l_currency_code,
                l_amt_type_code,
                l_amt_subtype_code,
                l_prev_amt,
                l_next_amt,
                l_prior_amt,
                 l_pd_amt1,
                 l_pd_amt2,
                 l_pd_amt3,
                 l_pd_amt4,
                 l_pd_amt5,
                 l_pd_amt6,
                 l_pd_amt7,
                 l_pd_amt8,
                 l_pd_amt9,
                 l_pd_amt10,
                 l_pd_amt11,
                 l_pd_amt12,
                 l_pd_amt13,
                 l_pd_amt14,
                 l_pd_amt15,
                 l_pd_amt16,
                 l_pd_amt17,
                 l_pd_amt18,
                 l_pd_amt19,
                 l_pd_amt20,
                 l_pd_amt21,
                 l_pd_amt22,
                 l_pd_amt23,
                 l_pd_amt24,
                 l_pd_amt25,
                 l_pd_amt26,
                 l_pd_amt27,
                 l_pd_amt28,
                 l_pd_amt29,
                 l_pd_amt30,
                 l_pd_amt31,
                 l_pd_amt32,
                 l_pd_amt33,
                 l_pd_amt34,
                 l_pd_amt35,
                 l_pd_amt36,
                 l_pd_amt37,
                 l_pd_amt38,
                 l_pd_amt39,
                 l_pd_amt40,
                 l_pd_amt41,
                 l_pd_amt42,
                 l_pd_amt43,
                 l_pd_amt44,
                 l_pd_amt45,
                 l_pd_amt46,
                 l_pd_amt47,
                 l_pd_amt48,
                 l_pd_amt49,
                 l_pd_amt50,
                 l_pd_amt51,
                 l_pd_amt52,
                 DECODE(l_parent_assign_id, NULL, l_parent_assignment_id, l_parent_assign_id),
                 l_amt_type_id,
                 l_amt_subtype_id
                );
Line: 3697

             /* End if for the IF in zero row counts in update */
      EXCEPTION
        WHEN OTHERS THEN
          FND_MSG_PUB.add_exc_msg
               ( p_pkg_name       => 'PA_PLAN_MATRIX.maintain_plan_matrix'
              ,p_procedure_name => PA_DEBUG.G_Err_Stack);
Line: 3704

                  PA_DEBUG.g_err_stage := 'Exception while trying to insert ' ||
                  'data in proj denorm table';
Line: 3731

             PA_DEBUG.g_err_stage := 'bef bulk insert into pds denorm';
Line: 3736

     INSERT INTO  Pa_Proj_Periods_Denorm(
     CREATION_DATE ,
     CREATED_BY ,
     LAST_UPDATE_LOGIN ,
     LAST_UPDATED_BY ,
     LAST_UPDATE_DATE ,
     Project_Id,
     Budget_Version_Id,
     Resource_Assignment_Id,
     Period_Profile_Id,
     Object_Id,
     Object_Type_Code,
     Currency_Type,
     Currency_Code,
     Amount_Type_Code,
     Amount_Subtype_Code,
     Preceding_Periods_Amount ,
     Succeeding_Periods_Amount ,
     Prior_Period_Amount,
     Period_Amount1 ,
     Period_Amount2 ,
     Period_Amount3 ,
     Period_Amount4 ,
     Period_Amount5 ,
     Period_Amount6 ,
     Period_Amount7 ,
     Period_Amount8 ,
     Period_Amount9 ,
     Period_Amount10 ,
     Period_Amount11 ,
     Period_Amount12 ,
     Period_Amount13 ,
     Period_Amount14 ,
     Period_Amount15 ,
     Period_Amount16 ,
     Period_Amount17 ,
     Period_Amount18 ,
     Period_Amount19 ,
     Period_Amount20 ,
     Period_Amount21 ,
     Period_Amount22 ,
     Period_Amount23 ,
     Period_Amount24 ,
     Period_Amount25 ,
     Period_Amount26 ,
     Period_Amount27 ,
     Period_Amount28 ,
     Period_Amount29 ,
     Period_Amount30 ,
     Period_Amount31 ,
     Period_Amount32 ,
     Period_Amount33 ,
     Period_Amount34 ,
     Period_Amount35 ,
     Period_Amount36 ,
     Period_Amount37 ,
     Period_Amount38 ,
     Period_Amount39 ,
     Period_Amount40 ,
     Period_Amount41 ,
     Period_Amount42 ,
     Period_Amount43 ,
     Period_Amount44 ,
     Period_Amount45 ,
     Period_Amount46 ,
     Period_Amount47 ,
     Period_Amount48 ,
     Period_Amount49 ,
     Period_Amount50 ,
     Period_Amount51 ,
     Period_Amount52 ,
     Parent_Assignment_Id,
     Amount_Type_Id,
     Amount_SubType_Id )
     VALUES(
     l_creation_date ,
     l_created_by ,
     l_last_update_login ,
     l_last_updated_by ,
     l_last_update_date ,
     p_project_id,
     p_budget_version_id,
     l_res_asg_id_tab(l_ins_temp),
     p_period_profile_id,
     l_obj_id_tab(l_ins_temp),
     l_obj_type_code_tab(l_ins_temp),
     l_currency_type_tab(l_ins_temp),
     l_currency_code_tab(l_ins_temp),
     l_amt_type_tab(l_ins_temp),
     l_amt_subtype_tab(l_ins_temp),
     l_prev_amt_tab(l_ins_temp),
     l_next_amt_tab(l_ins_temp),
     l_prior_amt_tab(l_ins_temp),
     l_amount_tab1(l_ins_temp),
     l_amount_tab2(l_ins_temp),
     l_amount_tab3(l_ins_temp),
     l_amount_tab4(l_ins_temp),
     l_amount_tab5(l_ins_temp),
     l_amount_tab6(l_ins_temp),
     l_amount_tab7(l_ins_temp),
     l_amount_tab8(l_ins_temp),
     l_amount_tab9(l_ins_temp),
     l_amount_tab10(l_ins_temp),
     l_amount_tab11(l_ins_temp),
     l_amount_tab12(l_ins_temp),
     l_amount_tab13(l_ins_temp),
     l_amount_tab14(l_ins_temp),
     l_amount_tab15(l_ins_temp),
     l_amount_tab16(l_ins_temp),
     l_amount_tab17(l_ins_temp),
     l_amount_tab18(l_ins_temp),
     l_amount_tab19(l_ins_temp),
     l_amount_tab20(l_ins_temp),
     l_amount_tab21(l_ins_temp),
     l_amount_tab22(l_ins_temp),
     l_amount_tab23(l_ins_temp),
     l_amount_tab24(l_ins_temp),
     l_amount_tab25(l_ins_temp),
     l_amount_tab26(l_ins_temp),
     l_amount_tab27(l_ins_temp),
     l_amount_tab28(l_ins_temp),
     l_amount_tab29(l_ins_temp),
     l_amount_tab30(l_ins_temp),
     l_amount_tab31(l_ins_temp),
     l_amount_tab32(l_ins_temp),
     l_amount_tab33(l_ins_temp),
     l_amount_tab34(l_ins_temp),
     l_amount_tab35(l_ins_temp),
     l_amount_tab36(l_ins_temp),
     l_amount_tab37(l_ins_temp),
     l_amount_tab38(l_ins_temp),
     l_amount_tab39(l_ins_temp),
     l_amount_tab40(l_ins_temp),
     l_amount_tab41(l_ins_temp),
     l_amount_tab42(l_ins_temp),
     l_amount_tab43(l_ins_temp),
     l_amount_tab44(l_ins_temp),
     l_amount_tab45(l_ins_temp),
     l_amount_tab46(l_ins_temp),
     l_amount_tab47(l_ins_temp),
     l_amount_tab48(l_ins_temp),
     l_amount_tab49(l_ins_temp),
     l_amount_tab50(l_ins_temp),
     l_amount_tab51(l_ins_temp),
     l_amount_tab52(l_ins_temp),
     l_parent_assignment_id_tab(l_ins_temp),
     l_amt_type_id_tab(l_ins_temp),
     l_amt_subtype_id_tab(l_ins_temp)
     );
Line: 3887

             PA_DEBUG.g_err_stage := 'after bulk insert into pds denorm and returning';