DBA Data[Home] [Help]

APPS.IBY_CREDITCARD_PKG dependencies on FND_API

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

273: -- ARGS: p_commit => whether to commit the changes
274: -- p_sys_key => system security key; used to decrypt instruments
275: --
276: PROCEDURE Decrypt_Instruments
277: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
278: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
279: );
280:
281: --

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

284: -- ARGS: p_commit => whether to commit the changes
285: -- p_sys_key => system security key; used to encrypt instruments
286: --
287: PROCEDURE Encrypt_Instruments
288: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
289: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
290: );
291:
292: --

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

295: -- ARGS: p_commit => whether to commit the changes
296: -- p_sys_key => system security key; used to encrypt instruments
297: --
298: PROCEDURE Remask_Instruments
299: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
300: p_sys_key IN iby_security_pkg.DES3_KEY_TYPE
301: );
302:
303: -- USE: Compresses a card number into the minimum clear text

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

351: -- USE: Encrypts the other sensitive card info and returns the
352: -- corresponding security segment_IDs
353: --
354: PROCEDURE Encrypt_Card_Info
355: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
356: p_sys_security_key IN iby_security_pkg.DES3_KEY_TYPE,
357: p_expiry_date IN DATE,
358: p_chname IN VARCHAR2,
359: x_exp_segment_id OUT NOCOPY NUMBER,

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

365: -- USE: Updates the EXPIRED_FLAG for all the active credit cards
366: --
367: --
368: PROCEDURE Mark_Expired_Cards
369: (p_commit IN VARCHAR2 := FND_API.G_TRUE,
370: p_sys_sec_key IN iby_security_pkg.DES3_KEY_TYPE
371: );
372:
373: END iby_creditcard_pkg;