DBA Data[Home] [Help]

APPS.GL_PERIOD_STATUSES_PKG SQL Statements

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

Line: 21

      SELECT min(start_date) begins, max(end_date) ends
      FROM gl_periods
      WHERE period_set_name = x_periodsetname
      AND   period_type     = x_periodtype;
Line: 27

      SELECT accounting_date
      FROM gl_date_period_map
      WHERE period_name     = not_assigned
      AND   period_set_name = x_periodsetname
      AND   period_type     = x_periodtype
      AND   accounting_date BETWEEN beginning AND ending;
Line: 35

      SELECT max(accounting_date)
      FROM gl_date_period_map
      WHERE period_name    <> not_assigned
      AND   period_set_name = x_periodsetname
      AND   period_type     = x_periodtype
      AND   accounting_date < gap_date;
Line: 43

      SELECT min(accounting_date)
      FROM gl_date_period_map
      WHERE period_name    <> not_assigned
      AND   period_set_name = x_periodsetname
      AND   period_type     = x_periodtype
      AND   accounting_date > gap_date;
Line: 94

      SELECT ps.period_name
      FROM   gl_period_statuses ps,
             gl_access_set_ledgers acc
      WHERE  ps.application_id = 101
      AND    ps.ledger_id = led_id
      AND    ps.closing_status = 'O'
      AND    acc.access_set_id = acc_id
      AND    acc.ledger_id = ps.ledger_id
      AND    acc.access_privilege_code IN ('B','F')
      AND    ps.end_date between nvl(acc.start_date, ps.end_date-1)
                         and nvl(acc.end_date, ps.end_date+1)
      ORDER BY effective_period_num DESC;
Line: 108

      SELECT ps.period_name
      FROM   gl_period_statuses ps,
             gl_access_set_ledgers acc
      WHERE  ps.application_id = 101
      AND    ps.ledger_id = led_id
      AND    ps.closing_status = 'F'
      AND    acc.access_set_id = acc_id
      AND    acc.ledger_id = ps.ledger_id
      AND    acc.access_privilege_code IN ('B','F')
      AND    ps.end_date between nvl(acc.start_date, ps.end_date-1)
                         and nvl(acc.end_date, ps.end_date+1)
      ORDER BY effective_period_num ASC;
Line: 160

    SELECT ps1.period_name
    FROM   gl_period_statuses ps1,
           gl_period_statuses ps2
    WHERE  ps1.application_id = 101
    AND    ps1.ledger_id = x_ledger_id
    AND    ps2.application_id = 101
    AND    ps2.ledger_id = x_ledger_id
    AND    ps2.period_name = x_period
    AND    ( ps1.start_date =
               ( SELECT MIN( ps3.start_date )
                 FROM   gl_period_statuses ps3
                 WHERE  ps3.application_id = 101
                 AND    ps3.ledger_id = x_ledger_id
                 AND    ps3.start_date > ps2.start_date ) )
    AND     ps1.closing_status NOT IN ( 'N','C','P' );
Line: 196

  PROCEDURE insert_led_ps(
                        x_ledger_id       NUMBER,
                        x_period_set_name       VARCHAR2,
                        x_accounted_period_type VARCHAR2,
                        x_last_update_date      DATE,
                        x_last_updated_by       NUMBER,
                        x_last_update_login     NUMBER,
                        x_creation_date         DATE,
                        x_created_by            NUMBER ) IS
  BEGIN

    -- Before doing anything else...
    check_for_gap(x_period_set_name, x_accounted_period_type);
Line: 210

    LOCK TABLE GL_PERIOD_STATUSES IN SHARE UPDATE MODE;
