DBA Data[Home] [Help]

APPS.HZ_IMP_BATCH_SUMMARY_V2PUB dependencies on FND_API

Line 19: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

15: *
16: * ARGUMENTS
17: * IN:
18: * p_init_msg_list Initialize message stack if it is set to
19: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
20: * p_batch_name Import batch name.
21: * p_description Import batch description.
22: * p_original_system Original system from which data brought into this batch
23: * p_load_type Load type of the data, e.g. DNB, CSV

Line 29: * be FND_API.G_RET_STS_SUCCESS (success),

25: * IN/OUT:
26: * OUT:
27: * x_batch_id Batch ID generated by system.
28: * x_return_status Return status after the call. The status can
29: * be FND_API.G_RET_STS_SUCCESS (success),
30: * FND_API.G_RET_STS_ERROR (error),
31: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
32: * x_msg_count Number of messages in message stack.
33: * x_msg_data Message text if x_msg_count is 1.

Line 30: * FND_API.G_RET_STS_ERROR (error),

26: * OUT:
27: * x_batch_id Batch ID generated by system.
28: * x_return_status Return status after the call. The status can
29: * be FND_API.G_RET_STS_SUCCESS (success),
30: * FND_API.G_RET_STS_ERROR (error),
31: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
32: * x_msg_count Number of messages in message stack.
33: * x_msg_data Message text if x_msg_count is 1.
34: *

Line 31: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

27: * x_batch_id Batch ID generated by system.
28: * x_return_status Return status after the call. The status can
29: * be FND_API.G_RET_STS_SUCCESS (success),
30: * FND_API.G_RET_STS_ERROR (error),
31: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
32: * x_msg_count Number of messages in message stack.
33: * x_msg_data Message text if x_msg_count is 1.
34: *
35: * NOTES

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

40: *
41: */
42:
43: PROCEDURE create_import_batch (
44: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
45: p_batch_name IN VARCHAR2,
46: p_description IN VARCHAR2,
47: p_original_system IN VARCHAR2,
48: p_load_type IN VARCHAR2 := NULL,

Line 67: * FND_API.G_TRUE. Default is FND_API.G_FALSE.

63: *
64: * ARGUMENTS
65: * IN:
66: * p_init_msg_list Initialize message stack if it is set to
67: * FND_API.G_TRUE. Default is FND_API.G_FALSE.
68: * p_batch_id ID of the batch you want to activate for import processing
69: * IN/OUT:
70: * OUT:
71: * x_return_status Return status after the call. The status can

Line 72: * be FND_API.G_RET_STS_SUCCESS (success),

68: * p_batch_id ID of the batch you want to activate for import processing
69: * IN/OUT:
70: * OUT:
71: * x_return_status Return status after the call. The status can
72: * be FND_API.G_RET_STS_SUCCESS (success),
73: * FND_API.G_RET_STS_ERROR (error),
74: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
75: * x_msg_count Number of messages in message stack.
76: * x_msg_data Message text if x_msg_count is 1.

Line 73: * FND_API.G_RET_STS_ERROR (error),

69: * IN/OUT:
70: * OUT:
71: * x_return_status Return status after the call. The status can
72: * be FND_API.G_RET_STS_SUCCESS (success),
73: * FND_API.G_RET_STS_ERROR (error),
74: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
75: * x_msg_count Number of messages in message stack.
76: * x_msg_data Message text if x_msg_count is 1.
77: *

Line 74: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

70: * OUT:
71: * x_return_status Return status after the call. The status can
72: * be FND_API.G_RET_STS_SUCCESS (success),
73: * FND_API.G_RET_STS_ERROR (error),
74: * FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
75: * x_msg_count Number of messages in message stack.
76: * x_msg_data Message text if x_msg_count is 1.
77: *
78: * NOTES

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

83: *
84: */
85:
86: PROCEDURE activate_batch (
87: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
88: p_batch_id IN NUMBER,
89: x_return_status OUT NOCOPY VARCHAR2,
90: x_msg_count OUT NOCOPY NUMBER,
91: x_msg_data OUT NOCOPY VARCHAR2