DBA Data[Home] [Help]

APPS.FA_LEASE_PITEMS_PKG dependencies on FA_API_TYPES

Line 25: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);

21: X_Last_Update_Login IN NUMBER,
22: X_Created_by IN NUMBER,
23: X_Creation_Date IN DATE,
24: X_Request_ID IN NUMBER,
25: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);
26:
27: /* This is a wrapper procedure for updating a row of table
28: FA_LEASE_PAYMENT_ITEMS.*/
29: PROCEDURE Update_Row(

Line 49: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);

45: X_Last_Update_Login IN NUMBER,
46: X_Created_by IN NUMBER,
47: X_Creation_Date IN DATE,
48: X_Request_ID IN NUMBER := NULL,
49: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);
50:
51: /* Procedure Lock_Rows() locks all rows in FA_LEASE_PAYMENT_ITEMS
52: associated with the specified lease.*/
53: PROCEDURE Lock_Rows(

Line 55: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);

51: /* Procedure Lock_Rows() locks all rows in FA_LEASE_PAYMENT_ITEMS
52: associated with the specified lease.*/
53: PROCEDURE Lock_Rows(
54: X_Lease_ID IN NUMBER,
55: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);
56:
57: /* Procedure Delete_Rows() deletes all rows in FA_LEASE_PAYMENT_ITEMS
58: associated with the specified lease.*/
59: PROCEDURE Delete_Rows(

Line 61: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);

57: /* Procedure Delete_Rows() deletes all rows in FA_LEASE_PAYMENT_ITEMS
58: associated with the specified lease.*/
59: PROCEDURE Delete_Rows(
60: X_Lease_ID IN NUMBER,
61: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null);
62:
63: /* Function Payments_Itemize() will create payment items for a lease.
64: New rows will be inserted into table FA_LEASE_PAYMENT_ITEMS. It will
65: be called after a user associates a schedule with a lease. A user

Line 76: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null)

72: P_Lessor_ID IN NUMBER,
73: P_Lessor_Site_ID IN NUMBER := NULL,
74: P_Dist_Code_Combination_ID IN NUMBER := NULL,
75: P_Terms_ID IN NUMBER,
76: p_log_level_rec IN FA_API_TYPES.log_level_rec_type default null)
77:
78: RETURN BOOLEAN;
79:
80: END FA_LEASE_PITEMS_PKG;