Line: 212

    INSERT INTO GL_PERIOD_STATUSES
    ( application_id,
      ledger_id,
      set_of_books_id,
      period_name,
      closing_status,
      start_date,
      end_date,
      period_type,
      period_year,
      period_num,
      quarter_num,
      last_update_date,
      last_updated_by,
      last_update_login,
      creation_date,
      created_by,
      adjustment_period_flag,
      quarter_start_date,
      year_start_date,
      effective_period_num,
      migration_status_code)
    SELECT
      ag.application_id,
      x_ledger_id,
      x_ledger_id,
      p.period_name,
      'N',
      p.start_date,
      p.end_date,
      p.period_type,
      p.period_year,
      p.period_num,
      p.quarter_num,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_creation_date,
      x_created_by,
      p.adjustment_period_flag,
      p.quarter_start_date,
      p.year_start_date,
      p.period_year*10000 + p.period_num,
      'N'
    FROM
      GL_APPLICATION_GROUPS ag,
      GL_PERIODS p
    WHERE p.period_set_name = x_period_set_name
    AND   p.period_type = x_accounted_period_type
    AND   ag.group_name = 'PERIOD_STATUS'
    AND   EXISTS ( SELECT 'Application Installed'
                   FROM   FND_PRODUCT_INSTALLATIONS pr
		   WHERE  pr.application_id = ag.application_id );
Line: 274

                            'gl_period_statuses_pkg.insert_led_ps');
Line: 277

  END insert_led_ps;
Line: 280

  PROCEDURE insert_ps_api( x_appl_id               NUMBER,
                           x_ledger_id       NUMBER,
                           x_period_name           VARCHAR2,
                           x_status                VARCHAR2,
                           x_period_set_name       VARCHAR2,
			   x_user_id               NUMBER,
			   x_login_id              NUMBER ) IS


  BEGIN

    LOCK TABLE GL_PERIOD_STATUSES IN SHARE UPDATE MODE;
Line: 293

    INSERT INTO GL_PERIOD_STATUSES
    ( application_id,
      ledger_id,
      set_of_books_id,
      period_name,
      closing_status,
      start_date,
      end_date,
      period_type,
      period_year,
      period_num,
      quarter_num,
      last_update_date,
      last_updated_by,
      last_update_login,
      creation_date,
      created_by,
      adjustment_period_flag,
      quarter_start_date,
      year_start_date,
      effective_period_num,
      migration_status_code)
    SELECT
      x_appl_id,
      x_ledger_id,
      x_ledger_id,
      x_period_name,
      x_status,
      GP.start_date,
      GP.end_date,
      GP.period_type,
      GP.period_year,
      GP.period_num,
      GP.quarter_num,
      sysdate,
      x_user_id,
      x_login_id,
      sysdate,
      x_user_id,
      GP.adjustment_period_flag,
      GP.quarter_start_date,
      GP.year_start_date,
      GP.period_year*10000 + GP.period_num,
      'N'
    FROM
      GL_PERIODS GP,
      GL_LEDGERS LD
    WHERE GP.period_set_name =  nvl(x_period_set_name, LD.period_set_name)
    AND   GP.period_name = x_period_name
    AND   LD.ledger_id = x_ledger_id;
Line: 354

                            'gl_period_statuses_pkg.insert_ps_api');
Line: 357

  END insert_ps_api;
Line: 360

  PROCEDURE insert_period(
			x_calendar_name		VARCHAR2,
                      	x_period_name 		VARCHAR2,
			x_start_date		DATE,
			x_end_date		DATE,
 			x_period_type 		VARCHAR2,
                     	x_period_year 		NUMBER,
                       	x_period_num  		NUMBER,
			x_quarter_num 		NUMBER,
			x_adj_period_flag 	VARCHAR2,
			x_last_updated_by	NUMBER,
			x_last_update_login	NUMBER,
			x_quarter_start_date	DATE,
      			x_year_start_date	DATE) IS
  BEGIN

    INSERT INTO GL_PERIOD_STATUSES
    ( application_id,
      ledger_id,
      set_of_books_id,
      period_name,
      closing_status,
      start_date,
      end_date,
      period_type,
      period_year,
      period_num,
      quarter_num,
      last_update_date,
      last_updated_by,
      last_update_login,
      creation_date,
      created_by,
      adjustment_period_flag,
      quarter_start_date,
      year_start_date,
      effective_period_num,
      migration_status_code)
    SELECT
      ag.application_id,
      led.ledger_id,
      led.ledger_id,
      x_period_name,
      'N',
      x_start_date,
      x_end_date,
      x_period_type,
      x_period_year,
      x_period_num,
      x_quarter_num,
      sysdate,
      x_last_updated_by,
      x_last_update_login,
      sysdate,
      x_last_updated_by,
      x_adj_period_flag,
      x_quarter_start_date,
      x_year_start_date,
      x_period_year * 10000 + x_period_num,
      'N'
    FROM
      GL_APPLICATION_GROUPS ag,
      GL_LEDGERS led
    WHERE ag.group_name = 'PERIOD_STATUS'
    AND   led.period_set_name = x_calendar_name
    AND   led.accounted_period_type = x_period_type
    AND   EXISTS ( SELECT 'Application Installed'
                   FROM   FND_PRODUCT_INSTALLATIONS pr
		   WHERE  pr.application_id = ag.application_id );
