DBA Data[Home] [Help]

APPS.OE_PAYMENT_TYPES_UTIL SQL Statements

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

Line: 4

  PROCEDURE Insert_Row(X_Rowid                  IN OUT NOCOPY 	 VARCHAR2,
                       p_name                	VARCHAR2,
                       p_description            VARCHAR2,
                       p_payment_type_id        NUMBER,
                       p_payment_type_code      VARCHAR2,
                       p_receipt_method_id      NUMBER,
                       p_start_date_active      DATE,
                       p_end_date_active        DATE,
                       p_enabled_flag           VARCHAR2,
                       p_defer_payment          VARCHAR2,
                       p_credit_check_flag      VARCHAR2,
                       p_org_id                	NUMBER  ,
                       p_Last_Update_Date       DATE,
                       p_Last_Updated_By        NUMBER  ,
                       p_Creation_Date          DATE ,
                       p_Created_By             NUMBER ,
                       p_Last_Update_Login      NUMBER,
                       p_program_application_id NUMBER,
                       p_program_id         	NUMBER,
                       p_request_id         	NUMBER,
                       p_program_update_date    DATE ,
                       p_Context 	        VARCHAR2,
                       p_Attribute1             VARCHAR2,
                       p_Attribute2             VARCHAR2,
                       p_Attribute3             VARCHAR2,
                       p_Attribute4             VARCHAR2,
                       p_Attribute5             VARCHAR2,
                       p_Attribute6             VARCHAR2,
                       p_Attribute7             VARCHAR2,
                       p_Attribute8             VARCHAR2,
                       p_Attribute9             VARCHAR2,
                       p_Attribute10            VARCHAR2,
                       p_Attribute11            VARCHAR2,
                       p_Attribute12            VARCHAR2,
                       p_Attribute13            VARCHAR2,
                       p_Attribute14            VARCHAR2,
                       p_Attribute15            VARCHAR2
  ) IS
  --  CURSOR C IS SELECT rowid FROM oe_system_parameters_all
                 /** WHERE nvl(org_id, -99) = nvl(X_Organization_Id, -99); **/
Line: 55

SELECT USERENV('LANG'),USERENV('LANG')
INTO   l_language,l_source_lang
FROM   DUAL;
Line: 69

INSERT INTO oe_payment_types_tl
(payment_type_code
,language
,source_lang
,name
,description
,creation_date
,created_by
,last_update_date
,last_updated_by
,last_update_login
,program_application_id
,program_id
,request_id
,program_update_date
,org_id
)
SELECT
p_payment_type_code
,L.LANGUAGE_CODE
,userenv('LANG')
,p_name
,p_description
,p_creation_date
,p_created_by
,p_last_update_date
,p_last_updated_by
,p_last_update_login
,p_program_application_id
,p_program_id
,p_request_id
,p_program_update_date
,p_org_id
FROM FND_LANGUAGES L
WHERE L.INSTALLED_FLAG IN ('I', 'B')
and not exists
( select null
  from oe_payment_types_tl t
  where t.org_id = p_org_id
  and t.payment_type_code = p_payment_type_code
  and t.language = L.LANGUAGE_CODE);
Line: 111

INSERT INTO oe_payment_types_all
(payment_type_code
,start_date_active
,end_date_active
,enabled_flag
,defer_payment_processing_flag
,credit_check_flag
,receipt_method_id
,org_id
,creation_date
,created_by
,last_update_date
,last_updated_by
,last_update_login
,program_application_id
,program_id
,request_id
,context
,attribute1
,attribute2
,attribute3
,attribute4
,attribute5
,attribute6
,attribute7
,attribute8
,attribute9
,attribute10
,attribute11
,attribute12
,attribute13
,attribute14
,attribute15
,program_update_date
)
VALUES(
p_payment_type_code
,p_start_date_active
,p_end_date_active
,p_enabled_flag
,p_defer_payment
,p_credit_check_flag
,p_receipt_method_id
,p_org_id
,p_creation_date
,p_created_by
,p_last_update_date
,p_last_updated_by
,p_last_update_login
,p_program_application_id
,p_program_id
,p_request_id
,p_context
,p_attribute1
,p_attribute2
,p_attribute3
,p_attribute4
,p_attribute5
,p_attribute6
,p_attribute7
,p_attribute8
,p_attribute9
,p_attribute10
,p_attribute11
,p_attribute12
,p_attribute13
,p_attribute14
,p_attribute15
,p_program_update_date
);
Line: 182

END Insert_Row;
Line: 216

        SELECT *
        FROM   oe_payment_types_all
        WHERE  payment_type_code = p_payment_type_code
        AND    nvl(org_id,-1) = nvl(p_org_id,-1)
        FOR UPDATE OF PAYMENT_TYPE_CODE NOWAIT;
