DBA Data[Home] [Help]

APPS.GME_BATCH_STEP_TRANSFERS_DBL SQL Statements

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

Line: 27

 |      - update_row
 |      - lock_row
 |
 |
 =============================================================================
*/

   /* Api start of comments
 +============================================================================
 |   FUNCTION NAME
 |      insert_row
 |
 |   TYPE
 |      Private
 |   USAGE
 |      Insert_Row will insert a row in gme_batch_step_transfers
 |
 |
 |   DESCRIPTION
 |      Insert_Row will insert a row in gme_batch_step_transfers
 |
 |
 |
 |   PARAMETERS
 |     p_batch_step_transfers IN             gme_batch_step_transfers%ROWTYPE
 |     x_batch_step_transfers IN OUT NOCOPY  gme_batch_step_transfers%ROWTYPE
 |
 |   RETURNS
 |      BOOLEAN
 |   HISTORY
 |   12-MAR-01 Thomas Daniel   Created
 |
 |
 +=============================================================================
 Api end of comments
*/
   FUNCTION insert_row (
      p_batch_step_transfers   IN              gme_batch_step_transfers%ROWTYPE
     ,x_batch_step_transfers   IN OUT NOCOPY   gme_batch_step_transfers%ROWTYPE)
      RETURN BOOLEAN
   IS
   BEGIN
      x_batch_step_transfers := p_batch_step_transfers;
Line: 71

      INSERT INTO gme_batch_step_transfers
                  (wip_trans_id
                  ,batch_id
                  ,batchstep_no
                  ,transfer_step_no
                  ,line_type
                  ,trans_qty
                  ,trans_um
                  ,trans_date
                  ,last_updated_by, last_update_date
                  ,last_update_login, creation_date
                  ,created_by
                  ,delete_mark
                  ,text_code
                  ,attribute1
                  ,attribute2
                  ,attribute3
                  ,attribute4
                  ,attribute5
                  ,attribute6
                  ,attribute7
                  ,attribute8
                  ,attribute9
                  ,attribute10
                  ,attribute11
                  ,attribute12
                  ,attribute13
                  ,attribute14
                  ,attribute15
                  ,attribute16
                  ,attribute17
                  ,attribute18
                  ,attribute19
                  ,attribute20
                  ,attribute21
                  ,attribute22
                  ,attribute23
                  ,attribute24
                  ,attribute25
                  ,attribute26
                  ,attribute27
                  ,attribute28
                  ,attribute29
                  ,attribute30
                  ,attribute_category)
           VALUES (gem5_wip_trans_id_s.NEXTVAL
                  ,x_batch_step_transfers.batch_id
                  ,x_batch_step_transfers.batchstep_no
                  ,x_batch_step_transfers.transfer_step_no
                  ,x_batch_step_transfers.line_type
                  ,x_batch_step_transfers.trans_qty
                  ,x_batch_step_transfers.trans_um
                  ,x_batch_step_transfers.trans_date
                  ,gme_common_pvt.g_user_ident, gme_common_pvt.g_timestamp
                  ,gme_common_pvt.g_login_id, gme_common_pvt.g_timestamp
                  ,gme_common_pvt.g_user_ident
                  ,x_batch_step_transfers.delete_mark
                  ,x_batch_step_transfers.text_code
                  ,x_batch_step_transfers.attribute1
                  ,x_batch_step_transfers.attribute2
                  ,x_batch_step_transfers.attribute3
                  ,x_batch_step_transfers.attribute4
                  ,x_batch_step_transfers.attribute5
                  ,x_batch_step_transfers.attribute6
                  ,x_batch_step_transfers.attribute7
                  ,x_batch_step_transfers.attribute8
                  ,x_batch_step_transfers.attribute9
                  ,x_batch_step_transfers.attribute10
                  ,x_batch_step_transfers.attribute11
                  ,x_batch_step_transfers.attribute12
                  ,x_batch_step_transfers.attribute13
                  ,x_batch_step_transfers.attribute14
                  ,x_batch_step_transfers.attribute15
                  ,x_batch_step_transfers.attribute16
                  ,x_batch_step_transfers.attribute17
                  ,x_batch_step_transfers.attribute18
                  ,x_batch_step_transfers.attribute19
                  ,x_batch_step_transfers.attribute20
                  ,x_batch_step_transfers.attribute21
                  ,x_batch_step_transfers.attribute22
                  ,x_batch_step_transfers.attribute23
                  ,x_batch_step_transfers.attribute24
                  ,x_batch_step_transfers.attribute25
                  ,x_batch_step_transfers.attribute26
                  ,x_batch_step_transfers.attribute27
                  ,x_batch_step_transfers.attribute28
                  ,x_batch_step_transfers.attribute29
                  ,x_batch_step_transfers.attribute30
                  ,x_batch_step_transfers.attribute_category)
        RETURNING wip_trans_id
             INTO x_batch_step_transfers.wip_trans_id;
