DBA Data[Home] [Help]

APPS.FTE_TP_GRP dependencies on FTE_TRIP_MOVES_PVT

Line 1198: l_trip_move_rec FTE_TRIP_MOVES_PVT.trip_moves_rec_type;

1194: l_tm_index NUMBER;
1195: l_id NUMBER;
1196: l_return_status VARCHAR2(1);
1197: l_move_rec FTE_MOVES_PVT.move_rec_type;
1198: l_trip_move_rec FTE_TRIP_MOVES_PVT.trip_moves_rec_type;
1199:
1200:
1201: BEGIN
1202: l_debug_on := WSH_DEBUG_INTERFACE.g_debug;

Line 1259: fte_trip_moves_pvt.delete_trip_moves(

1255:
1256: ELSIF x_obsoleted_trip_moves(l_tm_index).move_id IS NOT NULL THEN
1257:
1258: -- delete the trip_move segment
1259: fte_trip_moves_pvt.delete_trip_moves(
1260: p_trip_move_id => x_obsoleted_trip_moves(l_tm_index).trip_move_id,
1261: x_return_status => l_return_status);
1262: IF l_return_status IN (WSH_UTIL_CORE.G_RET_STS_ERROR,
1263: WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR) THEN

Line 1354: fte_trip_moves_pvt.create_trip_moves(

1350: l_trip_move_rec.sequence_number := x_plan_trip_moves(l_tm_index).sequence_number;
1351: l_trip_move_rec.trip_move_id := x_plan_trip_moves(l_tm_index).trip_move_id;
1352:
1353: IF x_plan_trip_moves(l_tm_index).trip_move_id IS NULL THEN
1354: fte_trip_moves_pvt.create_trip_moves(
1355: p_trip_moves_info => l_trip_move_rec,
1356: x_trip_move_id => l_id,
1357: x_return_status => l_return_status);
1358: IF l_return_status IN (WSH_UTIL_CORE.G_RET_STS_ERROR, WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR) THEN

Line 1374: fte_trip_moves_pvt.update_trip_moves(

1370: RETURN;
1371: END IF;
1372: x_plan_trip_moves(l_tm_index).trip_move_id := l_id;
1373: ELSE
1374: fte_trip_moves_pvt.update_trip_moves(
1375: p_trip_moves_info => l_trip_move_rec,
1376: x_return_status => l_return_status);
1377: IF l_return_status IN (WSH_UTIL_CORE.G_RET_STS_ERROR, WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR) THEN
1378: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;