Line: 223

        SELECT name,description,payment_type_code,
               decode(LANGUAGE, userenv('LANG'), 'Y', 'N') BASELANG
        FROM oe_payment_types_tl
        WHERE payment_type_code = p_payment_type_code
        AND nvl(org_id,-1) = nvl(p_org_id,-1)
        AND   userenv('LANG') in (LANGUAGE, SOURCE_LANG)
        FOR UPDATE OF PAYMENT_TYPE_CODE NOWAIT;
Line: 333

PROCEDURE Update_Row(X_Rowid         		VARCHAR2,
                       p_name                	VARCHAR2,
                       p_description            VARCHAR2,
                       p_payment_type_id        NUMBER,
                       p_payment_type_code      VARCHAR2,
                       p_receipt_method_id      NUMBER,
                       p_start_date_active      DATE,
                       p_end_date_active        DATE,
                       p_enabled_flag           VARCHAR2,
                       p_defer_payment          VARCHAR2,
                       p_credit_check_flag      VARCHAR2,
                       p_org_id                	NUMBER  ,
                       p_Last_Update_Date       DATE,
                       p_Last_Updated_By        NUMBER  ,
                       p_Creation_Date          DATE ,
                       p_Created_By             NUMBER ,
                       p_Last_Update_Login      NUMBER,
                       p_program_application_id NUMBER,
                       p_program_id         	NUMBER,
                       p_request_id         	NUMBER,
                       p_program_update_date    DATE ,
                       p_Context 	        VARCHAR2,
                       p_Attribute1             VARCHAR2,
                       p_Attribute2             VARCHAR2,
                       p_Attribute3             VARCHAR2,
                       p_Attribute4             VARCHAR2,
                       p_Attribute5             VARCHAR2,
                       p_Attribute6             VARCHAR2,
                       p_Attribute7             VARCHAR2,
                       p_Attribute8             VARCHAR2,
                       p_Attribute9             VARCHAR2,
                       p_Attribute10            VARCHAR2,
                       p_Attribute11            VARCHAR2,
                       p_Attribute12            VARCHAR2,
                       p_Attribute13            VARCHAR2,
                       p_Attribute14            VARCHAR2,
                       p_Attribute15            VARCHAR2
                      ) IS
BEGIN


    UPDATE oe_payment_types_tl
    SET
       org_id          = p_org_id,
       payment_type_code	= p_payment_type_code,
       name		        = p_name,
       description		= p_description,
       last_update_date         = p_Last_Update_Date,
       last_updated_by          = p_Last_Updated_By,
       last_update_login        = p_Last_Update_Login,
       source_lang              = userenv('LANG')
    WHERE nvl(org_id,-1) = nvl(p_org_id, -1)
    AND  payment_type_code = p_payment_type_code
    AND userenv('LANG') in (LANGUAGE, SOURCE_LANG);
Line: 388

    UPDATE oe_payment_types_all
    SET
     	payment_type_code	= p_payment_type_code,
	start_date_active	= p_start_date_active,
	end_date_active		= p_end_date_active,
	enabled_flag		= p_enabled_flag,
	defer_payment_processing_flag	= p_defer_payment,
        credit_check_flag	= p_credit_check_flag,
        last_update_date        = p_Last_Update_Date,
        last_updated_by         = p_Last_Updated_By,
        last_update_login       = p_Last_Update_Login,
	receipt_method_id	= p_receipt_method_id,
	org_id			= p_org_id,
	context              	= p_Context,
       	attribute1              = p_Attribute1,
      	attribute2              = p_Attribute2,
       	attribute3              = p_Attribute3,
       	attribute4              = p_Attribute4,
       	attribute5              = p_Attribute5,
       	attribute6              = p_Attribute6,
       	attribute7              = p_Attribute7,
       	attribute8              = p_Attribute8,
       	attribute9              = p_Attribute9,
       	attribute10             = p_Attribute10,
       	attribute11             = p_Attribute11,
       	attribute12             = p_Attribute12,
       	attribute13             = p_Attribute13,
       	attribute14             = p_Attribute14,
       	attribute15             = p_Attribute15
    WHERE nvl(org_id,-1) = nvl(p_org_id,-1)
    AND   payment_type_code = p_payment_type_code;
Line: 423

END Update_Row;
Line: 425

PROCEDURE Delete_Row(p_payment_type_id IN NUMBER,
                     p_payment_type_code IN VARCHAR2,
                     p_org_id in NUMBER) IS
  l_org_id number := 0;
Line: 441

    DELETE FROM oe_payment_types_tl
    WHERE nvl(org_id,-1) = nvl(l_org_id,-1)
    AND payment_type_code = p_payment_type_code;
