DBA Data[Home] [Help]

APPS.WSM_LBJ_INTERFACE_PVT dependencies on BOM_SETUP_TYPES

Line 1937: from BOM_SETUP_TYPES bst

1933: begin
1934:
1935: select bst.setup_id
1936: into l_setup_id
1937: from BOM_SETUP_TYPES bst
1938: where bst.setup_code = v_wljdi_setup_code(l_d)
1939: and bst.organization_id = p_org_id;
1940:
1941: v_wljdi_setup_id(l_d) :=l_setup_id;

Line 3388: from BOM_SETUP_TYPES bst

3384: if l_setup_id is NULL and l_setup_code is NOT NULL then
3385: begin
3386: select bst.setup_id
3387: into l_setup_id
3388: from BOM_SETUP_TYPES bst
3389: where bst.setup_code = l_setup_code
3390: and bst.organization_id = p_org_id;
3391:
3392: exception

Line 3585: from bom_setup_types bst

3581: if l_setup_id is NULL and l_setup_code is NOT NULL then
3582: begin
3583: select bst.setup_id
3584: into l_setup_id
3585: from bom_setup_types bst
3586: where bst.setup_code = l_setup_code
3587: and bst.organization_id = p_org_id;
3588:
3589: exception

Line 13805: from bom_setup_types bst

13801: if p_new_res_tbl(l_index).setup_id is NULL and p_new_res_tbl(l_index).setup_code is NOT NULL then
13802: begin
13803: select bst.setup_id
13804: into p_new_res_tbl(l_index).setup_id
13805: from bom_setup_types bst
13806: where bst.setup_code = p_new_res_tbl(l_index).setup_code
13807: and bst.organization_id = p_org_id;
13808:
13809: exception