Line: 173

   END insert_row;
Line: 212

         SELECT wip_trans_id
               ,batch_id
               ,batchstep_no
               ,transfer_step_no
               ,line_type
               ,trans_qty
               ,trans_um
               ,trans_date
               ,last_updated_by
               ,last_update_date
               ,last_update_login
               ,creation_date
               ,created_by
               ,delete_mark
               ,text_code
               ,attribute1
               ,attribute2
               ,attribute3
               ,attribute4
               ,attribute5
               ,attribute6
               ,attribute7
               ,attribute8
               ,attribute9
               ,attribute10
               ,attribute11
               ,attribute12
               ,attribute13
               ,attribute14
               ,attribute15
               ,attribute16
               ,attribute17
               ,attribute18
               ,attribute19
               ,attribute20
               ,attribute21
               ,attribute22
               ,attribute23
               ,attribute24
               ,attribute25
               ,attribute26
               ,attribute27
               ,attribute28
               ,attribute29
               ,attribute30
               ,attribute_category
           INTO x_batch_step_transfers.wip_trans_id
               ,x_batch_step_transfers.batch_id
               ,x_batch_step_transfers.batchstep_no
               ,x_batch_step_transfers.transfer_step_no
               ,x_batch_step_transfers.line_type
               ,x_batch_step_transfers.trans_qty
               ,x_batch_step_transfers.trans_um
               ,x_batch_step_transfers.trans_date
               ,x_batch_step_transfers.last_updated_by
               ,x_batch_step_transfers.last_update_date
               ,x_batch_step_transfers.last_update_login
               ,x_batch_step_transfers.creation_date
               ,x_batch_step_transfers.created_by
               ,x_batch_step_transfers.delete_mark
               ,x_batch_step_transfers.text_code
               ,x_batch_step_transfers.attribute1
               ,x_batch_step_transfers.attribute2
               ,x_batch_step_transfers.attribute3
               ,x_batch_step_transfers.attribute4
               ,x_batch_step_transfers.attribute5
               ,x_batch_step_transfers.attribute6
               ,x_batch_step_transfers.attribute7
               ,x_batch_step_transfers.attribute8
               ,x_batch_step_transfers.attribute9
               ,x_batch_step_transfers.attribute10
               ,x_batch_step_transfers.attribute11
               ,x_batch_step_transfers.attribute12
               ,x_batch_step_transfers.attribute13
               ,x_batch_step_transfers.attribute14
               ,x_batch_step_transfers.attribute15
               ,x_batch_step_transfers.attribute16
               ,x_batch_step_transfers.attribute17
               ,x_batch_step_transfers.attribute18
               ,x_batch_step_transfers.attribute19
               ,x_batch_step_transfers.attribute20
               ,x_batch_step_transfers.attribute21
               ,x_batch_step_transfers.attribute22
               ,x_batch_step_transfers.attribute23
               ,x_batch_step_transfers.attribute24
               ,x_batch_step_transfers.attribute25
               ,x_batch_step_transfers.attribute26
               ,x_batch_step_transfers.attribute27
               ,x_batch_step_transfers.attribute28
               ,x_batch_step_transfers.attribute29
               ,x_batch_step_transfers.attribute30
               ,x_batch_step_transfers.attribute_category
           FROM gme_batch_step_transfers
          WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id;
Line: 329

 |      delete_row
 |
 |   TYPE
 |      Private
 |   USAGE
 |      Delete_Row will delete a row in gme_batch_step_transfers
 |
 |
 |   DESCRIPTION
 |      Delete_Row will delete a row in gme_batch_step_transfers
 |
 |
 |
 |   PARAMETERS
 |     p_batch_step_transfers IN  gme_batch_step_transfers%ROWTYPE
 |
 |   RETURNS
 |      BOOLEAN
 |   HISTORY
 |   12-MAR-01 Thomas Daniel   Created
 |   23-AUG-02  Bharati Satpute  Bug2404126
 |   Added error message GME_RECORD_CHANGED
 |
 +=============================================================================
 Api end of comments
*/
   FUNCTION delete_row (
      p_batch_step_transfers   IN   gme_batch_step_transfers%ROWTYPE)
      RETURN BOOLEAN
   IS
      l_dummy                NUMBER (5) := 0;
