In WM how to clear partially difference in an open storage type with one mi

Hi
I would like to know how in WM to clear partially differences in an open storage type with one mixed bin not totally counted?
thanks in advance
cadanj

Please do the inventory check for the whole bin.Count the each quant of the material. Difference can be cleared.Use following transactions.
1.LI01N-Create Inventory document.
2.LI11N-Enter inventory count.
3.LI20-Clear WM differences
4.LI21-Clera IM differences.
Let me know if u have any other question.
Regards,
PRashant

Similar Messages

  • How see the company when my phone receive a call with one of my contact ?

    How see the company when my phone receive a call with one of my contact ?

    It's a good idea. Suggest it to Apple here: http://www.apple.com/feedback/iphone.html

  • How to insert into 2 tables from the same page (with one button  link)

    Hi,
    I have the following 2 tables....
    Employees
    emp_id number not null
    name varchar2(30) not null
    email varchar2(50)
    hire_date date
    dept_id number
    PK = emp_id
    FK = dept_id
    Notes
    note_id number not null
    added_on date not null
    added_by varchar2(30) not null
    note varchar2(4000)
    emp_id number not null
    PK = note_id
    FK = emp_id
    I want to do an insert into both tables via the application and also via the same page (with one button link). I have made a form to add an employee with an add button - adding an employee is no problem.
    Now, on the same page, I have added a html text area in another region, where the user can write a note. But how do I get the note to insert into the Notes table when the user clicks the add button?
    In other words, when the user clicks 'add', the employee information should be inserted into the Employees table and the note should be inserted into the Notes table.
    How do I go about doing this?
    Thanks.

    Hi,
    These are my After Submit Processes...
    After Submit
    30     Process Row of NOTES     Automatic Row Processing (DML)     Unconditional
    30     Process Row of EMPLOYEES     Automatic Row Processing (DML)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    50     Insert into Tables     PL/SQL anonymous block     Conditional
    My pl/sql code is the same as posted earlier.
    Upon inserting data into the forms and clicking the add button, I get this error...
    ORA-06550: line 1, column 102: PL/SQL: ORA-00904: "NOTES": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table EMPLOYEES.
    Is there something wrong with the pl/sql code or is it something else?

  • How to distribute HU items in to diffrent storage types and diffrent BINS

    Hi
    I have one handling unit and I have done empty all 4 items in it  HU02
    As a result one material document created
    But How can I distribute all items in to diffrent storage types and diffrent BINS
    No TR and Posting change created at material doc
    What is the config settings to cretae TR ot Posting change notice and Movement types
    Kindly Help

    yes LT10

  • How can i get ware house no and storage type?

    i have matnr werks lgort labst einme speme from mard table now i want ware house no and storage type how can i find these. if any one know plese reply me soon ..
    thanks in advancce...
    rambabu

    Try the MLGN  table.
    Also, have a look at MLGT.
    regards,
    Rich Heilman
    Message was edited by: Rich Heilman

  • How can i stop sharepoint designer from opening my site with WEBDAV

    I have a second collection in my web application for Project Server
    http:\\servername\PWA.
    Whenever I try to edit a page using sharepoint designer, it tells me that
    The website has been configured to disallow page editing with Sharepoint Designer.
    That isnt the reason.  Searching on the interweb, It seems that whenever you have a second collection,  designer always connects using Webdav and this doesn't support designer.
    So -----  Can anyone tell me how to get around this problem without installing PWA as it's own Web Application?
    Thanks in advance - Mickeal Davis
    Mickeal Davis City of Swan - Western Australia

    Hi,
    According to your post, my understanding is that you want to stop sharepoint designer from opening my site with WEBDAV.
    What’s the main reason of the problem that related to Project Site Template this by default set to DisableWebDesignFeatu es in
    ONET.XML.
    To enable edit Project Site in SharePoint Designer, you need to remove the DisableWebDesignFeatures="wdfopensite" from ONET.xml of the PWA site.
    More information:
    This web site has been configured to disallow editing with SharePoint Designer | Errors –
    This web site has been configured to disallow editing with SharePoint Designer
    How to Branding Project Server 2010(PWA) site with SharePoint Designer 2010
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How to clear "recent" contacts listed automatically as you type email addresses in

    Hi everyone. When I go to type the address of an email I get as far as the first letter and a list of "recent" email addresses pops up, which is handy except for some reason the first one is a combination of two emails address, one I know and one I only vaguely recognise as possibly being a former student who might have been on a mailing list of mine at one time. This combo of emails addresses doesn't appear in my contact list or address book on its own, but since it shows up as I start typing my husband's email, I'm sure there has been a time or two where I've just selected it to autocomplete the address field, and ended up sending something probably embarrassingly personal to not just my husband but this other person as well. How do I go in and clear out my icloud's memory of past-sent emails?  Any help or tips would be greatly appreciated. Thanks!

    In Mail: Window Menu>Previous Recipients
    Delete any or all.

  • How to Clear all the data of open windows form of another exe?

    Hi,
    I want to make utility which will clear all the data from one windows application.
    i know the application name. The application of which data i want to clear is made in C# and contains many windows forms and controls.
    out of that opened windows form and controls inside it need to be cleared.
    Please guide on how to do this in C#?

    Short version: Find the window and send it a message with
    SendMessage.
    Open up Spy++ and find your form's window.  You will see that the window has children and they have classes of the form "WindowsForms10.EDIT.*"  Those are TextBox controls.  You can call things like SetWindowText to set the
    text of the window to clear it.
    To do this programmatically, you'll have to obtain the window hand that corresponds to the control.  You can find windows with
    FindWindowEx or
    EnumWindows.  Locate the window by name or class or whatever else you can determine about it.  Find the child windows and "clear" them however you wish.  I assume you mean to set empty strings to all the TextEdit controls. If you
    intend to do something more sophisticated than that, then you'll have to be more specific about what you mean by "Clear all the data".
    It may or may not be obvious that you'll be poking around with Win32 API calls via PInvoke to accomplish much of this. Example:
    SetWindowText via PInvoke.

  • How do I sort ALL my bookmarks into alphabetical order with ONE CLICK?

    This functionality does not - nor has ever existed in any version of Firefox. (as far as I remember)
    This question has been asked multiple times - and the answer is usually incomplete or too time consuming (especially for those of us who have over THREE THOUSAND bookmarks separated in hundreds of folders)
    The only decent answer - used to be - to install an addon called SortPlaces: https://addons.mozilla.org/firefox/addon/9275 - though for some reason the developer was offended by those in control of Mozilla and has pulled all of his addons from every site that is easily accessible - the newest version of firefox has broken this add on - and Firefox has a very useless sorting system. --
    Sorting your bookmarks - one folder at a time - using a right click option - that only works when you 'view -toolbars-bookmarks' (or when you right click within the bookmark menu system) is a pitiful system -
    Why can't you sort it when in 'bookmarks - show all bookmarks' ?? (well you CAN sort it there - but it will revert back to its un sorted form upon closing the interface)
    Why can't you export it into a json - or html - then sort using a text editor - or some other program - then re import?
    With the promotion of your online bookmark sync system you would think that something as simple as SORTING would have been covered...
    Other topics comparable - with answers that are not valid:
    1 https://support.mozilla.org/en-US/questions/760184
    cor-el suggested right clicking each folder individually - or using the sourtplaces addon (which is no longer available)
    2 https://support.mozilla.org/en-US/questions/837928?as=aaq
    various people suggest using the sort places add on.
    3 https://support.mozilla.org/en-US/questions/752997?as=aaq
    SortPlaces is mentioned again - along with a link that looks REALLY OFFICIAL - and that link also suggests using the SortPlaces - the link says its not available at mozilla but can be found elsewhere -- but the latest firefox has broken it - so its useless now...
    the-edmeister suggested:
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically
    Not sure what happened with the developer of Sortspaces - I never used any of his addons or had any dealings with him - but he is certainly unhappy with the folks behind Firefox.
    http://www.andyhalford.com/
    and HOORAY for Bookmark Duplicate Detector 1.1.1 https://addons.mozilla.org/en-US/firefox/addon/bookmark-duplicate-detector/?src=search (helped me get rid of over 700 duplicate bookmarks - got me down to 3400 total; the auto remove all does not work with firefox14 but the rest of it works fine- I just had to manually push delete over and over again for a few hours...)
    - and the checkCompatibility 1.3 that allows me to load out of date add ons: https://addons.mozilla.org/en-US/firefox/addon/checkcompatibility/
    The CheckCompatibility allowed me to install the Sort Bookmarks add on - and it looks perfect - but will not properly function...
    I hope my post helps others who are trying to sort their bookmarks - and I hope someone has an answer for some of my questions - preferably the title question... lol

    I've been watching this (general) thread for years and waiting patiently for Mozilla to address it, w/out any success at all - obviously. And, no, the answers are NOT helpful to me!
    I understand many people have no interest in bookmarks but clearly lots of people still use them. If you're going to have the feature that purports to sort bookmarks, for pete's sake, make it work. I'd think it would be an embarrassment to have a part of your program malfunction for so long. I mean, what are you folks? IE!?! Why don't you just ask someone to spend a couple days addressing the issue and get it straightened out? (Clearly i care enough about it but I don't code, so… I'm useless.)
    For the record, a user shouldn't have to individually sort each folder within their Bookmarks folder. One should be able to pick an option that would apply to all folders. Sure, leave the ability to sort individually but add an "apply to all" feature to the mother folder. Then, find a way to have it automatically maintain that status, whatever is selected. Doesn't sound like that difficult a task, given all the other great things you guys and girls do all the time! That's my ¢.
    By the way, I'm using a MB Pro 4,1 (early 2008), OS 10.6.8, and Firefox 19.0 beta. Thanks for listening to my bitching.
    - cheers

  • How to add to a group of fill in boxes with one click?

    I need to create a form, for surveying a building.  If I had to survey a room with fill in fields for one room (width, length, height, how many windows, doors, etc.), is there a way to add one buttom below that says "another room" and pressing that will insert the same set of fields to survey the next room?  Would I need to use an advanced surevey template from Adobe?

    If you have a paid acount you can use the conditional show/hide logic to achieve that.
    See this similar post :  http://forums.adobe.com/message/5550081#5550081
    The skip and show/hide logic is explained here : https://www.acrobat.com/formscentral/en/library/skip.html
    Gen

  • How do I stop iMessage from automatically opening my conversation with a person when they message me?

    iMessage problem on my ipod. Whenever someone messages me on imessage and my ipod is locked it'll come up on my lock screen and even if I don't swipe the message, imessage automatically pops up and opens the conversation. How do I stop this?

    What do you mean it opens automatically? Do you have a passcode on your device?
    So if the phone is locked and you watch the screen as a message comes in, does it automatically (without any interaction) open the conversation or what?  Do you see the alert then it automatically opens without touching it?

  • How to generate the insert staments of all schema tables with one DBPROC

    [code]CREATE DBPROC SCHEMA_INSERT_SCRIPT
    AS
    VAR L_STATEMENT VARCHAR(500) ;
    L_COL_NAME VARCHAR(50);
    L_ALL_TAB_COLS VARCHAR(400);
    L_TAB_NAME VARCHAR(50);
    L_SQL VARCHAR(1000);
    TRY
          SET L_ALL_TAB_COLS = ' ';
          DECLARE C_TAB_CUR CURSOR
          FOR
            SELECT T.TABLENAME,C.COLUMNNAME
            FROM DOMAIN.TABLES T, DOMAIN.COLUMNS C
            WHERE T.OWNER='SCOTT2'
            AND T.TABLENAME = C.TABLENAME
            AND  T.TABLENAME='DEPT';
          WHILE $RC = 0 DO
          BEGIN
          FETCH C_TAB_CUR INTO :L_TAB_NAME, :L_COL_NAME;
    SET L_ALL_TAB_COLS = L_ALL_TAB_COLS || L_COL_NAME || ',';
          DELETE FROM SCOTT2.QUERY;
    INSERT INTO SCOTT2.QUERY VALUES
    ('insert  into '||TRIM( :L_TAB_NAME) ||
    '(' || SUBSTR(:L_ALL_TAB_COLS,1,LENGTH(:L_ALL_TAB_COLS)-1)||
    INSERT INTO SCOTT2.QUERY VALUES( 'values (');
       END;
        CATCH   
        CLOSE C_TAB_CUR;[/code]
    till now i am getting output as
    insert into DEPT(DEPTNO,DNAME,LOC)
    values (
    but i want output from this procedure as
    insert into DEPT(DEPTNO,DNAME,LOC)
    values (10,'SALES','NEWYORK')
    so kindly help me out how can i access the data from tables and create the insert statements of the table.
    with this above Procedure,i want to generate the insert statments of the table.
    please advice me how can i go.
    thanks,Bhupinder

    Hi,
    from what I understand from your post, the thing that's missing is the retrieval of the data from the tables and its types. This could be done very similar to your already done tablespecs, just perform a select, use a cursor again and in there, make sure that character (etc.) fields get surrounded by '' and integers not.
    Regards,
    Roland

  • How do I sort ALL my bookmarks into alphabetical order with ONE CLICK? (continued)

    You can sort all your bookmarks alphabetically in one shot with the Auto-Sort Bookmarks add-on.
    https://addons.mozilla.org/en-US/firefox/addon/auto-sort-bookmarks/?src=api
    Note: Since the other thread with this name was closed, I'm posting this in a new thread.
    Here's the old thread: https://support.mozilla.org/en-US/questions/933835

    I've been watching this (general) thread for years and waiting patiently for Mozilla to address it, w/out any success at all - obviously. And, no, the answers are NOT helpful to me!
    I understand many people have no interest in bookmarks but clearly lots of people still use them. If you're going to have the feature that purports to sort bookmarks, for pete's sake, make it work. I'd think it would be an embarrassment to have a part of your program malfunction for so long. I mean, what are you folks? IE!?! Why don't you just ask someone to spend a couple days addressing the issue and get it straightened out? (Clearly i care enough about it but I don't code, so… I'm useless.)
    For the record, a user shouldn't have to individually sort each folder within their Bookmarks folder. One should be able to pick an option that would apply to all folders. Sure, leave the ability to sort individually but add an "apply to all" feature to the mother folder. Then, find a way to have it automatically maintain that status, whatever is selected. Doesn't sound like that difficult a task, given all the other great things you guys and girls do all the time! That's my ¢.
    By the way, I'm using a MB Pro 4,1 (early 2008), OS 10.6.8, and Firefox 19.0 beta. Thanks for listening to my bitching.
    - cheers

  • How to get a open NAT type with a linksys E2000 on PS#

    I called customer service and they were completely clueless, told me I had to pay for the Tech support to fix it. I have a Linksys E2000 and I cannot get a open nat for my PS3, tried the DMZ, and XBox settings but that obviously didnt work. So anybody have any ideas before I return this $100 router???
    Solved!
    Go to Solution.

    I've been having the same problems but on my Xbox.  I'm going to try this:
    On router:
    1 - Status tab
        Get DNS 1 & 2
    On Xbox: 
    2 - Static IP on Xbox
        IP: 192.168.1.xxx
        Mask: 255.255.255.0
        GW: 192.168.1.1
    3 - DNS Addresses on Xbox
    On router:
    4 - Forward ports 
        TCP 80    
        UDP 88    
        Both 53, 3074
    5 - Security tab
        uncheck Block Anonymous Internet Requests
        disable uPnP?
    6 - Reset devices 
    I'll let you know how it goes.

  • How can you use multiple stream types with one socket?

    Hi,
    I'm working on a large program that currently uses Object Input/Output streams for all of the messaging in a client/server application. This works fine except when files need to be transferred. In many cases using a Object stream to send a file can be 30 times slower than using a Buffered input/output stream. I've found I can combined the two. Here are some code snippets to give you a basic idea of what's happening...
    BufferedInputStream bis = new BufferedInputStream( serverSocket.getInputStream( ) );
    ObjectInputStream ois = new ObjectInputStream( serverSocket.getInputStream( ) );
    //this code runs on a thread on the server
    while( true ){
    switch( whichKindOfStreamUsedNext ){
    case OBJECT_STREAM:
    Object object = ois.readObject( );
    doSomethingWithObject( object );
    break;
    case BUFFERED_STREAM:
    readFromBuffer( bis );
    break;
    Obviously there is a lot missing here. Basically the variable whichKindOfStreamUsedNext is changed in the methods doSomethingWithObject( ) and readFromBuffer depending on what the current state of the server is and what is passed to these methods from the client.
    Here is the problem. If readFromBuffer( ) does a very small task and the client sends an object through an object stream everything is okay. I've switched whichKindOfStreamUsedNext = OBJECT_STREAM before that point and by the time the client sends the object the server is waiting on Object object = ois.readObject( );. However if the method readFromBuffer( ) does a very time intensive task and it takes a while to return and meanwhile the client sends an object then the server never gets that object. Does anyone have an easy solution to this problem. (Changing the whole program to just using BufferedStreams is not a solution).
    Thanks.

    Thanks a lot for the response.
    I guess I didn't realize I could do that.
    I changed how I am doing the program anyways. Sending flags to switch streams was a little messy. but now I have a new problem. I've discovered that mixing object streams with buffered streams also leads to significant speed increases. I do that in this manner...
    int ONE_MEG = 1024*1024;
    ObjectInputStream ois = new ObjectInputStream( new BufferedInputStream( socket.getInputStream( ), ONE_MEG ) );
    and I do the same thing for the ObjectOutputStream. It works very well when I just set up the client's output stream and the servers input stream in this manner. Upload times are increased from 60 seconds to 2-5 seconds.
    Unfortunately when I try to do the same thing with the servers output stream and the clients input stream to speed up downloads I get deadlock! As soon as the socket connection is opened and I try to set up the streams in this manner I get deadlock. Does anyone have any idea why this occurs and what I can do to fix it?

Maybe you are looking for

  • Novice Question:  XML File using FTP Adapter Help Requested

    I need to create (publish) a message from an XML file that is written to a particular folder on a Win2000 machine (I intend running the adapter on the same machine). I think that the FTP adapter should be the easiest way to do this but I have only us

  • Does ip source guard has any syslog or message??(on 2960 switch)

    hi everyone , I got a problem that I need to config a secure feature "IP SOURECE GUARD" on 2960 switch Everthing is ok But, when the IP-MAC mismatch I can't receive any SYSLOG from "show log" Only from "show ip verify source"  to know which interface

  • Upgrade Netflix plan through iTunes?

    Product name & specs: Any Netflix capable player (any computer with a browser and Internet connection, etc.). My case: Apple TV 3rd gen (early 2012). OS version: Latest as of January 31, 2015. Problem: Netflix offers a plan for up to 4 screens and ul

  • Do App Tabs work if I automatically clear browsing history when I clost FF?

    I have my privacy settings such that everything clears when I close FF. Do I have to keep my browsing history in order for App Tabs to work? Right now, they don't reappear when I start FF, but I'm not sure which box to uncheck on the "clear history"

  • My charger just stopped working even though the light turns on

    My charger just stopped working and I got my laptop less then two weeks ago, the green light turns on then turns orange and shows it is charging but the battery doesn't increase it decreases as if I never had the charger connected, what can I do? I h