DBA Data[Home] [Help]

APPS.PV_GE_PTNR_RESPS_PKG SQL Statements

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

Line: 42

PROCEDURE Insert_Row(
        px_ptnr_resp_id   IN OUT NOCOPY NUMBER,
        p_partner_id    NUMBER,
        p_user_role_code    VARCHAR2,
        p_program_id    NUMBER,
        p_responsibility_id    NUMBER,
        p_source_resp_map_rule_id    NUMBER,
        p_resp_type_code VARCHAR2,
        px_object_version_number   IN OUT NOCOPY NUMBER,
        p_created_by    NUMBER,
        p_creation_date    DATE,
        p_last_updated_by    NUMBER,
        p_last_update_date    DATE,
        p_last_update_login    NUMBER)

IS
 x_rowid    VARCHAR2(30);
Line: 67

 INSERT INTO pv_ge_ptnr_resps(
         ptnr_resp_id,
         partner_id,
         user_role_code,
         program_id,
         responsibility_id,
         source_resp_map_rule_id,
         resp_type_code,
         object_version_number,
         created_by,
         creation_date,
         last_updated_by,
         last_update_date,
         last_update_login
 ) VALUES (
         DECODE( px_ptnr_resp_id, FND_API.G_MISS_NUM, NULL, px_ptnr_resp_id),
         DECODE( p_partner_id, FND_API.G_MISS_NUM, NULL, p_partner_id),
         DECODE( p_user_role_code, FND_API.g_miss_char, NULL, p_user_role_code),
         DECODE( p_program_id, FND_API.G_MISS_NUM, NULL, p_program_id),
         DECODE( p_responsibility_id, FND_API.G_MISS_NUM, NULL, p_responsibility_id),
         DECODE( p_source_resp_map_rule_id, FND_API.G_MISS_NUM, NULL, p_source_resp_map_rule_id),
         DECODE( p_resp_type_code, FND_API.g_miss_char, NULL, p_resp_type_code),
         DECODE( px_object_version_number, FND_API.G_MISS_NUM, 1, px_object_version_number),
         DECODE( p_created_by, FND_API.G_MISS_NUM, FND_GLOBAL.USER_ID, p_created_by),
         DECODE( p_creation_date, FND_API.G_MISS_DATE, SYSDATE, p_creation_date),
         DECODE( p_last_updated_by, FND_API.G_MISS_NUM, FND_GLOBAL.USER_ID, p_last_updated_by),
         DECODE( p_last_update_date, FND_API.G_MISS_DATE, SYSDATE, p_last_update_date),
         DECODE( p_last_update_login, FND_API.G_MISS_NUM, FND_GLOBAL.CONC_LOGIN_ID, p_last_update_login));
Line: 96

END Insert_Row;
Line: 113

PROCEDURE Update_Row(
        p_ptnr_resp_id    NUMBER,
        p_partner_id    NUMBER,
        p_user_role_code    VARCHAR2,
        p_program_id    NUMBER,
        p_responsibility_id    NUMBER,
        p_source_resp_map_rule_id    NUMBER,
        p_resp_type_code VARCHAR2,
        p_object_version_number   IN NUMBER,
        p_last_updated_by    NUMBER,
        p_last_update_date    DATE,
        p_last_update_login    NUMBER)

IS
BEGIN
  Update pv_ge_ptnr_resps
  SET
            ptnr_resp_id = DECODE( p_ptnr_resp_id, null, ptnr_resp_id, FND_API.G_MISS_NUM, null, p_ptnr_resp_id),
            partner_id = DECODE( p_partner_id, null, partner_id, FND_API.G_MISS_NUM, null, p_partner_id),
            user_role_code = DECODE( p_user_role_code, null, user_role_code, FND_API.g_miss_char, null, p_user_role_code),
            program_id = DECODE( p_program_id, null, program_id, FND_API.G_MISS_NUM, null, p_program_id),
            responsibility_id = DECODE( p_responsibility_id, null, responsibility_id, FND_API.G_MISS_NUM, null, p_responsibility_id),
            source_resp_map_rule_id = DECODE( p_source_resp_map_rule_id, null, source_resp_map_rule_id, FND_API.G_MISS_NUM, null, p_source_resp_map_rule_id),
            resp_type_code = DECODE( p_resp_type_code, null, resp_type_code, FND_API.g_miss_char, null, p_resp_type_code),
            object_version_number = nvl(p_object_version_number,0) + 1 ,
            last_updated_by = DECODE( p_last_updated_by, null, last_updated_by, FND_API.G_MISS_NUM, null, p_last_updated_by),
            last_update_date = DECODE( p_last_update_date, null, last_update_date, FND_API.G_MISS_DATE, null, p_last_update_date),
            last_update_login = DECODE( p_last_update_login, null, last_update_login, FND_API.G_MISS_NUM, null, p_last_update_login)
 WHERE ptnr_resp_id = p_ptnr_resp_id
 AND   object_version_number = p_object_version_number;
Line: 150

END Update_Row;
Line: 167

PROCEDURE Delete_Row(
  p_ptnr_resp_id  NUMBER,
  p_object_version_number  NUMBER)
IS
BEGIN
 DELETE FROM pv_ge_ptnr_resps
  WHERE ptnr_resp_id = p_ptnr_resp_id
  AND object_version_number = p_object_version_number;
Line: 178

END Delete_Row ;
Line: 201

      SELECT *
       FROM pv_ge_ptnr_resps
      WHERE ptnr_resp_id =  p_ptnr_resp_id
      AND object_version_number = p_object_version_number
      FOR UPDATE OF ptnr_resp_id NOWAIT;