DBA Data[Home] [Help]

APPS.WMS_DIRECT_SHIP_PVT dependencies on WSH_CONTAINER_GRP

Line 6899: l_container_rec wsh_container_grp.changedattributetabtype;

6895: l_net_weight NUMBER;
6896: l_deliv_det_id NUMBER;
6897: l_container_name wsh_delivery_details.container_name%TYPE;
6898: l_container_flag wsh_delivery_details.container_flag%TYPE;
6899: l_container_rec wsh_container_grp.changedattributetabtype;
6900: -- added for bug 2529382
6901: l_status_code VARCHAR2(2);
6902: l_container_new_name VARCHAR2(30);
6903: --Bug number:2701925:

Line 6979: 2. Replace API call to wsh_container_grp.update_container

6975: /* Release 12(K): LPN Synchronization
6976: 1. Uniqueness constraint on WDD.container_name is removed
6977: So it is not required to append characters to the LPNs
6978: to get a new containers name
6979: 2. Replace API call to wsh_container_grp.update_container
6980: with new API call WSH_WMS_LPN_GRP.Create_Update_Containers
6981: */
6982: /*
6983: IF (l_debug = 1) THEN

Line 7050: Replace the call to wsh_container_grp.create_containers

7046: --If the LPN does not exist in in wsh_delivery_details, create a new container
7047: IF l_count = 0 THEN
7048:
7049: /* Release 12 (K): LPN Synchronization
7050: Replace the call to wsh_container_grp.create_containers
7051: with new API call to WSH_WMS_LPN_GRP.Create_Update_Containers
7052:
7053: The pre-R12 code was doing in two steps, create_container then update_container
7054: With the new API call, it replaces both previous API calls */

Line 7507: -- Replaced call to wsh_container_grp.container_actions

7503: CLOSE lpn_childs;
7504:
7505: IF l_wsh_lpn_id_tbl.COUNT > 0 THEN
7506: -- Relase 12: LPN SyncUp
7507: -- Replaced call to wsh_container_grp.container_actions
7508: -- with new API call WSH_WMS_LPN_GRP.Delivery_Detail_Action
7509: l_wsh_action_prms.caller := 'WMS';
7510: l_wsh_action_prms.action_code := p_action_code;
7511: l_wsh_action_prms.lpn_rec.organization_id := p_organization_id;

Line 7537: --debug('WSH_Container_Grp.Container_Actions returns an exec. error','Pack_Lpns);

7533: x_action_out_rec => l_wsh_action_out_rec
7534: );
7535:
7536: IF (x_return_status IN(fnd_api.g_ret_sts_error)) THEN
7537: --debug('WSH_Container_Grp.Container_Actions returns an exec. error','Pack_Lpns);
7538: IF (l_debug = 1) THEN
7539: DEBUG('Exec. error in packing' || SUBSTR(SQLERRM, 1, 240) || ' ret st:' || x_return_status, 'Container_Nesting');
7540: END IF;
7541:

Line 7544: --debug('WSH_Container_Grp.Container_Actions returns an unexp. error','Pack_Lpns);

7540: END IF;
7541:
7542: RAISE fnd_api.g_exc_error;
7543: ELSIF(x_return_status = fnd_api.g_ret_sts_unexp_error) THEN
7544: --debug('WSH_Container_Grp.Container_Actions returns an unexp. error','Pack_Lpns);
7545: IF (l_debug = 1) THEN
7546: DEBUG('Unexp. error in packing', 'Container_Nesting');
7547: END IF;
7548:

Line 7592: wsh_container_grp.container_actions

7588: END;
7589:
7590: IF l_delivery_planned_flag NOT IN ('Y','F') THEN
7591: DEBUG('Delivery not planned. Just unassign the outer LPN lines','Container_Nesting');
7592: wsh_container_grp.container_actions
7593: (p_api_version => 1.0,
7594: p_init_msg_list => G_TRUE,
7595: p_commit => G_FALSE,
7596: p_validation_level => fnd_api.g_valid_level_full,

Line 7609: debug('wsh_container_grp.container_actions returned ' ||

7605:
7606: IF x_return_status IN (G_RET_STS_ERROR,G_RET_STS_UNEXP_ERROR)
7607: THEN
7608: debug('Unassign from delivery failed' , 'Container_Nesting');
7609: debug('wsh_container_grp.container_actions returned ' ||
7610: x_return_status,'Container_Nesting');
7611: RAISE fnd_api.g_exc_unexpected_error;
7612: END IF;
7613: ELSE

Line 7677: wsh_container_grp.container_actions

7673: RAISE fnd_api.g_exc_unexpected_error;
7674: END IF;
7675:
7676: DEBUG('Unassign the lines from delivery','Container_Nesting');
7677: wsh_container_grp.container_actions
7678: (p_api_version => 1.0,
7679: p_init_msg_list => G_TRUE,
7680: p_commit => G_FALSE,
7681: p_validation_level => fnd_api.g_valid_level_full,