DBA Data[Home] [Help]

APPS.IBY_CREDITCARD_PKG dependencies on FND_API

Line 348: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

344: -- ARGS: p_commit => whether to commit the changes
345: -- p_sys_key => system security key; used to decrypt instruments
346: --
347: PROCEDURE Decrypt_Instruments
348: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
349: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
350: );
351:
352: --

Line 359: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

355: -- ARGS: p_commit => whether to commit the changes
356: -- p_sys_key => system security key; used to encrypt instruments
357: --
358: PROCEDURE Encrypt_Instruments
359: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
360: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
361: );
362:
363: --

Line 370: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

366: -- ARGS: p_commit => whether to commit the changes
367: -- p_sys_key => system security key; used to encrypt instruments
368: --
369: PROCEDURE Remask_Instruments
370: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
371: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
372: );
373:
374: -- USE: Compresses a card number into the minimum clear text

Line 426: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

422: -- USE: Encrypts the other sensitive card info and returns the
423: -- corresponding security segment_IDs
424: --
425: PROCEDURE Encrypt_Card_Info
426: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
427: p_sys_security_key IN iby_security_pkg.DES3_KEY_TYPE,
428: p_expiry_date IN DATE,
429: p_expSegmentId IN NUMBER,
430: p_chname IN VARCHAR2,

Line 447: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

443: -- USE: Updates the EXPIRED_FLAG for all the active credit cards
444: --
445: --
446: PROCEDURE Mark_Expired_Cards
447: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
448: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE
449: );
450:
451: --

Line 457: (p_commit IN VARCHAR2 := FND_API.G_TRUE,

453: -- encrypting the corresponding chname and expirydate
454: --
455: --
456: PROCEDURE Upgrade_Encrypted_Instruments
457: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
458: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE
459: );
460:
461: