DBA Data[Home] [Help]

APPS.PO_RESERVATION_MAINTAIN_SV dependencies on FND_API

Line 110: , p_init_msg_lst => fnd_api.g_true

106: x_return_status => l_return_status
107: , x_msg_count => l_msg_count
108: , x_msg_data => l_msg_data
109: , p_api_version_number => 1.0
110: , p_init_msg_lst => fnd_api.g_true
111: , p_header_id => p_header_id
112: , p_line_id => p_line_id
113: , p_line_location_id => p_line_location_id
114: , p_distribution_id => p_distribution_id

Line 121: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

117: , p_ordered_quantity => p_ordered_quantity
118: , p_ordered_uom => p_ordered_uom
119: );
120:
121: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
122: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
123: RAISE FND_API.g_exc_unexpected_error;
124: ELSE
125: x_return_status := l_return_status;

Line 122: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

118: , p_ordered_uom => p_ordered_uom
119: );
120:
121: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
122: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
123: RAISE FND_API.g_exc_unexpected_error;
124: ELSE
125: x_return_status := l_return_status;
126: /* 10209242 */

Line 123: RAISE FND_API.g_exc_unexpected_error;

119: );
120:
121: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
122: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
123: RAISE FND_API.g_exc_unexpected_error;
124: ELSE
125: x_return_status := l_return_status;
126: /* 10209242 */
127: END IF;

Line 140: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

136:
137:
138: EXCEPTION
139: WHEN OTHERS THEN
140: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
141: IF (PO_LOG.d_exc) THEN
142: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
143: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
144: PO_LOG.proc_end(d_module);