DBA Data[Home] [Help]

APPS.WSM_LBJ_INTERFACE_PVT dependencies on BOM_SETUP_TYPES

Line 1942: from BOM_SETUP_TYPES bst

1938: begin
1939:
1940: select bst.setup_id
1941: into l_setup_id
1942: from BOM_SETUP_TYPES bst
1943: where bst.setup_code = v_wljdi_setup_code(l_d)
1944: and bst.organization_id = p_org_id;
1945:
1946: v_wljdi_setup_id(l_d) :=l_setup_id;

Line 3393: from BOM_SETUP_TYPES bst

3389: if l_setup_id is NULL and l_setup_code is NOT NULL then
3390: begin
3391: select bst.setup_id
3392: into l_setup_id
3393: from BOM_SETUP_TYPES bst
3394: where bst.setup_code = l_setup_code
3395: and bst.organization_id = p_org_id;
3396:
3397: exception

Line 3590: from bom_setup_types bst

3586: if l_setup_id is NULL and l_setup_code is NOT NULL then
3587: begin
3588: select bst.setup_id
3589: into l_setup_id
3590: from bom_setup_types bst
3591: where bst.setup_code = l_setup_code
3592: and bst.organization_id = p_org_id;
3593:
3594: exception

Line 13909: from bom_setup_types bst

13905: if p_new_res_tbl(l_index).setup_id is NULL and p_new_res_tbl(l_index).setup_code is NOT NULL then
13906: begin
13907: select bst.setup_id
13908: into p_new_res_tbl(l_index).setup_id
13909: from bom_setup_types bst
13910: where bst.setup_code = p_new_res_tbl(l_index).setup_code
13911: and bst.organization_id = p_org_id;
13912:
13913: exception