Line: 438

                            'gl_period_statuses_pkg.insert_period');
Line: 440

  END insert_period;
Line: 443

  PROCEDURE update_period(
			x_calendar_name		VARCHAR2,
 			x_old_period_name	VARCHAR2,
                      	x_period_name 		VARCHAR2,
			x_start_date		DATE,
			x_end_date		DATE,
 			x_period_type 		VARCHAR2,
                     	x_period_year 		NUMBER,
                       	x_period_num  		NUMBER,
			x_quarter_num 		NUMBER,
			x_adj_period_flag 	VARCHAR2,
			x_last_updated_by	NUMBER,
			x_last_update_login	NUMBER) IS
  BEGIN

    UPDATE GL_PERIOD_STATUSES ps
    SET    ps.period_name = x_period_name,
           ps.start_date  = x_start_date,
           ps.end_date    = x_end_date,
           ps.period_type = x_period_type,
           ps.period_year = x_period_year,
           ps.quarter_num = x_quarter_num,
           ps.period_num  = x_period_num,
           ps.adjustment_period_flag = x_adj_period_flag,
           ps.last_update_date  = sysdate,
           ps.last_updated_by   = x_last_updated_by,
           ps.last_update_login = x_last_update_login,
           ps.effective_period_num = x_period_year * 10000 + x_period_num
  WHERE  ps.period_name = x_old_period_name
  AND    ps.ledger_id IN
         ( SELECT led.ledger_id
           FROM   GL_LEDGERS led
           WHERE  led.period_set_name = x_calendar_name );
Line: 485

                            'gl_period_statuses_pkg.update_period');
Line: 487

  END update_period;
Line: 490

  PROCEDURE delete_period(
		x_calendar_name		VARCHAR2,
 		x_old_period_name	VARCHAR2) IS
  BEGIN
    DELETE gl_period_statuses ps
    WHERE  ps.period_name = x_old_period_name
    AND    ps.ledger_id in
           (SELECT led.ledger_id
            FROM   gl_ledgers led
            WHERE  led.period_set_name = x_calendar_name);
Line: 509

                            'gl_period_statuses_pkg.delete_period');
Line: 511

  END delete_period;
Line: 514

  PROCEDURE select_row( recinfo IN OUT NOCOPY gl_period_statuses%ROWTYPE )  IS
  BEGIN
    SELECT  *
    INTO    recinfo
    FROM    gl_period_statuses
    WHERE   application_id = recinfo.application_id
    AND     ledger_id = recinfo.ledger_id
    AND     period_name = recinfo.period_name ;
Line: 530

                            'gl_period_statuses_pkg.select_row');
Line: 532

  END select_row;
Line: 535

  PROCEDURE select_columns(
              x_application_id            NUMBER,
              x_ledger_id           NUMBER,
              x_period_name               VARCHAR2,
              x_closing_status    IN OUT NOCOPY  VARCHAR2,
              x_start_date        IN OUT NOCOPY  DATE,
              x_end_date          IN OUT NOCOPY  DATE,
              x_period_num        IN OUT NOCOPY  NUMBER,
              x_period_year       IN OUT NOCOPY  NUMBER ) IS
    recinfo gl_period_statuses%ROWTYPE;