Line: 364

         SELECT     1
               INTO l_dummy
               FROM gme_batch_step_transfers
              WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id
         FOR UPDATE NOWAIT;
Line: 370

         UPDATE gme_batch_step_transfers
            SET delete_mark = 1
          WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id;
Line: 422

   END delete_row;
Line: 427

 |      update_row
 |
 |   TYPE
 |      Private
 |   USAGE
 |      Update_Row will update a row in gme_batch_step_transfers
 |
 |
 |   DESCRIPTION
 |      Update_Row will update a row in gme_batch_step_transfers
 |
 |
 |
 |   PARAMETERS
 |     p_batch_step_transfers IN  gme_batch_step_transfers%ROWTYPE
 |
 |   RETURNS
 |      BOOLEAN
 |   HISTORY
 |   12-MAR-01 Thomas Daniel   Created
 |   23-AUG-02  Bharati Satpute  Bug2404126
 |   Added error message GME_RECORD_CHANGED
 |
 |
 +=============================================================================
 Api end of comments
*/
   FUNCTION update_row (
      p_batch_step_transfers   IN   gme_batch_step_transfers%ROWTYPE)
      RETURN BOOLEAN
   IS
      l_dummy                NUMBER;
Line: 463

         SELECT     1
               INTO l_dummy
               FROM gme_batch_step_transfers
              WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id
         FOR UPDATE NOWAIT;
Line: 469

         UPDATE gme_batch_step_transfers
            SET batch_id = p_batch_step_transfers.batch_id
               ,batchstep_no = p_batch_step_transfers.batchstep_no
               ,transfer_step_no = p_batch_step_transfers.transfer_step_no
               ,line_type = p_batch_step_transfers.line_type
               ,trans_qty = p_batch_step_transfers.trans_qty
               ,trans_um = p_batch_step_transfers.trans_um
               ,trans_date = p_batch_step_transfers.trans_date
               ,last_updated_by = gme_common_pvt.g_user_ident
               ,last_update_date = gme_common_pvt.g_timestamp
               ,last_update_login = gme_common_pvt.g_login_id
               ,delete_mark = p_batch_step_transfers.delete_mark
               ,text_code = p_batch_step_transfers.text_code
               ,attribute1 = p_batch_step_transfers.attribute1
               ,attribute2 = p_batch_step_transfers.attribute2
               ,attribute3 = p_batch_step_transfers.attribute3
               ,attribute4 = p_batch_step_transfers.attribute4
               ,attribute5 = p_batch_step_transfers.attribute5
               ,attribute6 = p_batch_step_transfers.attribute6
               ,attribute7 = p_batch_step_transfers.attribute7
               ,attribute8 = p_batch_step_transfers.attribute8
               ,attribute9 = p_batch_step_transfers.attribute9
               ,attribute10 = p_batch_step_transfers.attribute10
               ,attribute11 = p_batch_step_transfers.attribute11
               ,attribute12 = p_batch_step_transfers.attribute12
               ,attribute13 = p_batch_step_transfers.attribute13
               ,attribute14 = p_batch_step_transfers.attribute14
               ,attribute15 = p_batch_step_transfers.attribute15
               ,attribute16 = p_batch_step_transfers.attribute16
               ,attribute17 = p_batch_step_transfers.attribute17
               ,attribute18 = p_batch_step_transfers.attribute18
               ,attribute19 = p_batch_step_transfers.attribute19
               ,attribute20 = p_batch_step_transfers.attribute20
               ,attribute21 = p_batch_step_transfers.attribute21
               ,attribute22 = p_batch_step_transfers.attribute22
               ,attribute23 = p_batch_step_transfers.attribute23
               ,attribute24 = p_batch_step_transfers.attribute24
               ,attribute25 = p_batch_step_transfers.attribute25
               ,attribute26 = p_batch_step_transfers.attribute26
               ,attribute27 = p_batch_step_transfers.attribute27
               ,attribute28 = p_batch_step_transfers.attribute28
               ,attribute29 = p_batch_step_transfers.attribute29
               ,attribute30 = p_batch_step_transfers.attribute30
               ,attribute_category = p_batch_step_transfers.attribute_category
          WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id
            AND last_update_date = p_batch_step_transfers.last_update_date;
Line: 564

   END update_row;
Line: 602

         SELECT     1
               INTO l_dummy
               FROM gme_batch_step_transfers
              WHERE wip_trans_id = p_batch_step_transfers.wip_trans_id
         FOR UPDATE NOWAIT;