How to book weight on stock

Hi all,
I had never programming in sap mm.
I m looking for a function module for booking an article on the stock.
So if you have an article number :
How to find the the stock number?
How to book that article on the right stock?
Thanks.

Hi,
If you are using IS Retail, then you can maintain weight in Article Master basic (Extra) settings.
Or
In Material Master Basic Data views
Bye,
Muralidhara

Similar Messages

  • How to book out transit saldo

    Hi
    A plus booking occured in the transit stock wenn I posted a stock transport order in MIGO. In the PO, the order quantity is different than the order quantity (SKU). First one is the quantity ordered, the second one is related to the quantity which is put into the stock. While booking stock transport order in MIGO,
    I wrote a wrong value which leaded to that there is 0,001 in transit stock. Do you know how to book away this, inventory?
    Thanks in advance.
    Esra

    It is not possible to do an inventory for a saldo in transit. I analyzed the problem a bit more.
    The saldo 0,002 appears in transitsaldo in MB52 because there is a conversion rule in the PO which is 10 TON equal to 47 MWH. When I book GI i.e. 2,159 MWH against a stock transport order, the list MB5T converts this amount into ton which corresponds 0, 459 TON. Since  SAP allows to show only three digits after comma, 2,157 is shown in MB52 which leads to a loss of 0,002 MWH. This amount can not be seen in display transitsaldo MB5T because this amount in MWH corresponds to an amount which is less than 0,001 TON. This tiny amount (0,002 MWH) can not be GR booked against the PO since it is not taken into account by SAP. The good is ordered in TON and put into stock in MWH.
    Do you know a way to solve this conversion and rounding off problem?
    Thanks.
    Esra

  • How to get a opening stock of a material on a particular date

    Hi,
    Could you pls provide me the logic of how to get the opening stock of the material on a particular date. I searched the forum and found the logic to fetch the closing stock at a given period but not for a date.
    An immediate response would be really appreciated.
    Thanks
    Harris

    Dear,
    Please read following part of my code
    FORM GET_OPENING .
       IF IT_FINAL[] IS NOT INITIAL.
         SELECT *  FROM MARD
           INTO CORRESPONDING FIELDS OF TABLE IT_MARD
           FOR ALL ENTRIES IN IT_FINAL
           WHERE MATNR = IT_FINAL-MATNR
           AND   WERKS = '1000'.
         SELECT A~MBLNR A~MJAHR A~BUDAT B~WAERS B~ZEILE B~BWART B~MATNR B~WERKS B~LGORT B~CHARG B~SHKZG B~MENGE B~MEINS B~BUSTM B~XAUTO
           INTO CORRESPONDING FIELDS OF TABLE IT_MKPF
           FROM  MKPF AS A JOIN MSEG AS B
           ON A~MANDT = B~MANDT
           AND A~MBLNR = B~MBLNR
           AND A~MJAHR = B~MJAHR
           FOR ALL ENTRIES IN IT_FINAL
           WHERE B~MATNR = IT_FINAL-MATNR
           AND   A~BUDAT GE P_BUDAT-LOW
           AND   B~WERKS = '1000'.
       ENDIF.
       AKTDAT = SY-DATLO + 30.
       IF NOT ( P_BUDAT-HIGH IS INITIAL OR P_BUDAT-HIGH > AKTDAT ).
         LOOP AT IT_MKPF INTO WA_MKPF WHERE BUDAT > P_BUDAT-HIGH.
           MOVE-CORRESPONDING WA_MKPF TO IT_MKPF1.
           APPEND IT_MKPF1.
           DELETE IT_MKPF.
         ENDLOOP.
       ENDIF.
       SORT IT_MKPF1 BY WERKS MATNR SHKZG.
       LOOP AT IT_MKPF1.
         IF ( IT_MKPF1-XAUTO IS INITIAL ) OR
             ( IT_MKPF1-BUSTM <> 'MA02' AND  IT_MKPF1-BUSTM <> 'MA05' ) .
           MOVE-CORRESPONDING IT_MKPF1 TO IT_MAT.
           COLLECT IT_MAT.
         ELSE.
           DELETE IT_MKPF1.
         ENDIF.
       ENDLOOP.
       SORT IT_MKPF BY WERKS MATNR SHKZG DESCENDING.
       LOOP AT IT_MKPF INTO WA_MKPF.
         IF ( WA_MKPF-XAUTO IS INITIAL ) OR
            ( WA_MKPF-BUSTM <> 'MA02' AND
            WA_MKPF-BUSTM <> 'MA05' ).
           MOVE-CORRESPONDING WA_MKPF TO T_MAT.
           COLLECT T_MAT.
         ELSE.
           DELETE IT_MKPF.
         ENDIF.
       ENDLOOP.
       LOOP AT IT_MARD.
         CLEAR IT_MAT-MENGE.
         MOVE-CORRESPONDING IT_MARD TO FINAL.
         READ TABLE IT_MAT WITH KEY WERKS = IT_MARD-WERKS
                                    LGORT = IT_MARD-LGORT
                                    MATNR = IT_MARD-MATNR
                                    SHKZG = 'S'.
         FINAL-ENDMENGE = IT_MARD-LABST + IT_MARD-INSME + IT_MARD-SPEME + IT_MARD-EINME + IT_MARD-RETME - IT_MAT-MENGE.
         CLEAR IT_MAT-MENGE.
         READ TABLE IT_MAT WITH KEY WERKS = IT_MARD-WERKS
                                    LGORT = IT_MARD-LGORT
                                    MATNR = IT_MARD-MATNR
                                    SHKZG = 'H'.
         FINAL-ENDMENGE = FINAL-ENDMENGE + IT_MAT-MENGE.
         COLLECT FINAL.
       ENDLOOP.
       LOOP AT FINAL.
         CLEAR T_MAT-MENGE.
         READ TABLE T_MAT WITH KEY WERKS = FINAL-WERKS
                                    MATNR = FINAL-MATNR
                                    SHKZG = 'S'.
         MOVE T_MAT-MENGE TO FINAL-SOLL.
         CLEAR T_MAT-MENGE.
         READ TABLE T_MAT WITH KEY WERKS = FINAL-WERKS
                                    MATNR = FINAL-MATNR
                                    SHKZG = 'H'.
         MOVE T_MAT-MENGE TO FINAL-HABEN.
         FINAL-ANFMENGE = FINAL-ENDMENGE - FINAL-SOLL + FINAL-HABEN.
         MODIFY FINAL.
       ENDLOOP.
       LOOP AT FINAL.
         WA_FINAL1-MATNR = FINAL-MATNR.
         WA_FINAL1-MEINS = FINAL-MEINS.
         WA_FINAL1-OP_MENGE = FINAL-ANFMENGE.
         WA_FINAL1-RE_MENGE = FINAL-SOLL.
         WA_FINAL1-IS_MENGE = FINAL-HABEN.
         WA_FINAL1-CL_MENGE = FINAL-ENDMENGE.
    *  WA_FINAL-LGORT = FINAL-LGORT.
    *    READ TABLE IT_MAKT WITH KEY MATNR = FINAL-MATNR.
    *    MOVE IT_MAKT-MAKTX TO WA_FINAL-MAKTX.
         APPEND WA_FINAL1 TO IT_FINAL1.
       ENDLOOP.
    ENDFORM.                    " GET_OPENING

  • How to create weighted graph using as 3.0

    Hello Frnds,
    I want to create weighted graph using AS. Using
    flash.graphics.* package I can create edges and nodes but I dont
    knw how to assign weight to the edges. I am also facing one issue,
    our client has created some legacy classes for graph generation,
    how can I create a similar class in AS.
    Regards,
    FlexBee...

    Hi,
    can anyone tell me about weighted graph...??

  • How many books are approved a day - here are some stats

    Do you want to know why it is taking forever to get your iBook approved? Do you wonder how many books are actually approved per day? I was asking myself the same question and because Apple doesn't release any numbers, I monitored the numbers on the iBookstore recently to get an idea.
    Here are the numbers (just to get a rough idea, not scientifically proven)
    The iBookstore has finally a feature that lets you browse only iBooks (aka Multi-Touch Books). It displays the numbers of all available Paid and Free iBooks. That is what I was monitoring each morning.
    When I started to monitor the iBookstore on May15th it had a total of 3,217 iBooks. If you use January 19th as the start date, then Apple would have approved an average of 26 books a day.
    Now here is a table where I wrote down the number from the iBookstore each morning of that day. The two columns next to it show the difference (how many approved that day) and the total number of approved iBooks (paid and free)
    There are a few interesting conclusions you can draw from the numbers.
    * You see a drop over the weekend. Maybe that is proof that the department is located in the US and not in China or India.
    * The approval numbers fluctuate but the average is about twice as high as the 26 books from the original start. So they must have hired more staff (or reading faster)
    * Interesting that there was a big junk of free iBooks yanked off the bookstore
    Another unscientific info about the bestseller ranking from my own stats.
    With about 10 sales a day I land in the 30s rank.
    WIth about 2 sales a day it ranges from number 50-100
    Those numbers fluctuate wildly and I'm sure there are other factors (i.e. total sales) in that calculation.
    It would be interesting to hear numbers and experiences from other users.
    Edgar Rothermich
    DingDingMusic.com

    I looked up the number of book titles per category in Apple's and Amazon's bookstores yesterday:
    Category
    Amazon
    Apple
    Percent
    Professional & Technical
    107804
    360619
    26.98%
    26.98%
    Fiction & Literature
    20700
    227773
    17.04%
    44.02%
    Reference
    49942
    95433
    7.14%
    51.16%
    Business & Personal Finance
    78007
    76608
    5.73%
    56.89%
    Halth, Mind & Body
    63303
    4.74%
    61.63%
    History
    244585
    51904
    3.88%
    65.51%
    Religion & Spirituality
    123177
    49448
    3.70%
    69.21%
    Romance
    82851
    48581
    3.63%
    72.85%
    Children & Teens
    67825
    47718
    3.57%
    76.42%
    Nonfiction
    46908
    3.51%
    79.93%
    Mysteries & Thrillers
    64773
    41776
    3.13%
    83.05%
    Sci-Fi & Fantasy
    60828
    39861
    2.98%
    86.03%
    Arts & Entertainment
    71065
    37874
    2.83%
    88.87%
    Biographies & Memoirs
    60365
    33643
    2.52%
    91.38%
    Science & Nature
    87395
    27825
    2.08%
    93.47%
    Computers & Internet
    29770
    17558
    1.31%
    94.78%
    Politics & Current Events
    33551
    17461
    1.31%
    96.09%
    Travel & Adventure
    21181
    11874
    0.89%
    96.97%
    Cookbooks, Food & Wine
    8593
    0.64%
    97.62%
    Sports & Outdoors
    20909
    8443
    0.63%
    98.25%
    Lifestyle & Home
    73509
    8082
    0.60%
    98.85%
    Humor
    30506
    7265
    0.54%
    99.40%
    Comics & Graphic Novels
    4559
    0.34%
    99.74%
    Parenting
    27879
    3407
    0.25%
    99.99%
    Textbooks
    100
    0.01%
    100.00%
    1356622
    1336616
    These numbers are upper bounds, as book titles can be in up to three categories. So the real number of unique titles is probably closer to 1/3 or 1/2 of the 1.33 million, which is close to K T's 700,000 number.
    Amazon and Apple are similar in total number of titles (with a few different categories). I had expected there to be much less titles in the Apple bookstore compared to Amazon. So selection size isn't much of a differentiator anymore. That said, number of sales are still far higher in the Amazon store. Many early eBook adopters still prefer their Kindle over the iPad when looking for new eBooks.

  • How do I add the stock app to Today's Summary in Notifications?

    How do I add the stock app to "Today's Summary"
    in Notifications?

    You can't, because there is no Apple Stocks App for iPad.
    You can download a third party Stocks App and set it up to give you notifications, but that's as much as you can do.

  • HT4059 When I try to load an ePub book it says out of memory.  How many books can you read at one time?

    When I try to load a second book it says out of memory.  How many books can be read at one time?

    Thank you so much...
    1. I don't have that fat format I checked as I saw this on another answer...BUT...you are right the project was very bloated and I made a new project with the sequence and moved a bunch of projects off to an outside drive and things are flying again...this effect "twirl" was on three clips and this seemed to be creating a problem along with it being a bloated project. Don't know why this effect renders easily then the next second doesn't it's on three clips on the entire project and one or another might not render all of a sudden.
    2. I understand what you said about the timeline export...I decided to export the sequence without the matte it was nested in and that sequence did have the chapter markers on the timeline and they again didn't export??? I'll look tomorrow at this it makes no sense if what you're saying is how to do it...the final cut pro book said they should have showed up if I export from the browser and that didn't work either.
    3. I then matted that output and rendered it to output but I am worried this will degrade and compress the sequence more than I want by outputting the same sequence with current settings twice???...the couple of outputs I could make nested looked very good as this was one render...however, I tried doing a quicktime "current settings" with the dvd studio pro info still trying to export chapter markers and maybe it's my imagination but the output didn't look as sharp as just an output with just chapter markers???
    r. I did look at the final cut pro book and it says that mpeg 2 movies will not read chapter markers anyway if you create one in compressor...if this is true it makes no difference if the quicktime output isn't having chapter markers show up. I assume when I go to author though I can put an mpeg 2 movie into dvd studio pro and create chapter markers at that point!! It seems weird it says it can do it with an mpeg 1 but not an mpeg 2 when everyone is using that for dvds.

  • 3rd party purchase for Network booked to project stock

    Hi,
    I have the following issue:
    I've created a 3rd party for a Network with Account Assignment as N and Item category as S .After doing GR it is booked to Project Stock, where as it suppose to consume directly.
    Please kindly suggest me any settings need to be done in PS otherwise it has to be taken care in MM .

    Hi,
    Just check if the following thread is useful for you ? Just have a look at Bhaskaran Srinivasan reply
    Third party PO account&amp;nbsp; assignment | SCN
    Regards,
    Amit

  • How can we print the Stock Transfer Purchase Order

    Hi,
    How can we print the Stock Transfer Purchase Order??
    Because from Transaction ME9L & ME9F, we can print simple PO's like NB, MPR etc..but Stock Transfer PO could not print.
    Plz guide, from where we can do it...

    Messages for PO are set in MN04. For details on how to follow this link:
    Re: Problem with PO output determination MN04
    Once the record is set here you will see the records in ME23n under messages button in header.
    Edited by: Afshad Irani on Apr 30, 2010 10:09 AM

  • How to transfer customr return stock to jobwork ( reapir) vendor

    Dear All,
    Please let me know -
    Suppose i had a customer defective (customer returns)stock in my plant ( which is non valuated stock). I would like to send the same for repair/ service to outside from my plant.
    I do not want any valuation / accounting effect while sending the customer defective material outside. So please suggest me-
    How to transfer customr return stock to jobwork ( reapir) vendor ? Through which movement type ? GR MvT ?
    Waiting for reply.
    Thanks & Regards
    Mangesh

    Hi,
    You can send the material using movement type 512 in MIGO using option Goods Issue > Others. And cancel the same material document when you get the materials back from vendor after repair.
    Then follow Service Process Cycle for paying the repair charges to vendor
    1. ME21N - Create Service PO (With Item Category D and Account Assignment Category K )
    2. ML81N - Create Service Entry Sheet w.r.t. Service PO
    3. MIRO - LIV for Service Charges w.r.t. Service PO or Service Entry Sheet
    For Service Process, refer following link;
    [SAP External Service Management|http://www.sap123.com/showthread.php?t=52]

  • How do you view the size of your Ibook library? How do you view how many books are in your library?

    How do you view the size of your Ibook library? How do you view how many books are in your library?

    Open the iBooks app. All your iBooks should load there.
    You can see the file size for each iBook by clicking List from the menu bar top of the iBooks window.
    message edited by:  cs

  • In sales return how to get in unrestricted stock the commission number 653E

    Dear All ,
    We have return the sales order how ever the material is in Sales order stock
    How to get in unrestricted stock 411E i have tried GL account not maped
    Regards
    Ramesh

    Hi Ramesh,
    Your requirement is not clear
    you want to move the return sales order stock to unrestricted ?
    If not, please give some additional information
    thanks
    santosh

  • How to Book Instructor in T&E Management

    Dear All,
    How to Book Instructor in T&E Management.Can anybody explain me step by step.Finally where I will see Instructor details in SAP standard report.Report like Instructor details , Room details , Billing Details , Course Group related to Instructor.
    Thanks
    Regards

    hi suhas
    first you customize the external instructor in img-training and event mgt-business event preparatiion -resource management- create room and external instructor after that you have assign when you do in business event preparation-business event type and you can see the room and external instructor in the report the tcode is s_pho_48000096 where you can see details of instructors you have to do in book tcode is pv00 where you will do
    bye
    naveen

  • How many books do I have on my itunes? Since I updated it´s not displayed anymore...

    How many books do I have on my itunes? Since I updated it´s not displayed anymore...

    View > Show Status Bar puts the grey bar back at the bottom of iTunes the info is displayed there

  • Lightroom 3: How-to books? (not videos or online tutorials)

    When learning a new software, I prefer to have a hard copy book on my desk that I can flick through, read and apply suggestions as I work with the software. In this way, many little extra tips and processes stick in my mind to help me learn it quickly and efficiently and correctly.  This is how I learn best.
    At the beginning of my Lightroom 3 journey, I thought the Help PDF was the user manual, the how-to of processes in using this most powerful program.  Even 'though it does have step by step suggestions in some instances they are quite basic, and I am finding I need a proper, more in-depth how-to book to be able to get the most from the product.  As Microsoft publications would call it, an Inside Out book (I use Windows 7).
    On deciding to read through the Help PDF more thoroughly, I came across a further suggested help item called Lightroom 3 Classroom in a Book.  I would like to be able to look through this book online to see if it is the type of book I am after. Is there a place in the Adobe website where I can do that?
    The only book I am currently considering is the David du Chemin Vision and Voice.  I have seen a few chapters from this book online and they show the type of information I am seeking.
    I look forward to your reply. Thank you!

    On deciding to read through the Help PDF more thoroughly, I came across a further suggested help item called Lightroom 3 Classroom in a Book.  I would like to be able to look through this book online to see if it is the type of book I am after. Is there a place in the Adobe website where I can do that?
    Amazon.com is the best website to Look Inside online
    http://www.amazon.com/Adobe-Photoshop-Lightroom-Classroom-Book/dp/0321700937#_
    Click the book image.

Maybe you are looking for

  • Why is my iPod Touch batter draining away so fast?

    I got my iPod Touch at GameStop (Refurbished) and my battery on that iPod is draining away faster than usual. I'm using my school Wi-Fi and my battery is going fast. I charge my iPod almost every ten maybe twelve hours. Should I get the battery repla

  • Acrobat Adobe 9; editing converted pdf to word document

    I have acrobat adobe 9 standard and I have converted my document from pdf to microsoft word where I am suppose to be able to edit it as a word document.  It shows up as an image and I am not able to edit it.  Does anyone know what I am doing wrong or

  • Broadcast studio monitor

    Any suggestions/alternatives for an HD broadcast monitor that's not going to break the bank? I have a small wedding videography business and I can't see spending a mint on a monitor. I do however see the benefit of having a broadcast monitor for colo

  • Os x not installing

    Hello community, OS X has been trying to install for months now on my iMac and has not succeeded. It downloads as if it never has before, then starts the install and shortly after, the install fails. Why? What needs to be done? Thank you for any advi

  • How to Find JDBC Version

    how to Find JDBC Version