Line: 549

    select_row( recinfo );
Line: 563

                            'gl_period_statuses_pkg.select_columns');
Line: 565

  END select_columns;
Line: 576

    v_num_periods_updated     NUMBER(15);
Line: 580

    select led.future_enterable_periods_limit,
           led.accounted_period_type
    into   v_fut_ent_periods_limit,
           v_period_type
    from   gl_ledgers led
    where  led.ledger_id = x_ledger_id;
Line: 587

    update gl_period_statuses ps
       set ps.closing_status =
            decode(ps.period_year, x_period_year,
                   decode(ps.period_num, x_period_num,'O',
                          'F'),
                    'F'),
           ps.last_update_date = sysdate,
           ps.last_updated_by = x_user_id
     where ps.ledger_id = x_ledger_id
       and ps.application_id = x_application_id
       and ps.period_name in
           (select period_name
              from gl_period_statuses ps1,
                   gl_period_types pt
             where v_period_type = pt.period_type
               and ps1.application_id        = x_application_id
               and ps1.ledger_id       = x_ledger_id
               and ps1.period_type           = pt.period_type
               and ((ps1.period_year * pt.number_per_fiscal_year +
                     ps1.period_num) >=
                    (x_period_year * pt.number_per_fiscal_year +
                     x_period_num)
                   and (ps1.period_year * pt.number_per_fiscal_year +
                        ps1.period_num) <=
                       (x_period_year * pt.number_per_fiscal_year +
                        x_period_num +
                        v_fut_ent_periods_limit))) ;
Line: 616

    v_num_periods_updated := SQL%ROWCOUNT;
Line: 620

    IF (v_num_periods_updated <> (v_fut_ent_periods_limit + 1)) THEN
      fnd_message.set_name('SQLGL', 'GL_MISSING_FUT_ENT_PERIODS');
Line: 635

PROCEDURE select_encumbrance_periods(
	x_application_id			NUMBER,
        x_ledger_id       		NUMBER,
	x_first_period			IN OUT NOCOPY	VARCHAR2,
	x_first_period_start_date	IN OUT NOCOPY	DATE,
	x_second_period			IN OUT NOCOPY	VARCHAR2,
	x_second_period_year		IN OUT NOCOPY	NUMBER,
	x_second_period_start_date	IN OUT NOCOPY	DATE)  IS

  CURSOR c_period IS
    SELECT 	PS1.period_name,
   	    	PS1.start_date,
       		PS2.period_name,
       		PS2.period_year,
       		PS2.start_date
    FROM   	GL_LEDGERS LED,
       		GL_PERIOD_STATUSES PS1,
       		GL_PERIOD_STATUSES PS2,
       		GL_PERIOD_TYPES GPT
    WHERE  	PS1.application_id = x_application_id
    AND    	PS1.closing_status || '' in ('C', 'P')
    AND    	PS1.ledger_id = x_ledger_id
    AND    	PS1.period_type = GPT.period_type
    AND         PS1.period_year * GPT.number_per_fiscal_year +
		PS1.period_num + 1
       		= PS2.period_year * GPT.number_per_fiscal_year + PS2.period_num
    AND    	PS2.application_id = x_application_id
    AND    	PS2.ledger_id = x_ledger_id
    AND    	PS2.period_num = 1
    AND    	LED.ledger_id = x_ledger_id
    AND         PS2.period_year <= LED.latest_encumbrance_year;
Line: 684

                        'gl_period_statuses_pkg.select_encumbrance_periods');
Line: 687

  END select_encumbrance_periods;
Line: 690