Line: 445

    DELETE FROM oe_payment_types_all
    WHERE nvl(org_id,-1) = nvl(l_org_id,-1)
    AND payment_type_code = p_payment_type_code;
Line: 453

END Delete_Row;
Line: 465

   UPDATE oe_payment_types_tl
    SET
       payment_type_code	= p_payment_type_code,
       name		        = p_name,
       description		= p_description,
       last_update_date         = sysdate,
       --last_updated_by          = decode(p_owner, 'SEED', 1, 0),
       last_updated_by          = l_user_id,
       last_update_login        = 0,
       source_lang = userenv('LANG')
    WHERE nvl(org_id,-1) = nvl(p_org_id,-1)
    AND   payment_type_code = p_payment_type_code
    AND userenv('LANG') in (LANGUAGE, SOURCE_LANG);
Line: 508

                      x_last_update_date   in VARCHAR2,
                      x_last_updated_by    in NUMBER,
                      x_last_update_login  in NUMBER,
                      x_owner              in VARCHAR2,
                      x_org_id             in NUMBER) IS
l_user_id number := 0;
Line: 527

     select org_id,last_updated_by into l_org_id,l_db_user_id
     from oe_payment_types_all
     where payment_type_code = x_payment_type_code
     and nvl(org_id,-1) = nvl(x_org_id,-1)
     and rownum = 1;
Line: 540

      Update_Row(X_Rowid => l_rowid,
                       p_name => x_name,
                       p_description => x_description,
                       p_payment_type_id => l_payment_type_id,
                       p_payment_type_code => x_payment_type_code,
                       p_receipt_method_id => x_receipt_method_id,
                       p_start_date_active => x_start_date_active,
                       p_end_date_active   => x_end_date_active,
                       p_enabled_flag      => x_enabled_flag,
                       p_defer_payment     => x_defer_processing_flag,
                       p_credit_check_flag => x_credit_check_flag,
                       p_org_id            => l_org_id,
                       p_Last_Update_Date  => sysdate,
                       p_Last_Updated_By   => l_user_id,
                       p_Creation_Date     => NULL,
                       p_Created_By        => NULL,
                       p_Last_Update_Login => 0,
                       p_program_application_id => NULL,
                       p_program_id         	=> NULL,
                       p_request_id         	=> x_request_id,
                       p_program_update_date    => NULL,
                       p_Context 	        => x_context,
                       p_Attribute1             => x_attribute1,
                       p_Attribute2             => x_attribute2,
                       p_Attribute3             => x_attribute3,
                       p_Attribute4             => x_attribute4,
                       p_Attribute5             => x_attribute5,
                       p_Attribute6             => x_attribute6,
                       p_Attribute7             => x_attribute7,
                       p_Attribute8             => x_attribute8,
                       p_Attribute9             => x_attribute9,
                       p_Attribute10            => x_attribute10,
                       p_Attribute11            => x_attribute11,
                       p_Attribute12            => x_attribute12,
                       p_Attribute13            => x_attribute13,
                       p_Attribute14            => x_attribute14,
                       p_Attribute15            => x_attribute15 );
Line: 584

              Insert_Row(X_Rowid => l_rowid,
                       p_name => x_name,
                       p_description => x_description,
                       p_payment_type_id => x_payment_type_id,
                       p_payment_type_code => x_payment_type_code,
                       p_receipt_method_id => x_receipt_method_id,
                       p_start_date_active => x_start_date_active,
                       p_end_date_active   => x_end_date_active,
                       p_enabled_flag      => x_enabled_flag,
                       p_defer_payment     => x_defer_processing_flag,
                       p_credit_check_flag => x_credit_check_flag,
                       p_org_id            => x_org_id,
                       p_Last_Update_Date  => sysdate,
                       p_Last_Updated_By   => l_user_id,
                       p_Creation_Date     => sysdate,
                       p_Created_By        => l_user_id,
                       p_Last_Update_Login => 0,
                       p_program_application_id => NULL,
                       p_program_id         	=> NULL,
                       p_request_id         	=> x_request_id,
                       p_program_update_date    => NULL,
                       p_Context 	        => x_context,
                       p_Attribute1             => x_attribute1,
                       p_Attribute2             => x_attribute2,
                       p_Attribute3             => x_attribute3,
                       p_Attribute4             => x_attribute4,
                       p_Attribute5             => x_attribute5,
                       p_Attribute6             => x_attribute6,
                       p_Attribute7             => x_attribute7,
                       p_Attribute8             => x_attribute8,
                       p_Attribute9             => x_attribute9,
                       p_Attribute10            => x_attribute10,
                       p_Attribute11            => x_attribute11,
                       p_Attribute12            => x_attribute12,
                       p_Attribute13            => x_attribute13,
                       p_Attribute14            => x_attribute14,
                       p_Attribute15            => x_attribute15 );
