DBA Data[Home] [Help]

APPS.WMS_OP_DEST_SYS_APIS dependencies on FND_API

Line 19: g_ret_sts_success VARCHAR2(1) := fnd_api.g_ret_sts_success;

15: g_loc_type_staging_lane NUMBER := inv_globals.g_loc_type_staging_lane;
16: g_wms_task_type_pick NUMBER := wms_globals.g_wms_task_type_pick;
17: g_wms_task_type_stg_move NUMBER := wms_globals.g_wms_task_type_stg_move;
18:
19: g_ret_sts_success VARCHAR2(1) := fnd_api.g_ret_sts_success;
20: g_ret_sts_unexp_error VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;
21: g_ret_sts_error VARCHAR2(1) := fnd_api.g_ret_sts_error;
22:
23:

Line 20: g_ret_sts_unexp_error VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;

16: g_wms_task_type_pick NUMBER := wms_globals.g_wms_task_type_pick;
17: g_wms_task_type_stg_move NUMBER := wms_globals.g_wms_task_type_stg_move;
18:
19: g_ret_sts_success VARCHAR2(1) := fnd_api.g_ret_sts_success;
20: g_ret_sts_unexp_error VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;
21: g_ret_sts_error VARCHAR2(1) := fnd_api.g_ret_sts_error;
22:
23:
24: PROCEDURE print_debug(p_err_msg VARCHAR2,

Line 21: g_ret_sts_error VARCHAR2(1) := fnd_api.g_ret_sts_error;

17: g_wms_task_type_stg_move NUMBER := wms_globals.g_wms_task_type_stg_move;
18:
19: g_ret_sts_success VARCHAR2(1) := fnd_api.g_ret_sts_success;
20: g_ret_sts_unexp_error VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;
21: g_ret_sts_error VARCHAR2(1) := fnd_api.g_ret_sts_error;
22:
23:
24: PROCEDURE print_debug(p_err_msg VARCHAR2,
25: p_level NUMBER)

Line 1661: l_api_return_status := fnd_api.g_ret_sts_success;

1657: END IF;
1658:
1659: IF l_stop_id IS NOT NULL THEN
1660: -- {
1661: l_api_return_status := fnd_api.g_ret_sts_success;
1662: WMS_TRIPSTOPS_STAGELANES_PUB.get_stgln_for_tripstop
1663: ( p_org_id => l_current_task_rec.organization_id
1664: , p_trip_stop => l_stop_id
1665: , x_stg_ln_id => x_locator_id

Line 1672: IF l_api_return_status = fnd_api.g_ret_sts_success THEN

1668: , x_msg_count => l_msg_count
1669: , x_msg_data => l_msg_data
1670: );
1671:
1672: IF l_api_return_status = fnd_api.g_ret_sts_success THEN
1673: x_zone_id := NULL;
1674: IF (l_debug = 1) THEN
1675: print_debug('Found staging sub for dock appt: '
1676: || x_subinventory_code, 4);