Availability Chk at Plnt level excluding the stk from some storage locatn

Hello Gurus,
I want to configure availability check at Plant Level which should exclude stock from few storage location. Example: if Plant 1000 is having 20 Storage location, at the time of availability Check it should consider only stock of 15 storage location and not the other 5 storage location.
How do i achieve this scenario.
Note: the 5 storage location which it should not consider can have unrestricted stock.
Thanks
Prashant Ranalkar

>
Prashant Ranalkar wrote:
> Hello Gurus,
>
> I want to configure availability check at Plant Level which should exclude stock from few storage location. Example: if Plant 1000 is having 20 Storage location, at the time of availability Check it should consider only stock of 15 storage location and not the other 5 storage location.
> How do i achieve this scenario.
> Note: the 5 storage location which it should not consider can have unrestricted stock.
>
> Thanks
>
> Prashant Ranalkar
Hi Prashant,
You could check this on "Availability Check Control " screen,
There is a chack box to select " Storage location", This indicator is used to set the scope of the availability check. It is used to switch off the check at storage location level.
Hope this will help you for further analysis.
SAN..

Similar Messages

  • How do I get the Ap Store to stop showing that I have an update available? I have aready purchased the update from the company's site.

    How do I get the Ap Store to stop showing that I have an update available? I have already purchased the update from the company's site.

    A Fix For: App Store Keeps Wanting To Update Apps

  • Min Receive signal power level at the atur from atuc

    Hi can someone help me with the min receive signal power level at the atur from atuc on a adsl router

    Hi Srikanth, 
    Just to get some background info, what type of signals are being generated? What device are you using to measure these signals?  Are all of your impedances appropriately matched?  And finally would it be possible to attach the file used for waveform generation?  What I am mainly curious about is if you are trying to generate a single signal at 70MHz or if you are trying to generate at 70, 72, 68,and 66MHz at different power levels.
    Regards,
    Kyle S 
    Applications Engineer
    National Instruments

  • Excluding the index from the page numbers

    Hi,
    is it possible to exclude the index from the page numbers? My index is 5 pages long and I want the first page of the first chapter to start at page 1, not on page 6.
    Any hint? Anything to do with sections?
    Thanks!

    Solved, thanks to this topic:
    http://discussions.apple.com/thread.jspa?threadID=2046762&tstart=0

  • Excluding the wages from Infotype 2010

    Hello there!
    I want to Payroll schema to exclude the information stored in Infotype 2010 or Table P2010 (however you would like to consider it).
    Please let me know where do you add or remove such validation. I could find for 14 and 15 but unsure of where is 2010.
    You can give me direct PCR/Schema or a path such as:
    XT00 -> XAP9 -> P0015 Disable the line with P0015 to exclude all Additional Payments in Payroll Processing.
    Thanks
    Yash

    Friends
    As I check the US Schema, I see the 2010 is processed in subschema UT00.
    U000 -> UT00 -> P2010
    If I disable the same line with * all the wages stored in 2010 should not be processed by schema. I don't have the development server or test server ready yet so cannot say for sure. Can someone please confirm me if I am going right?
    Thanks
    Yash

  • Excluding the asset from depreciation

    Hi,
    We are trying to run restart run, from AFAB . One perticular auc asset is ending in an error, that account for unplanned depreciation is missing.
    "Account 'Accumulated dep. account unpl. deprec.' could not be found for area 01"
    Now some how, this asset had unplanned depreciation postings, which we reversed in AB08.
    After that below are the asset values.
    But the restart run in 2013 period 11, still ends in the above error.
    Please let me know how this can be solved. Can the asset be excluded from depreciation?
    Regards
    SR

    Hi,
    Depreciation is posted for all the assets at a same time. You cannot ignore or post only for a single Asset. Now here in your case its showing that unplanned depreciation is posted in period 11 whereas its reversed in period 12. So I thin kif you execute AFAB for period 12, for Fiscal Year 2013 in planned values, then system will post the values in the assets and the Asset values will be nil. I think that you have reversed the Document through AB08 in 12th period.
    Regards,
    Malhar.

  • How to exclude the stock from MRP in MS04.

    Hi SAP ALL,
                 My client req the stock maintain the for the long term planning purpose under one storage location stock not considered to the MRP. in MS04 T Code.this is issue where did i m setting plz give some detailed explanation
    regards
    raju

    Hi,
    In transaction OMIR, choose your plant & then for the storage location you want to exclude from MRP enter 1 (exclude from MRP).
    After this setting is maintained, whenever a material is created in this plant & storage location, it will have MRP indicator as "1" in the mrp 4 view .
    For materials already in this storage location if the MRP indicator "1" is not maintained in mrp 4 view, please go for a mass change maintenance in the material master & maintain this indicator.
    Stock in the excluded storage location will not add up to the stock which is displayed in the top in the md04 screen. This stock will be displayed separately in the bottom of the screen.
    Please check same with MS04.
    Regards,
    R.Brahmankar

  • How to exclude the data from the query ?

    Hi all,
    I got the following sql script :-
    SELECT OS.SL_DT, OS.sl_item_code, OS.SL_REF, (OS.sl_val_1) recp,B.CGCV_VALUE_1
    FROM OS_STK_LEDGER OS, ( SELECT cgcv_item_code, CGCV_STK_QTY_BU, CGCV_COST_1, CGCV_VALUE_1
                             FROM OS_COST_GROUP_CURR_VAL
                             WHERE CGCV_COST_GROUP_CODE = 'ACOSG'
                             AND CGCV_GRADE_CODE_1 = 'G1' ) B
    WHERE OS.sl_dt <= TO_DATE('31/05/2012', 'dd/mm/yyyy')
    AND OS.sl_rcvd_issd = 'R'
    AND (OS.sl_txn_code = 'SGRN' OR OS.sl_txn_code = 'PGRN' OR OS.SL_TXN_CODE = 'SAOP' )
    --AND (os.SL_REF LIKE 'CRE%' OR os.SL_REF LIKE 'UT%' OR os.SL_REF LIKE 'MAR%' OR os.SL_REF IS NULL )
    AND B.CGCV_ITEM_CODE(+) = OS.SL_ITEM_CODE
    AND OS.SL_COST_GROUP_CODE(+) = 'ACOSG'
    AND sl_grade_code_1 = 'G1'
    order by sl_item_code, sl_dt
    The following output will be :-
    Date_______Item__Code________V1___V2
    01/01/2012_AAA___CRE1005____100___200
    02/02/2012_AAA___ABC1005_____50____200
    02/03/2012_AAA___CRE1005_____90____200
    01/03/2012_BBB___ABC1005_____50____1000
    04/04/2012_BBB___ABC1005_____12____1000
    From the output, when group by item & code, I am actual needs only Code with CRE1005, but for item : AAA group, I cannot delete code of ABC1005 because it consists of code with CRE%. For item : BBB, where Code not like CRE% then the two records actually I don't need to select in my SQL.
    Can anyone help me to think about ways of solving this issue ?
    Thanks.
    Lim

    with t
    as
    select to_date('01/01/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'CRE1005' code, 100 v1, 200 v2 from dual
    union all
    select to_date('02/02/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'ABC1005' code, 50  v1, 200 v2 from dual
    union all
    select to_date('02/03/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'CRE1005' code, 90  v1, 200 v2 from dual
    union all
    select to_date('01/03/2012', 'mm/dd/yyyy') dt, 'BBB' item, 'ABC1005' code, 50  v1, 1000 v2 from dual
    union all
    select to_date('04/04/2012', 'mm/dd/yyyy') dt, 'BBB' item, 'ABC1005' code, 12  v1, 1000 v2 from dual
    -- Output sample ends.
    -- Original select begins
    select t1.dt, t1.item, t1.code, v1, sum_v1, v2
    from t t1,
            select item, code, sum(v1) sum_v1
            from t
            group by item, code
            ) t2
    where t1.item =t2.item
        and t1.code = t2.code;
    DT       ITEM CODE            V1     SUM_V1         V2
    01.01.RR AAA  CRE1005        100        190        200
    02.02.RR AAA  ABC1005         50         50        200
    03.02.RR AAA  CRE1005         90        190        200
    03.01.RR BBB  ABC1005         50         62       1000
    04.04.RR BBB  ABC1005         12         62       1000
    5 rows selected.
    with t
    as
    select to_date('01/01/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'CRE1005' code, 100 v1, 200 v2 from dual
    union all
    select to_date('02/02/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'ABC1005' code, 50  v1, 200 v2 from dual
    union all
    select to_date('02/03/2012', 'mm/dd/yyyy') dt, 'AAA' item, 'CRE1005' code, 90  v1, 200 v2 from dual
    union all
    select to_date('01/03/2012', 'mm/dd/yyyy') dt, 'BBB' item, 'ABC1005' code, 50  v1, 1000 v2 from dual
    union all
    select to_date('04/04/2012', 'mm/dd/yyyy') dt, 'BBB' item, 'ABC1005' code, 12  v1, 1000 v2 from dual
    -- Output sample ends.
    -- Original select begins
    select t1.dt, t1.item, t1.code, v1, sum_v1, v2
    from t t1,
            select item, code, sum(v1) sum_v1
            from t a
            where exists
                    select 1
                    from t b
                    where code like 'CRE%'
                        and a.item = b.item
            group by item, code
            ) t2
    where t1.item =t2.item
        and t1.code = t2.code;
    DT       ITEM CODE            V1     SUM_V1         V2
    01.01.RR AAA  CRE1005        100        190        200
    02.02.RR AAA  ABC1005         50         50        200
    03.02.RR AAA  CRE1005         90        190        200
    3 rows selected.

  • How do I stop the sound from some previous website from interfering with the audio from a new web site?

    Mozilla Firefox is my default browser. Whenever I try to listen to the audio on a video, parts of some old audio from a previous video interfere. I still maintain my Microsoft Explorer browser and I do not experience that problem with it. The only reason I use Firefox is that it supports some games on Facebook which apparently Microsoft Explorer does not.

    Thanks guys.  Both options worked.  Dowside to deleting audio (option I went with) appears to be that you lose the audio forever.  So if I ever wanted to bring the audio back I wouldn't be able to.
    You are partially correct in that the Audio is no longer on your Timeline. It is still in your Project Panel, and you can move it back to your Timeline if ever needed. The complete removal from the Timeline is why I work with the Audio Mixer in cases like this. Also, on could alter the Gain on a Clip by Clip basis.
    With using the audio mixer it appeared I had to mute each clip separately.  When I highlighted all the clips and selected mute for audio 1 it wouldn't mute all of the selected clips.
    The Audio Mixer works at the Track-level, and not at the Clip-level. That is why I use it so often - one click, or slider adjustment affects the entire chosen Track. If it did not work at a Track-level for you, something is wrong. Now, if one has Clips on different Tracks, then Muting of all of those would be required, or one would have address things on a Clip-level basis.
    Any way to use the audio mixer to mute the clips in mass?
    See above for how it should work, and also the exceptions - Audio on several Audio Tracks.
    Good luck, and remember that your Audio still resides in the Project Panel, should you ever need it again.
    Hunt

  • How to remove the stock from 916 -storage type

    Hi experts,
    In LS25 for 916 storage type it is showing 30 & -20 Quantity for two Quants
    How to remove the stock?
    Regards
    vr

    the usual way to remove quants from 916 is by cancellation of the picking, which is done with LT0G transaction.
    if the delivery is already goods issued, then you have to use LT01 to move the quants.
    The positive quant of 30 quantity can be moved to the place where it phyiscally is.
    the negative quant can only be eliminated by moving a quantity from a positive quant onto it. You should have a positive quant of this material in any bin of your warehouse.  so you move from this bin to 916.

  • Timestamp Difference Excluding the weekends

    Hi,
    I need to find the Timestamp difference from Monday to Friday by Excluding the Weekends..
    At present I am using the Timestamp diff function to find difference but let me know how to exclude the weekends from the calculation..
    Is there any function to exclude.. Please help me..

    Hi,
    There is no direct function available in OBIEE to exclude weekends (SAT and SUN) while you do a day difference calculation.
    In order to achieve this, there are two ways...
    1. Create a complex join with W_DAY_D table with the condition W_DAY_D.DAY_DT in between OPEN_DATE and ifnull(CLOSE_DATE, current_date) and W_DAY_D.DAY_OF_WEEK not in (1, 7). This will give you all the records from W_DAY_D between OPEN_DT and CLOSE_DT excluding Saturday and Sunday. Then you can create a metric in BMM layer to count the ROW_WID from W_DAY_D table. The count gives you the desired value.
    2. Move the OPEN_DT and CLOSE_DT to the Friday by adding the desired number of days using TimeStampAdd and DayOfWeek function. Calculate the day difference between OPEN_DT and CLOSE_DT(say X) and calculate the week difference after modifying the dates to friday (say Y). Now X-2*Y is going to give you the desired value.
    Hope this helps.
    Thanks,
    Santosh

  • Exclude the value 0 records in the pivot view obiee 10g

    HI,
    I have a requirement.,i have report circuit and outage time by month in a pivot view.If one circuit have a '0' outage time in all months then i want to exclude the record from the display.Is there anyway to display the data like this....
    thanks,
    prassu

    circuit   April may jun
       1          0   0     10   
       2         0     0     0
       3         0     4    1
    my question is  for circuit 2 all months we have outage 0.so i want to exclude the record , if we select Quarter 2.
    And  exclude 3 if we  select April....etc

  • Imovie8 : how to variate the level of the different sounds ?

    I look for extracting a sound and variate the level of the sounds of some parts of a clip or an event.
    Unfortunately, Imovie Help gives replies useful for Imovie HD or Imovie 6 which have a "Visualiseur de la chronologie < extraire l'audio").
    But imovie 7 and 8 has no more "visualiseur" and it is impossible to make variate the level of the differents sounds on an event (or a clip).
    There is no explanation at all about this part of editing.
    Where to find it ?
    Sorry for my poor english... and thanks by advance to everyone !

    Alan
    Working with soundlevels is partly possible in iMovie 08, but not as detailed as in iMovie 06. You can use multiple tracks though and use autodugging and change audiolevels for a clip or background.
    Here are some very usefull tips for working with audio in iMovie 08 (English though)
    http://imovie08.blogspot.com/search/label/Audio
    If you want more fine-tunig than presently possible you could export your project to garageband (or mediachooser, and open up in Garageband)
    Ben
    Message was edited by: Ben Bloks

  • How to suppress compiler errors without excluding database objects from the "Schema Compare" tool (using VS2013/SSDT)

    Hi,
    In short: How to suppress compiler errors without excluding the object from the "Schema Compare" tool ??
    A bit longer:
    We have a SQL Server 2008 project in Visual Studio 2013 running SQL Server Data Tool.
    An old database, with a lot of history in, has been imported into SSDT and there are many syntax errors preventing the project from compiling/running. An typical error is: "SQL70001: This statement is not recognized in this context".
    Running the "faulty" scripts on the server, executes just fine. I understand that there are syntax errors and they should be rewritten, but it's not gonna happen just like that - it is a slow process over a long period of time.
    I know it is possible to change Build Action to None, but that also exclude the object from appearing in the Schema Compare function/window.
    So - how to ignore some compiler errors and still having the objects to appear when doing "Schema Compare" ??
    Thank you in advance.

    Hi Steven,
    Thanks for your comments.
    Well, it sure does help in the future, but right now i would prefer the other way - to suppress some errors and still allow the scripts to build.
    The thing is that if we "rewrite" the objects into create scripts, then we have a huge test job ahead of us + the database environments (PROD vs DEV and UAT) does not share the same AD or DB users and therefore grants is lost if dropping/creating
    objects, right!
    If you drop a object before creating it, the drop will also drop the roles and grants and since they don't share user table, the create will not be able to add the permissions again. There might be a solution to that, but it is going to be very complicated
    for some newbies like us. We need something we can trust.
    BR
    Peter

  • Is there a way to stop the brightness from going up when alarm goes off?

    I have an iPhone 5s running iOS 7.0.6. I plug it in at night next to my bed and use it as an alarm clock. I am running the NiceClock app because it has a great black background with slim red clock numbers (doesn't throw a lot of glare). I am using the built-in Clock app that comes with the current iOS as the alarm (NiceClock, while great for a simple bedside clock with no glare, does not come with an alarm). I set my iPhone's brightness on the lowest possible setting to keep the backlight glare down. It's great. Low glare, and I can still see the time if I wake up in the middle of the night without having to fumble with the iPhone. My problem is when the alarm goes off the brightness level jumps up to maximum. Is there a way to prevent the brightness level of the iPhone from changing when the alarm goes off?

    Yes the calendar is gone. I guess it is the notification center I am referring to that comes down when I accidently swipe the top of the screen. Is there a way to stop of notification center from coming down if you swipe the screen? I figured out how to stop the control center from coming up if you swipe the bottom on the screen. Now I just need to figure out how to stop the top of the screen from doing the same thing

Maybe you are looking for

  • How to get a value from php after some seconds?

    Hello, Does someone know how to do the following thing? I want to read a value from a php file with this method : request.method = URLRequestMethod.POST; But when you do this, the php file is excecuted and the variables will be read. But what if you

  • Apps wont update and cant download anything from Itunes

    I've been using my Iphone4 for 10 months now and haven't had any problems. I updated to iOs5 and iOs5.01. I never resorted to jailbreaking it nor would never resort in the future.. I believe in purchasing apps and paying the developers for really goo

  • How do i change the phone number on facetime

    The phone number set on te facetime system is not mine, its my daughters, how do i change it?? TY

  • Download file in different formats(its urgent)

    Hi experts, I have a problem when downlaod a file in different formats. File should be downloaded 3 Formats. 1. DWG 2. DXF 3. PDF this file is used for CAD Drawings. So i required a Functional Modules to generate a file in 3 different formats.

  • Extended Notification in Workflow issue

    I have used extended notifications to send user decision to Outlook, when PR is created user decision step shows as "Ready" under status in SWIA. When I run the report SWN_SELSEN with selected check box "No time check during send". Email is not trigg