Restrictions at store location with 311

When we run
T-code: - MB1B with 311 movement type
There mention two store location
One for source
Second for destination
We need restrict one way stock transfer.
That means
1) Store A to store B to be approve with 311
2) Store B to store A not approve 311
We need restrict store B to store A with 311
Amit

Please have a look in note 205448. It describes the stock transfer with movement type 301. Perhaps this can be adapted to movement type 311?!
Regards,
Julia
Edited by: Julia Bayrhammer on Nov 10, 2009 10:52 AM

Similar Messages

  • When I try to use "store locator", e.g., Eddie Bauer, I get no result with Firefox 4 on Mac OS. Chrome and Safari work OK.

    At various web sites, e.g., Eddie Bauer and Walmart, when I try to use their "store locator", I get no result.

    go to '''TOOLS '''then '''OPTIONS''' then '''ADVANCED''' then '''NETWORK tab''' then '''SETTINGS tab''' and select the options '''NO PROXY''' click '''OK''' and '''OK '''again in the next screen. With that you have disabled the proxy settings.
    ''if you like to not disable the proxy settings choose'' : '''Auto-detect proxy settings for this network''' (it is in the same session)
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • App will not download to iPad when purchased from App Store - stuck with Cloud icon

    Device : iPad Air 32gb wi-fi model (not cellular data)
    OS version : 7.1.1 (up to date)
    Location : UK
    Problem : App will not download to iPad when purchased from App Store - stuck with Cloud icon
    Last night I tried to download an app over wi-fi onto my iPad Air, but the app did not install.
    I have plenty of space (the app is 24.1mb, I have 3.4gb free space) and there are no restrictions whatsoever on my iPad - no blocks on App store purchases, no age-related restrictions, no country restrictions etc.
    Normally from the App Store page you would tap the price (in this case the app was free), enter your iTunes password, and the app would download.
    Also a new icon appears on the home screen and a circle shows the progress of the download.
    However this did not happen.
    Instead I have the Cloud icon (the one that shows when you have bought an app but it is not currently installed on your device) and a message that says "You've already purchased this, so it will be downloaded now at no additional cost".
    If I press OK I am then prompted to enter my iTunes password, the Cloud symbol briefly changes to a circle (and I mean for a split-second, like the blink of an eye) and then the Cloud symbol appears again.
    The app does not download - in fact it does not even *attempt* to download.
    I have tried this >20 times now and it always occurs excatly like this.
    After Googling this problem (which seems common) and reading over a dozen threads on this forum plus Apple's own official support pages, this is what I've tried:
    I can re-download other apps that I have previously purchased on this iPad, with no problems.
    I purchased another app on my iPhone 5 and was then able to download onto my iPad with no problems.
    I have reset my iPad >5 times - both by pressing/holding the home/power buttons, and also a full switch off and restart.
    I have logged out of my iTunes account on the iPad, and logged back in.
    The wi-fi is Virgin Media fibre optic broadband with a verified speed of 20 meg (confirmed by Speedtest) plus an 802.11-n Belkin router and my iPad will happily load web pages, stream videos on YouTube, download other apps etc.
    I have reset/rebooted my internet connection
    In an attempt to eliminate by broadband connection from the possible causes, I have switched off my router, linked my iPad to the hotspot feature on my iPhone and tried to download the app over cellular data, but still cannot download the app.
    I have tried on 2 other wi-fi networks but still cannot download this one app.
    My iTunes account has a cerdit balance from an iTunes card, but the app was free anyway
    Nothing I try will download the app in question.
    The app is iPad only, so I cannot install on my iPhone to try and kick-start the process.
    I guess I could install the app on my computer and then sync the iPad, but that's *working around* the problem - it's not *fixing* the problem.
    (Since getting the iPad I use almost never use my computer. And anyway what if I did not have a computer? Didn't iOS go "PC-free" with version 5?)
    I would like to call Apple but my 90-day telephone support has expired (the iPad is around 6 months old) and I don't want to buy Apple Care for this one problem.
    I can't make it to an Apple Store to speak to a Genius.
    Bearing in mind the list of things I've already tried, what do I do next?
    Thanks in advance for any support.

    Hi there.
    Thank you very much for your quick reply, it's really appreciated.
    No need to apologize, I actually found the phrase "If your iPad ever craps the bed" amusing under the circumstances
    I checked the list of installed apps like you suggested (Settings>General>Usage>Storage>Show all apps) but this problem app is not in the list. I have also swiped down on the home screen to search for it, but again it does not show.
    While it has not let me download the app (and I just tried it again) it has helped me to eliminate a few things from the list of what to try, and I can definitely conclude that it has not downloaded.
    I guess I need to fire up my PC and download it / sync my iPad.
    Thanks again for your help

  • How can I change the app store location?Want to buy in us and it keeps saying I'm in the australia app store

    How can I change a app store location? I'm in US trying to dowload an app and it says my account is not valid in the Australian store. I have nothing to do with Australia.

    Go to the iTunes Store. Scroll down to the very bottom and click the flag that is on the bottom right. Then you can select what store you want.

  • Report for showing pending (ageing) quantity according to store location w

    dear ABAP Gurus,
    I have made a roport for showing pending (ageiing) quantity acc to location wise.
    and i m sending here the code i made for same.Tell me if sme amendments required.
    Report for showing pending (ageing) quantity according to store location wise:   
    1.     Fields on selection screen (input screen) : Plant code From to , Material code From to , Current date, Numbers of days(for display the ageing(pending) balance for a given period,Storage locations from to.
    2.     Field in the output List : Material code , Material descriptions, Balance quantiy,Balance value ,Consumptions date. 
    the code is:
    REPORT  ZAGEIN_SUDHA.
    TABLES: mara,mseg,makt.
    TYPES: BEGIN OF t_mara,
    matnr LIKE mara-matnr,           "material number
    maktx LIKE makt-maktx,           "material description
    ersda LIKE mara-ersda,           "material creation date
    lgort like mseg-lgort,           "storage location
    bwart like mseg-bwart,           "goods received or issued
    menge like mseg-menge,           "value at movement type
    werks like mseg-werks,           "plant
    END OF t_mara.
    DATA: i_mara TYPE STANDARD TABLE OF t_mara with header line,
          itab type standard table of mara with header line,
    *wa_mara TYPE t_mara,
    v_date TYPE i,                      "age in days
    GI type mseg-menge,                 "goods issued
    GR type mseg-menge,                 "goods received
    bal type mseg-menge,                "balance
    total type i,
    grace type i,
    g_quan type mseg-menge.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: p_matnr FOR mara-matnr.
    select-options: p_werks for mseg-werks.
    select-options: p_lgort for mseg-lgort.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
    REFRESH i_mara.
    SELECT mr~matnr                        "mara-matnr
    mk~maktx                               "makt-maktx
    mr~ersda                               "mara-ersda
    mg~lgort                               "mseg-lgort
    mg~bwart                               "mseg-bwart
    mg~menge                               "mseg-menge
    INTO corresponding fields of table i_mara
    FROM mara AS mr INNER JOIN
    makt AS mk
    ON mrmatnr = mkmatnr INNER JOIN mseg AS mg on mkmatnr = mgmatnr
    WHERE mrmatnr IN p_matnr and mgwerks IN p_werks and mg~lgort IN
    p_lgort.
    total = 0.
    IF sy-subrc = 0.
    *CLEAR wa_mara.
    LOOP AT i_mara.
    if i_mara-bwart = '101' .
    GR = total + i_mara-menge.
    total = GR.
    elseif
    i_mara-bwart = '102' or i_mara-bwart = '122'.
    GR = GR - i_mara-menge.
    endif.
    if i_mara-bwart = '261'.
    GI = total + i_mara-menge.
    elseif i_mara-bwart = '262'.
    GR = GR + i_mara-menge.
    endif.
    bal = GR - GI.
    if bal GE  GR.
    grace = 30.
    else.
    grace = 10.
    endif.
    g_quan = bal - GR.
    v_date = sy-datum - i_mara-ersda.
    endloop.
    WRITE: / i_mara-matnr ,i_mara-maktx,' is ',v_date,' ,days old  and
    stored at' ,i_mara-lgort ,   ' with balance =', bal ,'the grace time is
    ', grace, 'and' ,'grace quantity is ' ,g_quan.
    *ENDLOOP.

    Hi,
    That sounds like a nice report.  What about it?!
    Gareth.

  • My In Store Experience With Droid Razr Battery Life

    I have a Droid Razr. I took it into a local store because my battery life is HORRIBLE. The phone had been off the charger for 1h40m minutes and it was already at 60%. The CSR told me it would take 40 minutes. When I came back he told me the test said the battery "was fine", and he went on to explain that it had only gone down 10% in the 40 minutes which is pretty bad. I left and checked the phone and it was at 40%. I thought I could get the battery replaced or possibly get a new phone but he just gave me the information and walked away. I had to track him down to ask him another unrelated question.
    the battery has been on the charger the past few days more then i have been using it. i can't make a full day on a 100% charge, not even a half day. I charge at least once during the day, and around when im going to bed.

        Hi there Sas1983!
    Having a battery that will last is definitely important! I'm so sorry for the less than super experience with your phone and at the store location. I would be delighted to provide some information and suggestions.
    4G LTE Smartphones run a different radio so battery life is a little bit different. As you already know you can't remove the battery from your Razr so we absolutely want to ensure it's good! 
    You can manage your phone by using Smart Actions on your phone. Here's some information: http://search.verizonwireless.com/?q=smart actions razr&x1=t1&q1=support
    You can also close running applications easily by "double tapping" the Home Key and then swiping the open applications to the right to close them.
    Let me know how these additional steps help!
    Thanks,
    MelissaM_VZW
    Follow us on Twitter @vzwsupport

  • Serial numbers are not copied to new storage location for 311 mvt type

    Hi Guys
    I have 10 stock of material A in 001 Storage location ,which all the quantity is serial number managed
    I have transfered 10 quantity of Material A to 002 location from 001 location using 311 MIGO
    But serial numbers are not copied to 002 location after transfer posting
    001 and 002 are both are WM linked and belongs to same plant
    Can any body suggest good solution,how it can be done

    Hi
    1.Check in material master whether serial number management is active in Plant data/stor Tab and serial number profile is assigned
    2. Check while doing MIGO once if u enter the material and transfer qty you are getting the serial number tab or not
    3. If everything is ok, then after posting the document check the serial number status in IQ09, check the stock type and the storgae location in the serdata tab
    Regards
    Amuthan M

  • Issue store location is not picking up automatically

    Dear Sir,
    I am in the process of backflushing.
    I have maintained Issue store location in production version of Header material.
    when components are backflushed with respect to production version It should have to pick up the store location automatically from production version.
    But it is found that each time backflushing ,manually we have to enter the store location on screen Goods movement in MFBF.

    Hi,
    If you are using MRP Group - then pls check in OPPR - Det Prod Stor Locn strategy.
    Set this to 2 and try MFBF again.
    Or else you can define for the component in BOM item details.By priority , system will look for this first and then only the strategy ......
    Issue Storage Location Selection
    Determines how the system finds the issue storage location (the production storage location from which the components are taken to produce an assembly)  for the component if no issue storage location is defined for the component in the BOM of the assembly. You have the following options:
    Strategy 2The system uses the default issue storage location specified in the material master record of the assembly in the production version. If no default issue storage location is specified in the production version, then the system uses the receiving storage location for the assembly as issue storage location for components.

  • 2.6 won't store presets with catalog

    I have all my presets stored in the same directory along with the catalog. After upgrading to 2.6, the user home directory presets folder is used again and as far as I can tell, the checkbox "store presets with catalog" doesn't have any effect.
    has anybody else seen the same problem?
    Thanks in advance
    pj
    Version von Lightroom: 2.6 [632038]
    Betriebssystem:  (Build 7600)
    Version: 6.1 [7600]
    Anwendungsarchitektur: x64
    Systemarchitektur: x64
    Anzahl phys. Prozessoren: 4
    Prozessorgeschwindigkeit: 3,0 GHz
    Integrierter Speicher: 4094,4 MB
    Für Lightroom verfügbarer phys. Speicher: 4094,4 MB
    Von Lightroom verwendeter phys. Speicher: 379,1 MB (9,2%)
    Von Lightroom verwendeter virtueller Speicher: 367,9 MB
    Cache-Speichergröße: 155,0 MB
    Seriennummer: 116040006703169241896838
    Anwendungsordner: D:\Programme\Lightroom
    Bibliothekspfad: D:\Lightroom\Lightroom Database-2.lrcat

    MentatYP wrote:
    Yeah, I have 1 gigantic catalog so it makes sense for me to keep presets with the catalog file for backup purposes.
    I disagee. You've already discovered that Web Galleries remain in the default location when you use "Store Presets with Catalog", and there are other things as well which remain in the default location. So if you want to backup your entire Lightroom environment, including settings, now you have to backup not only the Lightroom Settings folder adjacent to the catalog, but also the Lightroom folder in the appdata area of your user profile. It's far simpler to leave everything in the default location (cos you still have to back it up, right), than mess about with backing up partial sets of settings.
    Plus, as Sean says, leaving them in the default location means any new catalog (e.g. for testing) gets access to your presets irrespective of where you locate it.
    To be honest, I don't think the "Store Presets with Catalog" was the development team's finest hour, as it's implementation seems muddled and inconsistent. We've had to bail out so many people over at Lightroomforums.net ("help, my presets are missing!") that we ended up documenting the implications of using that setting: http://www.lightroomforums.net/showthread.php?14169-What-is-the-purpose-of-the-quot-Store- Presets-with-Catalog-quot-option

  • "Store presets with catalog" doesn't work with web galleries

    I reinstalled Windows 7 and copied over my LR4 presets and galleries over to the new install.  I decided to try ""Store presets with catalog" to keep things simpler next time since I do periodic backups of the catalog folder anyway, so in the future all presets are backed up at the same time as the catalog.  I put the presets including a couple web gallery presets in the proper folders.  LR4 recognized all presets except for the web gallery presets--when I went to the Web module it didn't list them as options.  I then copied those web gallery presets to the default LR4 settings folder (C:\User\XYZ\AppData\Etc-so-on-so-forth) at which point it recognized the presets and listed them in the Web module.
    So it seems that LR4 doesn't respect the "Store presets with catalog" setting when looking for web gallery presets.  Am I missing something?

    MentatYP wrote:
    Yeah, I have 1 gigantic catalog so it makes sense for me to keep presets with the catalog file for backup purposes.
    I disagee. You've already discovered that Web Galleries remain in the default location when you use "Store Presets with Catalog", and there are other things as well which remain in the default location. So if you want to backup your entire Lightroom environment, including settings, now you have to backup not only the Lightroom Settings folder adjacent to the catalog, but also the Lightroom folder in the appdata area of your user profile. It's far simpler to leave everything in the default location (cos you still have to back it up, right), than mess about with backing up partial sets of settings.
    Plus, as Sean says, leaving them in the default location means any new catalog (e.g. for testing) gets access to your presets irrespective of where you locate it.
    To be honest, I don't think the "Store Presets with Catalog" was the development team's finest hour, as it's implementation seems muddled and inconsistent. We've had to bail out so many people over at Lightroomforums.net ("help, my presets are missing!") that we ended up documenting the implications of using that setting: http://www.lightroomforums.net/showthread.php?14169-What-is-the-purpose-of-the-quot-Store- Presets-with-Catalog-quot-option

  • 0IC_C03 - some key figures have unassigned Store location

    Hi,
    I try to implement Inventory managment scenario in BW.I follow the How to document How to handle inventory management scenarios in Bw.
    Now I uploaded data to BW, the sume of key figures as general look good but I have problem with key figures,which work with value in currency, this key figures(e.g 0ISSVS_VAL, 0VALSTCKVAL) are not assigned to Store location 0STOR_LOC, values of these key figures have this characteristics Unassigned (#), unlike key figures with amount value e.g. kg etc are assigned to store location. So there is problem that is no possibility to compare material stock in currency and amount.
    Do you have any experience how to solve this issue?
    I work with BI 7.0 version and use standard object from BI content without modification.
    Thanks
    Petr
    Edited by: Petr Jedlicka on Aug 12, 2011 2:30 PM
    Edited by: Petr Jedlicka on Aug 12, 2011 2:31 PM

    Hi,
    Inventory values are captured at site/plant levels not the storage locations. These values are caputured using 2lis_03_um datasource. When you create a material, materials are created as per site. 0MAT_PLANT.
    when there are movements of sales in the inventory, sales take place thru site not storage location. So sloc will not get updated in the transaction. where as when you move stock from one site to other site, there may be on storage location for all site or one sloc for one site. So for qtys you will have sloc.
    Thanks
    srikanth

  • Zip Code Locator / Store Locator

    Guys,
    I want to write a simple store-locator functionality in my website (Using a Mysql db with JSP-java etc.,)
    I am not sure of the tools I need and how to approach the problem (once I get a Map of all the zip codes)... Please throw in some ideas that can help me on this...
    Thanks a ton!

    The earth is ~ 40,000 km equatorial circumference
    Mapped as rectangular projection ignoring poles is 40,000 km x 16,000 km = 640,000,000 1km x 1km cells
    so 1 byte/km2 = 640 MB
    or 1 word/(250m x 250m) = 4*4*4*640MB = 40GB
    So a reasonable brute force method for the planet (and a few big memory servers or a not very big fast disk) would work in most cases.
    Obviously, if you're only interested in one part of the globe you scale down.
    The USA is something like 10,000 km square so a �60 520GB disk would give you a 1/sqrt(500E9/4/(10E6m^2)) = 28m resolution lookup at < 10ms time per request.
    A second lookup of the id returned from the big bitmap using the nearest neighbour approach for a few points would take you further, if required.
    How much is your time worth to develop an efficient solution, if throwing �60 of hardware at it would be good enough?
    Short of buying an awful lot of memory, any solution will hit the disk at least once (though you may be able to optimise away seeking, it's a query and won't be streaming whatever you do), so the overall time isn't likely to get much better without a lot of effort.
    You can always trade off between the bitmap/localised query for space and speed.
    Pete

  • FTP STOR command with REST capability

    Hi folk,
    I have a cRIO on a remote field, and I need that the program running on that platform periodically uploaded, through the internet, the data files to an FTP server.
    I have used the FTP VIs included in the Internet Toolkit to develop this functionality and I am experiencing some problems.
    During the uploading of files of medium or large size, via FTP, can happen that the FTP server closes the connection.
    The reasons can be different, network operation exceeded the user-specified or system time limit, bandwidth usage is restricted or the bandwidth is limited, etc..
    To overcome this issue the correct strategy is to reopen the FTP connection and to restart the upload from the point where it was interrupted.
    It is very important to finish to upload only the remaining part of the file, and not to restart from the beginning, otherwise you could not end the upload if the FTP server closes the connection again and again.
    For implementing the resume, the FTP protocol supports a number of commands:
    SIZE <remote file-name>  Returns the size of a file (Binary mode) .
    REST <file-size>         Sets the following STOR command to restart transfer
                             from the specified point.
    STOR <remote file-name>  If anticipated from a REST command, store (upload)
                             only the part of the file starting from the
                             specified point.
    At the present, it seams to me that the LabVIEW Internet Toolkit does not support the capability of FTP resume.
    Furthermore, if during a FTP upload the connection is closed by the FTP server, the FTP [STOR].vi exits sometime with ambiguous errors.
    Exit with a correct error:
    Error 56 occurred at TCP Read in NI_InternetTK_Common_VIs.lvlib:TCP Read xTP Reply.vi:2->NI_InternetTK_FTP_VIs.lvlib:FTP Get Command Reply.vi:1->NI_InternetTK_FTP_VIs.lvlib:FTP Data Send.vi->NI_InternetTK_FTP_VIs.lvlib:FTP [STOR].vi
    Possible reason(s):
    LabVIEW:  The network operation exceeded the user-specified or system time limit.
    Exit with an ambiguous error:
    Error 54 occurred at TCP Open Connection in NI_InternetTK_FTP_VIs.lvlib:FTP Open Data Connection.vi->NI_InternetTK_FTP_VIs.lvlib:FTP Data Send.vi->NI_InternetTK_FTP_VIs.lvlib:FTP [STOR].vi
    Possible reason(s):
    LabVIEW:  The network address is ill-formed. Make sure the address is in a valid format. For TCP/IP, the address can be either a machine name or an IP address in the form xxx.xxx.xxx.xxx. If this error occurs when specifying a machine name, make sure the machine name is valid. Try to ping the machine name. Check that you have a DNS server properly configured.
    Do you have idea or suggestion of how  realize an FTP STOR command with REST capability?
    Thanks,
    Asper

    Unfortunately the best advice I could give you would be to make a copy of the FTP toolkit and add this functionality yourself. You should have most of the building blocks available to you so it should be fairly starightforward. You could reference the RFC (RFC 959 and RFC 3659 for extensions) for any specifics you need on the packet format. You will need to save some state information so you can resume your download from the correct point.
    Would it be possible to use TFTP? This is much leaner and more likely to succeed if the other ends supports it. I recently wrote a very basic TFTP Write. I'm sure I could do the TFTP Read in short order. I'm still working on packaging it up in a distributable form but I could provide you with a basic VI if needed.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Store locator system

    I'm currently attempting to build a store locator system. I'm
    found zipMonger, and that does what I need as far as getting all
    the zip codes in a radius. What I'm having a little trouble with is
    taking the list of returned zips and then returning the stores from
    those results. And, once that is working, I'd also like to be able
    to show the distance from the entered zip to the nearest stores
    returned from the search. Even better, plot them all on a Google or
    Yahoo map. Anyone have experience with this sort of thing? Can
    anyone point me in the right direction for getting this all to
    work?

    They go REALLY fast. Your best bet is to get the one you want set up in your cart ready to check out (preferably in the Apple Store app if you can), then just refresh at 10pm to see if anything pops up as available and check out right away. I came extremely close to nailing a 16GB AT&T one last night at a store 1 hour away, but by the time I got it through the cart, they were gone. I checked right at 10pm local time (CST), too.
    I have noticed that the option to check out via in store pickup will unlock at 10pm EST, but the stock levels will not update until 10pm local time (or 10pm the stores' local time).

  • STO from storgae location to storgae location with in the plant

    Is it possible to create stock transport order to move stock from one storage location to other storage loctaion with in the plant? what are configuration settings required?
    how to define sending storgae location.
    Thank you

    hi
    In 4.7 version you will not get the Storage location to storage location Stock transfer option.
    This is applicable to the ECC version only.
    In 4.7 version you can adapt the Transfer posting from Storage loc to Storage loc using the Movement type 311,
    but if you need the delivery type, Shipping data for Stock transfer b/w Storage loc to Storage location it is not possible in 4.7 version. It is only avalible in ECC versions.
    Stock Transfer Between Storage Locations
    u2022 Function of stock transport orders between storage locations is available from ECC 6.0 onwards.
    u2022 As a result of which user can input issuing storage location with supplying plant.
    u2022 Facility of using different delivery types for different issuing storage locations is available.
    u2022 Shipping Point data can also be determined based on the issuing storage location.
    if u want u can try following in ECC version
    STO in Storage loc
    http://sapfunctional.com/MM/StockTransfer/Configure.htm
    hope it clears
    regards
    kunal

Maybe you are looking for