PROCEDURE select_prior_year_1st_period(
        x_application_id                        NUMBER,
        x_ledger_id                       NUMBER,
	x_period_year				NUMBER,
	x_period_name		IN OUT NOCOPY		VARCHAR2) IS

  CURSOR c_period IS
    SELECT 	period_name
    FROM   	GL_PERIOD_STATUSES
    WHERE  	application_id = x_application_id
    AND    	ledger_id = x_ledger_id
    AND         period_year = x_period_year - 1
    AND         period_num = (SELECT min(period_num)
                     FROM   GL_PERIOD_STATUSES
                     WHERE  application_id = x_application_id
                     AND    ledger_id = x_ledger_id
                     AND    period_year = x_period_year - 1);
Line: 721

                        'gl_period_statuses_pkg.select_prior_year_1st_period');
Line: 723

  END select_prior_year_1st_period;
Line: 727

PROCEDURE select_year_1st_period(
        x_application_id                        NUMBER,
        x_ledger_id                       NUMBER,
        x_period_year                           NUMBER,
        x_period_name           IN OUT NOCOPY          VARCHAR2) IS

  CURSOR c_period IS
    select
        period_name
    from
        gl_period_statuses s1
    where
        s1.application_id = x_application_id
    and s1.ledger_id = x_ledger_id
    and s1.period_year = x_period_year
    and s1.period_num = (select min(period_num)
                         from  gl_period_statuses s2
                         where s2.period_year = x_period_year
                         and   s2.application_id = x_application_id
                         and   s2.ledger_id = x_ledger_id);
Line: 761

                        'gl_period_statuses_pkg.select_year_1st_period');
Line: 763

  END select_year_1st_period;
Line: 779

  select
        period_name, period_num, period_year, quarter_num
  from
        gl_period_statuses
  where
        application_id = x_application_id
  and   ledger_id = x_ledger_id
  and   period_year = x_period_year
  and   period_num = (select max(glps.period_num)
                      from gl_period_statuses glps
                      where glps.closing_status in ('O','C','P')
                      and glps.quarter_num = (
                                select quarter_num from gl_periods
                                where period_name = x_period_name
                                and period_set_name = x_period_set_name)
                      and glps.period_year = x_period_year
                      and glps.application_id = 101
                      and glps.ledger_id = x_ledger_id
                      and glps.period_type = x_accounted_period_type );
Line: 834

    select
        period_name, period_num, period_year, quarter_num
    from
        gl_period_statuses
    where
        application_id = x_application_id
    and ledger_id = x_ledger_id
    and period_year = x_period_year
    and period_num = (select max(period_num)
                      from gl_period_statuses
                      where period_type = x_accounted_period_type
                      and ledger_id = x_ledger_id
                      and period_year = x_period_year
                      and closing_status in ('O','C','P')
                      and application_id = x_application_id);
Line: 872

  PROCEDURE Insert_Row(X_Rowid                   IN OUT NOCOPY VARCHAR2,
                       X_Application_Id                 NUMBER,
                       X_Ledger_Id                NUMBER,
                       X_Period_Name                    VARCHAR2,
                       X_Last_Update_Date               DATE,
                       X_Last_Updated_By                NUMBER,
                       X_Closing_Status                 VARCHAR2,
                       X_Start_Date                     DATE,
                       X_End_Date                       DATE,
                       X_Period_Type                    VARCHAR2,
                       X_Period_Year                    NUMBER,
                       X_Period_Num                     NUMBER,
                       X_Quarter_Num                    NUMBER,
                       X_Adjustment_Period_Flag         VARCHAR2,
                       X_Creation_Date                  DATE,
                       X_Created_By                     NUMBER,
                       X_Last_Update_Login              NUMBER,
                       X_Attribute1                     VARCHAR2,
                       X_Attribute2                     VARCHAR2,
                       X_Attribute3                     VARCHAR2,
                       X_Attribute4                     VARCHAR2,
                       X_Attribute5                     VARCHAR2,
                       X_Context                        VARCHAR2

   ) IS
     CURSOR C IS SELECT rowid FROM gl_period_statuses
                 WHERE application_id = X_Application_Id

                 AND   ledger_id = X_Ledger_Id

                 AND   period_name = X_Period_Name;
