DBA Data[Home] [Help]

APPS.HZ_DUP_MERGE_PUB dependencies on FND_API

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

28: -- p_note_text note for the merge request
29: --
30: -- OUT:
31: -- x_return_status Return status after the call. The status can
32: -- be fnd_api.g_ret_sts_success (success),
33: -- fnd_api.g_ret_sts_error (error),
34: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
35: -- x_msg_count Number of messages in message stack.
36: -- x_msg_data Message text if x_msg_count is 1.

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

29: --
30: -- OUT:
31: -- x_return_status Return status after the call. The status can
32: -- be fnd_api.g_ret_sts_success (success),
33: -- fnd_api.g_ret_sts_error (error),
34: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
35: -- x_msg_count Number of messages in message stack.
36: -- x_msg_data Message text if x_msg_count is 1.
37: -- x_merge_request_id merge request id

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

30: -- OUT:
31: -- x_return_status Return status after the call. The status can
32: -- be fnd_api.g_ret_sts_success (success),
33: -- fnd_api.g_ret_sts_error (error),
34: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
35: -- x_msg_count Number of messages in message stack.
36: -- x_msg_data Message text if x_msg_count is 1.
37: -- x_merge_request_id merge request id
38: --

Line 51: * @param p_init_msg_list Indicates if the message stack is initialized.Default value: FND_API.G_FALSE.

47: *of a party or parties that are considered similar and potential candidates for merge. To
48: *successfully call this API, pass a list of duplicate party IDs or source system
49: *management mappings, and optionally some note text.
50: *
51: * @param p_init_msg_list Indicates if the message stack is initialized.Default value: FND_API.G_FALSE.
52: * @param p_dup_id_objs The PL/SQL table of records structure that has the duplicate party ID information.
53: * @param p_note_text Note text for the merge request.
54: * @param x_return_status A code indicating whether any errors occurred during processing.
55: * @param x_msg_count Indicates how many messages exist on the message stack upon completion of processing.

Line 66: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

62: * @rep:doccd 120hztig.pdf Data Quality Management Availability APIs, Oracle Trading Community Architecture Technical Implementation Guide
63: */
64:
65: PROCEDURE create_dup_merge_request(
66: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
67: p_dup_id_objs IN HZ_DUP_ID_OBJ_TBL,
68: p_note_text IN VARCHAR2,
69: x_return_status OUT NOCOPY VARCHAR2,
70: x_msg_count OUT NOCOPY NUMBER,