DBA Data[Home] [Help]

APPS.HZ_PAYMENT_METHOD_PUB dependencies on FND_API

Line 41: -- be fnd_api.g_ret_sts_success (success),

37: -- IN:
38: -- p_payment_method_rec Payment method record.
39: -- OUT:
40: -- x_return_status Return status after the call. The status can
41: -- be fnd_api.g_ret_sts_success (success),
42: -- fnd_api.g_ret_sts_error (error),
43: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
44: -- x_msg_count Number of messages in message stack.
45: -- x_msg_data Message text if x_msg_count is 1.

Line 42: -- fnd_api.g_ret_sts_error (error),

38: -- p_payment_method_rec Payment method record.
39: -- OUT:
40: -- x_return_status Return status after the call. The status can
41: -- be fnd_api.g_ret_sts_success (success),
42: -- fnd_api.g_ret_sts_error (error),
43: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
44: -- x_msg_count Number of messages in message stack.
45: -- x_msg_data Message text if x_msg_count is 1.
46: -- x_cust_receipt_method_id Payment method Id.

Line 43: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

39: -- OUT:
40: -- x_return_status Return status after the call. The status can
41: -- be fnd_api.g_ret_sts_success (success),
42: -- fnd_api.g_ret_sts_error (error),
43: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
44: -- x_msg_count Number of messages in message stack.
45: -- x_msg_data Message text if x_msg_count is 1.
46: -- x_cust_receipt_method_id Payment method Id.
47: --

Line 56: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

52: -- 14-DEC-2004 Arnold Ng Created.
53: --
54:
55: PROCEDURE create_payment_method (
56: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
57: p_payment_method_rec IN payment_method_rec_type,
58: x_cust_receipt_method_id OUT NOCOPY NUMBER,
59: x_return_status OUT NOCOPY VARCHAR2,
60: x_msg_count OUT NOCOPY NUMBER,

Line 77: -- be fnd_api.g_ret_sts_success (success),

73: -- IN/OUT:
74: -- px_last_update_date Last update date of payment method record.
75: -- OUT:
76: -- x_return_status Return status after the call. The status can
77: -- be fnd_api.g_ret_sts_success (success),
78: -- fnd_api.g_ret_sts_error (error),
79: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
80: -- x_msg_count Number of messages in message stack.
81: -- x_msg_data Message text if x_msg_count is 1.

Line 78: -- fnd_api.g_ret_sts_error (error),

74: -- px_last_update_date Last update date of payment method record.
75: -- OUT:
76: -- x_return_status Return status after the call. The status can
77: -- be fnd_api.g_ret_sts_success (success),
78: -- fnd_api.g_ret_sts_error (error),
79: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
80: -- x_msg_count Number of messages in message stack.
81: -- x_msg_data Message text if x_msg_count is 1.
82: --

Line 79: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

75: -- OUT:
76: -- x_return_status Return status after the call. The status can
77: -- be fnd_api.g_ret_sts_success (success),
78: -- fnd_api.g_ret_sts_error (error),
79: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
80: -- x_msg_count Number of messages in message stack.
81: -- x_msg_data Message text if x_msg_count is 1.
82: --
83: -- NOTES

Line 91: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

87: -- 14-DEC-2004 Arnold Ng Created.
88: --
89:
90: PROCEDURE update_payment_method (
91: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
92: p_payment_method_rec IN payment_method_rec_type,
93: px_last_update_date IN OUT NOCOPY DATE,
94: x_return_status OUT NOCOPY VARCHAR2,
95: x_msg_count OUT NOCOPY NUMBER,

Line 111: -- be fnd_api.g_ret_sts_success (success),

107: -- p_create_update_flag Create or update flag.
108: -- p_payment_method_rec Payment method record.
109: -- OUT:
110: -- x_return_status Return status after the call. The status can
111: -- be fnd_api.g_ret_sts_success (success),
112: -- fnd_api.g_ret_sts_error (error),
113: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
114: --
115: -- NOTES

Line 112: -- fnd_api.g_ret_sts_error (error),

108: -- p_payment_method_rec Payment method record.
109: -- OUT:
110: -- x_return_status Return status after the call. The status can
111: -- be fnd_api.g_ret_sts_success (success),
112: -- fnd_api.g_ret_sts_error (error),
113: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
114: --
115: -- NOTES
116: --

Line 113: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

109: -- OUT:
110: -- x_return_status Return status after the call. The status can
111: -- be fnd_api.g_ret_sts_success (success),
112: -- fnd_api.g_ret_sts_error (error),
113: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
114: --
115: -- NOTES
116: --
117: -- MODIFICATION HISTORY