Line: 909

       INSERT INTO gl_period_statuses(
               application_id,
               ledger_id,
               set_of_books_id,
               period_name,
               last_update_date,
               last_updated_by,
               closing_status,
               start_date,
               end_date,
               period_type,
               period_year,
               period_num,
               quarter_num,
               adjustment_period_flag,
               creation_date,
               created_by,
               last_update_login,
               attribute1,
               attribute2,
               attribute3,
               attribute4,
               attribute5,
               context,
               effective_period_num,
               migration_status_code
             ) VALUES (
               X_Application_Id,
               X_Ledger_Id,
               X_Ledger_Id,
               X_Period_Name,
               X_Last_Update_Date,
               X_Last_Updated_By,
               X_Closing_Status,
               X_Start_Date,
               X_End_Date,
               X_Period_Type,
               X_Period_Year,
               X_Period_Num,
               X_Quarter_Num,
               X_Adjustment_Period_Flag,
               X_Creation_Date,
               X_Created_By,
               X_Last_Update_Login,
               X_Attribute1,
               X_Attribute2,
               X_Attribute3,
               X_Attribute4,
               X_Attribute5,
               X_Context,
               X_period_year * 10000 + x_period_num,
               'N'
             );
Line: 970

  END Insert_Row;
Line: 994

        SELECT *
        FROM   gl_period_statuses
        WHERE  rowid = X_Rowid
        FOR UPDATE of Application_Id NOWAIT;
Line: 1004

      FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
Line: 1048

  PROCEDURE Update_Row(X_Rowid                          VARCHAR2,
                       X_Application_Id                 NUMBER,
                       X_Ledger_Id                NUMBER,
                       X_Period_Name                    VARCHAR2,
                       X_Last_Update_Date               DATE,
                       X_Last_Updated_By                NUMBER,
                       X_Closing_Status                 VARCHAR2,
                       X_Start_Date                     DATE,
                       X_End_Date                       DATE,
                       X_Period_Type                    VARCHAR2,
                       X_Period_Year                    NUMBER,
                       X_Period_Num                     NUMBER,
                       X_Quarter_Num                    NUMBER,
                       X_Adjustment_Period_Flag         VARCHAR2,
                       X_Last_Update_Login              NUMBER,
                       X_Attribute1                     VARCHAR2,
                       X_Attribute2                     VARCHAR2,
                       X_Attribute3                     VARCHAR2,
                       X_Attribute4                     VARCHAR2,
                       X_Attribute5                     VARCHAR2,
                       X_Context                        VARCHAR2

 ) IS
 BEGIN

   IF (X_Closing_Status IN ('C', 'P')) THEN
      UPDATE gl_period_statuses
      SET
        application_id                    =     X_Application_Id,
     	ledger_id                         =     X_Ledger_Id,
     	period_name                       =     X_Period_Name,
     	last_update_date                  =     X_Last_Update_Date,
     	last_updated_by                   =     X_Last_Updated_By,
     	closing_status                    =     X_Closing_Status,
     	start_date                        =     X_Start_Date,
     	end_date                          =     X_End_Date,
     	period_type                       =     X_Period_Type,
     	period_year                       =     X_Period_Year,
     	period_num                        =     X_Period_Num,
     	quarter_num                       =     X_Quarter_Num,
     	adjustment_period_flag            =     X_Adjustment_Period_Flag,
        elimination_confirmed_flag        =     'Y',
     	last_update_login                 =     X_Last_Update_Login,
     	attribute1                        =     X_Attribute1,
     	attribute2                        =     X_Attribute2,
     	attribute3                        =     X_Attribute3,
     	attribute4                        =     X_Attribute4,
     	attribute5                        =     X_Attribute5,
     	context                           =     X_Context,
     	effective_period_num	          =     X_Period_Year * 10000 + X_Period_Num

      WHERE rowid = X_rowid;