Line: 636

select payment_type_code,
       request_id,
       start_date_active,
       end_date_active,
       enabled_flag,
       defer_payment_processing_flag,
       credit_check_flag,
       receipt_method_id,
       context,
       attribute1,
       attribute2,
       attribute3,
       attribute4,
       attribute5,
       attribute6,
       attribute7,
       attribute8,
       attribute9,
       attribute10,
       attribute11,
       attribute12,
       attribute13,
       attribute14,
       attribute15,
       name,
       description,
       last_update_date,
       last_updated_by,
       last_update_login
from oe_payment_types_vl optv
where nvl(org_id, -1) = nvl(p_from_org_id, -1)
and not exists (
select null
from oe_payment_types_all opta
where opta.payment_type_code = optv.payment_type_code
and nvl(opta.org_id, -1) = nvl(p_to_org_id, -1) );
Line: 681

       IF payment_type_rec.last_updated_by = 1 THEN
            x_owner := 'SEED';
Line: 713

                      x_last_update_date  => sysdate,
                      x_last_updated_by   => payment_type_rec.last_updated_by,
                      x_last_update_login => payment_type_rec.last_update_login,
                      x_owner             => x_owner,
                      x_org_id            => p_to_org_id);
Line: 728

  delete from OE_PAYMENT_TYPES_TL T
  where not exists
    (select NULL
    from OE_PAYMENT_TYPES_ALL B
    where B.PAYMENT_TYPE_CODE = T.PAYMENT_TYPE_CODE
    and   NVL(B.ORG_ID, -1) = NVL(T.ORG_ID, -1)
    );
Line: 736

  update OE_PAYMENT_TYPES_TL T set (
      NAME,
      DESCRIPTION
    ) = (select
      B.NAME,
      B.DESCRIPTION
    from OE_PAYMENT_TYPES_TL B
    where B.PAYMENT_TYPE_CODE = T.PAYMENT_TYPE_CODE
    and NVL(B.ORG_ID, -1) = NVL(T.ORG_ID, -1)
    and B.LANGUAGE = T.SOURCE_LANG)
  where (
      T.PAYMENT_TYPE_CODE,
      NVL(T.ORG_ID,-1),
      T.LANGUAGE
  ) in (select
      SUBT.PAYMENT_TYPE_CODE,
      NVL(SUBT.ORG_ID, -1),
      SUBT.LANGUAGE
    from OE_PAYMENT_TYPES_TL SUBB, OE_PAYMENT_TYPES_TL SUBT
    where SUBB.PAYMENT_TYPE_CODE = SUBT.PAYMENT_TYPE_CODE
    and NVL(SUBB.ORG_ID, -1) = NVL(SUBT.ORG_ID, -1)
    and SUBB.LANGUAGE = SUBT.SOURCE_LANG
    and (SUBB.NAME <> SUBT.NAME
      or SUBB.DESCRIPTION <> SUBT.DESCRIPTION
      or (SUBB.DESCRIPTION is null and SUBT.DESCRIPTION is not null)
      or (SUBB.DESCRIPTION is not null and SUBT.DESCRIPTION is null)
  ));
Line: 764

  insert into OE_PAYMENT_TYPES_TL (
    PAYMENT_TYPE_CODE,
    ORG_ID,
    NAME,
    DESCRIPTION,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    LAST_UPDATE_LOGIN,
    PROGRAM_APPLICATION_ID,
    PROGRAM_ID,
    REQUEST_ID,
    LANGUAGE,
    SOURCE_LANG
  ) select
    B.PAYMENT_TYPE_CODE,
    B.ORG_ID,
    B.NAME,
    B.DESCRIPTION,
    B.CREATION_DATE,
    B.CREATED_BY,
    B.LAST_UPDATE_DATE,
    B.LAST_UPDATED_BY,
    B.LAST_UPDATE_LOGIN,
    B.PROGRAM_APPLICATION_ID,
    B.PROGRAM_ID,
    B.REQUEST_ID,
    L.LANGUAGE_CODE,
    B.SOURCE_LANG
  from OE_PAYMENT_TYPES_TL B, FND_LANGUAGES L
  where L.INSTALLED_FLAG in ('I', 'B')
  and B.LANGUAGE = userenv('LANG')
  and not exists
    (select NULL
    from OE_PAYMENT_TYPES_TL T
    where T.PAYMENT_TYPE_CODE = B.PAYMENT_TYPE_CODE
    and nvl(T.ORG_ID, -1) = NVL(B.ORG_ID, -1)
    and T.LANGUAGE = L.LANGUAGE_CODE);