With the onslaught of online, Omni channel is a fast evolving area. There is a kind of convergence happening between offline and online and this model that has emerged is Omni channel retail. In today's Brick and Mortar stores have to innovate to sta
InventoryFull description
Output Determination in Inventory ManagementFull description
ikmFull description
regarding the power sector in dr.nttps power stationFull description
Full description
FULL Big Band - Gordon Goodwin - Big Phat BandFull description
Full description
lesson plan in physical educationFull description
Full description
Sample of Inventory MEmoFull description
itbaFull description
updFull description
untuk pemeriksaan leukositFull description
Descripción: MICROBIOLOGIA-MEDIOS DE AULIVO DE AEROBIOS MESOLFILO
It's about stock, futures trading technical analysisFull description
Update Physical Count in Inventory
Step 1- Login to Oracle http://erptest.local:8001 /with your respective credentials.
Enter the user name and password. Click on login.
Step 2- Go to the responsibility as WASAC Inventory User. Step 3 - Find the organization.
Step 8 -Check the physical count tag in physical inventory.
Figure 9- Physical Inventory Tags
Click on no. Run the following program and it will automatically fill the entries in physical inventory tag counts(GHP). SET SERVEROUTPUT ON; DECLARE L_TAG_RECORD_TBL INV_PHY_INV_PUB.PI_TAG_RECORDS; L_TAG_RECORD INV_PHY_INV_PUB.PI_TAG_RECORD; L_RETURN_STATUS VARCHAR2(100); L_RETURN_MSG VARCHAR(2000); L_DEBUG NUMBER; L_ORG_ID NUMBER; L_USER_ID NUMBER := -1; L_RESP_ID NUMBER := -1; L_APPLICATION_ID NUMBER := -1; L_USER_NAME VARCHAR2(30) := 'HYBERIT'; -- user name l_resp_name VARCHAR2(30) := 'WASAC Inventory User'; -- responsibility name L_INVENTORY_ITEM_ID NUMBER; L_UOM VARCHAR2(20); L_TAG_ID NUMBER; L_TAG_NUMBER NUMBER; L_SUBINVENTORY_CODE VARCHAR2(20); l_Count number; l_physical_inventory_name varchar2(200); l_physical_inventory_id number; CURSOR ITEM_DETAIL IS SELECT * FROM XX_ITEM_dETAIL where organization_id=85; BEGIN
-- Get the USER_ID from FND_USER Table SELECT user_id INTO l_user_id FROM fnd_user WHERE user_name = l_user_name; -- Get the application_id and responsibility_id SELECT application_id, responsibility_id INTO l_application_id, l_resp_id FROM fnd_responsibility_vl WHERE responsibility_name = l_resp_name; -- intializing the link to the application FND_GLOBAL.APPS_INITIALIZE(l_user_id, l_resp_id, l_application_id); dbms_output.put_line('Initialized applications context: '|| l_user_id || ' '|| l_resp_id ||' '|| l_application_id ); INV_LOG_UTIL.TRACE ('Come into update_tags1 ','INV_PHY_INV_PUB',11);
FOR I IN ITEM_dETAIL LOOP l_count :=0; BEGIN SELECT INVENTORY_ITEM_ID, PRIMARY_UOM_CODE INTO L_INVENTORY_ITEM_ID,L_UOM FROM MTL_sYSTEM_ITEMS_B WHERE SEGMENT1=I.SEGMENT1 AND SEGMENT2=I.SEGMENT2 AND ORGANIZATION_ID=I.ORGANIZATION_ID; EXCEPTION when no_data_found then dbms_output.put_line('this item does not exit'); l_count :=l_count+1; end; begin SELECT PHYSICAL_INVENTORY_ID, physical_inventory_name INTO l_PHYSICAL_INVENTORY_ID,l_physical_inventory_name FROM MTL_PHYSICAL_INVENTORIES WHERE ORGANIZATION_ID=I.ORGANIZATION_ID; EXCEPTION when no_data_found then dbms_output.put_line('this physical inventory does not exit'); l_count :=l_count+1; end; begin SELECT TAG_ID, TAG_NUMBER, SUBINVENTORY INTO L_TAG_ID, L_TAG_NUMBER, L_SUBINVENTORY_CODE FROM MTL_PHYSICAL_INVENTORY_TAGS WHERE ORGANIZATION_ID=I.ORGANIZATION_ID AND INVENTORY_ITEM_ID=I.INVENTORY_ITEM_ID; EXCEPTION when no_data_found then dbms_output.put_line('this tag does not exit'); l_count :=l_count+1; end; if l_count =0 then