Line: 1101

      UPDATE gl_period_statuses
      SET
        application_id                    =     X_Application_Id,
        ledger_id                         =     X_Ledger_Id,
     	period_name                       =     X_Period_Name,
     	last_update_date                  =     X_Last_Update_Date,
     	last_updated_by                   =     X_Last_Updated_By,
     	closing_status                    =     X_Closing_Status,
     	start_date                        =     X_Start_Date,
     	end_date                          =     X_End_Date,
     	period_type                       =     X_Period_Type,
     	period_year                       =     X_Period_Year,
     	period_num                        =     X_Period_Num,
     	quarter_num                       =     X_Quarter_Num,
     	adjustment_period_flag            =     X_Adjustment_Period_Flag,
     	last_update_login                 =     X_Last_Update_Login,
     	attribute1                        =     X_Attribute1,
     	attribute2                        =     X_Attribute2,
     	attribute3                        =     X_Attribute3,
     	attribute4                        =     X_Attribute4,
     	attribute5                        =     X_Attribute5,
     	context                           =     X_Context,
     	effective_period_num	          =     X_Period_Year * 10000 + X_Period_Num
      WHERE rowid = X_rowid;
Line: 1132

  END Update_Row;
Line: 1134

  PROCEDURE Delete_Row(X_Rowid VARCHAR2) IS
  BEGIN
    DELETE FROM gl_period_statuses
    WHERE  rowid = X_Rowid;
Line: 1142

  END Delete_Row;
Line: 1144

 PROCEDURE update_row_dff(
  		X_rowid	                           VARCHAR2,
  		X_attribute1	                   VARCHAR2,
  		X_attribute2	                   VARCHAR2,
  		X_attribute3	                   VARCHAR2,
		X_attribute4	                   VARCHAR2,
		X_attribute5	                   VARCHAR2,
		X_context	                   VARCHAR2,
                X_Last_Update_Date                 DATE,
                X_Last_Updated_By                  NUMBER,
                X_Last_Update_Login                NUMBER
 ) IS
    CURSOR C IS
        SELECT *
        FROM   gl_period_statuses
        WHERE  rowid = X_rowid
        FOR UPDATE of Application_Id NOWAIT;
Line: 1206

  	     UPDATE gl_period_statuses
             SET
                Attribute1        = X_Attribute1,
                Attribute2        = X_Attribute2,
                Attribute3        = X_Attribute3,
                Attribute4        = X_Attribute4,
                Attribute5        = X_Attribute5,
                Context           = X_Context,
                Last_Update_Date  = X_Last_Update_Date,
                Last_Updated_By   = X_Last_Updated_By,
                Last_Update_Login = X_Last_Update_Login
             WHERE rowid = X_rowid;
Line: 1220

  END Update_Row_Dff;
Line: 1232

    SELECT  ps.period_name, ps.closing_status,
            ps.period_year, ps.period_num, ps.period_type
    INTO    x_period_name, x_closing_status, x_period_year,
            x_period_num, x_period_type
    FROM    gl_period_statuses ps,
            gl_date_period_map dpm,
            gl_ledgers led
    WHERE  led.ledger_id = x_ledger_id
    AND    dpm.accounting_date = x_given_date
    AND    dpm.period_set_name = led.period_set_name
    AND    dpm.period_type     = led.accounted_period_type
    AND    ps.period_name      = dpm.period_name
    AND    ps.ledger_id  = led.ledger_id
    AND    ps.application_id   = x_application_id
    AND    ps.adjustment_period_flag = 'N';
Line: 1274

    SELECT  min(start_date), max(end_date)
    FROM    gl_period_statuses
    WHERE   application_id = 101
    AND     ledger_id = x_ledger_id
    AND     closing_status <> 'N';
Line: 1305

    SELECT  min(start_date), max(end_date)
    FROM    gl_period_statuses
    WHERE   application_id = 101
    AND     ledger_id = x_ledger_id
    AND     closing_status in ('C', 'O', 'P');
Line: 1336

    SELECT  min(start_date), max(end_date)
    FROM    gl_period_statuses
    WHERE   application_id = 101
    AND     ledger_id = x_ledger_id
    AND     closing_status||'' IN ('O', 'F');