RBATP - is it possible to activate them only if certain conditions are met?

Hello APO - RBATP experts!
I have a question that I hope you can help me with:
Is it possible to have rules that become active only in certain circumstances, for example, if the RDD of the sales order is today or tomorrow?
I have limited knowledge on the topic; so your help will be greatly appreciated.
This is my scenario:
A sales order is raised in plant A for Material X, if there isn't enought inventory of Mat. X, there will be a rule to look for inventory in plant B. If stock is found in plant B; then an ATP Tree structure is created, which is then turned into a purch req; and then into an STO from Plant B to Plant A. Then the shipment is sent to the customer from Plant A. This is good, however, this is not what we want for sales orders that are placed with too much time in advance; because by the time the sales order needs to be delivered, the inventory may be available in Plant A, and those requirements are meaningless at that point. Any ideas of how to handle this? Thanks in advance!

Hi DB:
Here are my answers:
If the requirement is placed upon B, how is it possible to later have excess inventory in A? 
If the sales order was placed let's say 7 weeks in advance; during that time the whse could have received inventory from the plant.
This is mainly why I need to find a way for the rule to do the substitution and create the requirement in B, only if RDD is very close to today's date.
Is there a reason why wouldn't ship directly from B to the customer? (instead of first moving the stock to A) 
Yes there is, the requirement of the business is that any sales order raised in A, must be shipped from A; but stock must be found in alternate locations to satisfy the order. If stock is not found, then the order is cut and shipped.
Is A a plant, depot, or both?
Is B a plant, depot, or both?
How is 'B' normally supplied? 
Are you using MLATP?  CTP?
Both are depots; and are supplied from different  manufacturing plants across the country.
We are using MLATP.
Thanks again for your input!

Similar Messages

  • Set Cell or Row to read only if certain condition is met

    Greetings,
    As the subject suggest, I need to set Cells or Rows to Read Only or "Gray out" If Certain attribute doesnt contain any value.
    The requirement is to search for records of certain range and display it in the table. And the records will not be editable (read only) if certain attribute/field of the record is NULL. In another words that particular row will be gray-ed out.
    Right now I am able to extract out the range of records out and display it in the table but I am not able to set the display of the records/ rows to read only. Do note only certain row needs to be set to row only depending on a particular attribute.
    I was to code these in WDDOMODIFYVIEW()... anyone have any solution to this? Points will be given of course. ")

    Please dont use the DOMODIFY method for such changes.
    The Properties mapped to the context are designed for exactly this purpose.
    Your context node should be extended with another attribute. Eg attr_y_Read_only.
    The read_only or enabled attribute of field y would then be mapped to this attribute.
    Depending on cell editor type it may be called enabled or read only.
    You then set this new attribute to true or false appropriately for each element in the node.
    This new attribute, although inside the node, need not be displayed as part of the table.
    It is there to help control fields in the each element.
    Regards
    Phil.

  • How do I add cells, but only if certain criteria are met first in other cells?

    I have a little problem in working this out, I can't! I can add cells & alike, but more complex working are an unknown to me.
    Any help here would be greatly appreciated.
    I've three cells in a row C4 with 5 in, D4 with 3 in & E4 with 1 in. I'd like to add these numbers together into a cell below E6, which is =SUM(C4:E4) which will make 9 in cell E6.
    I've also three cells in a row below C4 - E4 which are C5, D5 & E5 which will only ever have ether 0 or 1 inputted into them. All these cells will only ever have data inputted into them from left to right i.e. Column C first, then Column D & lastly Column E.
    What I’d like for the cells to do, is only add cells C4 - E4 from left to right, once a cell below (C5 - E5) has had a 1 inputted into it & then continue to add the cells there after normally.
    Examples:
    Like above if C4 had 5, D4 had 3 & E4 had 1, & the all the cells below (C5 - E5) had 1 in them, then E6 = 9.
    Again,  if C4 had 5, D4 had 3 & E4 had 1, but C5 had 0, D5 had 1 & E5 had 1, then E6 = 4.
    Again if cells C4 - E4 are the same, but C5 had 0, D5 had 1 & E5 had 0, then E6 still = 4.
    In the same aspect as above, if C4 - E4 are the same, but C5 had 1, D5 & E5 had 0, then E6 = 9.
    If cells C4 - E4 are the same, but C5 - E5 all had 0, then E6 = 0.
    I hope this is clear, & all comments are welcome.
    Many Thanks.

    Big_Botts wrote:
    Hi Barry,
    Just a thought, Wayne is helping me on another question I asked, do you think you could help?
    https://discussions.apple.com/message/17950789#17950789
    Wayne's got that one well in hand. Nothing to add there, except that you'll find the details about conditional formatting in the Numbers '09 User Guide, which can be downloaded via the Help menu in Numbers. While you're there, grab the iWork Formulas and Functions User Guide as well. Both are quite useful.
    Regards,
    Barry
    Regards,
    Barry

  • Retrn result only if both conditions are true

    I have this query to get list of names that are associated with
    a keyword called 123 but do not belong to a item named 456
    select distinct t1.lname, t1.sname , t5.rname
    from table1 t1, table2 t2, tale3 t3,
    table4 t4, table5 t5,
    TABLE(xmlsequence(extract(t4.xmlcol,'/cs/lo/c'))) k
    where t1.id = a.id
    and t3.id = a.id
    and t4.id = t3.id
    and t5.id = t3.id
    <--1st condition -->
    and extractValue(k.column_value,'c/L/keyword/@id') in ('123')
    <-- 2nd conditon-->
    and t5.item not in (select distinct t6.name from table7 t7, table6 t6
    where t7.id= t6.id
    and t6.ref_id = 456)
    In my database, I have 2 names. for a
    given lname in the output, it is associated
    with 2 rnames.One rname is associated with
    keyword 123 and the other rname is associated
    with item 456. Something like this:
    lname   sname   rname
    jakal     jkl      r123 --> associated with keyword 123
    jakal      jkl      r456 --> associated with item 456
    So when I run without condition1 and condition2 above is what I get.
    That is jakal is associated with both r123 and r456.
    However in my first query, I am trying to get the lnames and snames that are associated with keyword 123 but are not associated with item 456.
    I want both conditions true to be displayed.
    However when I write the query as mentioned initially, I get the row back.

    Not sure if I understand the problem correctly.
    But simplistically boolean algebra says that if you want a result only if both conditions are true, use AND.
    E.g.
    select * from table where <condition1> and <condition2>
    Now if this does not work, it means that the conditions do not do what you think these should be doing.

  • Inforecord - only plant relevant conditions

    Hi Experts,
    could any of You pls help me with an inforecord condition issue?
    I would like to use plant AND purchasing organisational relevant inforecord - both are necessary. I have configured the V_001W_K table (Activate condition Maintenance for Plant), but somehow i did not end up at the desired state:
    if I set to a plant - no Plant relevant conditions are allowed - I can not create an inforecord assigned to a plant - which is OK But if I added - only plant relevant conditions are allowed - I was still able to create an inforecord with price conditions with no plant - I expected, this would be forbidden as well. (purch organisation : plant - N:1 - so plant could be mandantory).
    Now users keep creating inforecords with and without plant - which should be stopped, preferably to create only purch org AND plant relevant data.
    Could any of You pls tell me, what I miss: setting or misunderstanding the configuration possibilities.
    Answers will be appreciated

    This bit of config (help text below) ? If so then a misunderstanding.  The setting relates to Conditions, not whether the PIR are set per Plant in themselves.
    Indicator: Conditions at plant level
    Determines how prices and conditions are stored for the relevant plant.
    Use
    If conditions are allowed at plant level, you must create purchasing info records and contract items relating to the plant. Centrally agreed contracts cannot then be created.
    If conditions are not allowed at plant level, you may not create any purchasing info records or contract items relating specifically to the plant.
    If conditions are allowed with or without a plant, you can create purchasing info records that either do or do not relate specifically to the plant.

  • Rebate values to be picked up only after certain tgt is reached

    Hi guys,
    One small but very important query.
    We have a requirement wherein rebate shoul only be paid to customer only after certain tgts are reached in terms of value and quantity.
    rebate percentages are to be calculated for the whole period, in which rebate agreement is valid.
    Thanks in Advance

    Hi Hemant
    Try this Document [Rebate|http://groups.google.co.in/group/sapSDtech/files]
    It explains Rebate in Depth....
    Hope it helps

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • My imessages are gone. i cant activate them now. When i go into send and recieve its only my e-mail address thats ticked and not my phone number ticked also. When i sign in with my apple ID it is ticked there. can anyone help me please.

    my imessages are gone. i cant activate them now. When i go into send and recieve its only my e-mail address thats ticked and not my phone number ticked also. When i sign in with my apple ID it is ticked there. can anyone help me please.

    Hi,
    Go to the iPhone
    GO to Settings > Messages
    Is the iPhone Number ticked to be enabled (It will be greyed out and not editable but should be On)
    If it is Off (Unticked remove the Apple ID)
    Place the iPhone in Airplane mode for a few minutes.
    Go back to Settings Messages and make sure the Message app Is Enabled overall.
    Check the iPhone Number is verifying.
    When Completed test by sending an iMessage to your Apple ID (Mac)
    If that works add back the Apple ID to the iPhone's Settings.
    Restart the Mac App and Accept the op ups that appear as to what the iPhone is using.
    9:52 pm      Friday; April 4, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I'm using GarageBand 10.0.1. Do the built-in drum tracks only come in mono format, or is it possible to make them true stereo (i.e. Left and Right channels outputing different signals, to sound like the kit has been panned across the stereo field)?

    I'm using GarageBand 10.0.1. Do the built-in drum tracks only come in mono format, or is it possible to make them true stereo (i.e. Left and Right channels putting out different signals, to sound like the kit has been panned across the stereo field)?

    All the Drum Kits available for GarageBand are mixed in stereo.
    Logic provides the same 18 Drum Kits also as "Producer Kits", which are multi-track outputs,. Each Drum Kit Piece (Kick, Snare, HH, etc) and also room mice and overheads are routed to individual channel strips.
    Here is a screenshot of one Drum Kit in Logic Pro X with individual Channels Strips. Each Channel Strip can be loaded with individual effects (compressor) and adduced with individual sends, etc.
    What that means is that all the Drummers are professionally recorded and sampled with individual mics. The Stereo Drums Kits are just "stereo mix-downs" for easier handling and less CPU demand. I explain all the details about the Drummer ecosystem in my graphically enhanced manual "GarageBand X - How it Works"
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Nokia E71 possible to auto-activate bluetooth only...

    Nokia E71- possible to auto-activate bluetooth only when receive s call?
    I have Nokia J bh-806 bluetooth which activates only when remove it from clip. This way it saves bluetooth battery. I wonder if is possible to auto turn on phone bluetooth with some application ,only when receive a call because since I activate it bluetooth battery of the phone (e71) is reduced to 50%.

    Hi,
    There's no application that can do that actually. and the phone itself does not have the said feature. You have to manually turn on the bluetooth of the phone if you want to connect to your bluetooth headset.
    Thanks,

  • Is it possible to activate Batch Management for a material without Class?

    Dear Experts,
                           Is it possible to activate Batch Management for a material without having Class & Characteristics maintained. As my requirement is to procure Fuels in Batches only with external no. assignment without any parameters to be checked at the time of Goods Receipt? Batches are needed for Accountability purpose.
    Regards

    >
    Chandan H N wrote:
    > Dear Experts,
    >
    >                        Is it possible to activate Batch Management for a material without having Class & Characteristics maintained. As my requirement is to procure Fuels in Batches only with external no. assignment without any parameters to be checked at the time of Goods Receipt? Batches are needed for Accountability purpose.
    >
    > Regards
    Please check this answered link:
    Batch-classification view
    If you want classify a batch, then you should have maintained the batch classification in material master which is either class 022 or class 023 (depends on your batch level set in cusotmizing). The material class 001 has no impact on the batch classifcition, it is what it is: a classification for the material.
    Edited by: Afshad Irani on Jun 20, 2010 4:40 PM

  • I want to move pictures from my mac to iCloud. Then I want to erase those pictures from my mac and leave them only in iCloud.. Can I do it?

    I want to move pictures from my mac to iCloud.com, then I want to erase those pictures from my mac and leave them only in iCloud.. Can I do it?? It looks like it's not possible because if I erase the picture from my mac, then they'll be erased automatically in my iCloud account too!!

    If you are using iCloud Photo Library and delete them from any device they will be deleted from iCloud and from all devices using iCloud Photo Library. If you want to reduce the storage space required on your Mac the following quote from iCloud Photo Library FAQ - Apple Support may help:
    Can I use iCloud Photo Library to save space on my device?
    iCloud Photo Library automatically keeps all your photos and videos in the original, high-resolution version. Follow these steps to choose how you store your photos and videos on your device:
    In iOS, tap Settings > iCloud > Photos or Settings > Photos & Camera, then select a storage setting.
    In OS X, click Photos > Preferences > iCloud, then select a storage setting.
    If you turn on Optimize [device] Storage, iCloud Photo Library will automatically manage the size of your library on your device, so you can make the most of your device's storage and access more photos than ever. All of your original, full-resolution photos and videos are stored in iCloud while device-size versions are kept on your device. You can download the original photos and videos over Wi-Fi or cellular when you need them.
    If you turn on Download Originals, iCloud Photo Library will keep your original, full-resolution photos and videos in iCloud and on your device. Download Originals is the default setting for iOS devices with the free 5 GB storage plan and for all Mac devices.

  • Why do I use condition indexes? How do you activate them?

    Hi all
    Why do I use condition indexes? How do you activate them?
    thanks all

    You can create and use condition indices. You can use these indices to display, change and create condition records with reference. This transaction can include condition records with several condition types and tables. For example, you can use a condition index if you want to see all condition records that apply to a particular product regardless of whether the records are prices or discounts. In this case, you can use one of the standard condition indexes. Or you may want to see a list of condition records that contain a particular sales deal and a material from a user-specified list of products. To display this information, you can create your own condition index.
    Creating a condition index is similar to creating a condition table. In Customizing for Sales, you select the combination of fields that you want in the index key. The system automatically proposes a list of permitted fields to choose from. The fields you specify for the key can have a maximum combined length of 100 characters.
    The activation function displays a list of all available condition indexes and indicates which are active. The system can use a condition index only when it is activated. Before you can use the indexes that are delivered in the standard version, you must first activate them in Customizing for Sales. Some indices are activated automatically during generation. In addition, you must specify one of the following index updating requirements for each condition index:
    Requirement 1: The index is updated when the user provides data for all fields in the index
    Requirement 2: The index is updated when the user provides data for at least the first index field

  • I have marked some video cuts for removing, and want to activate them again and take away the marking (a red line over the thumbnails). How do I do that?

    I have marked some video cuts for removing, and want to activate them again and take away the marking (a red line over the thumbnails). How do I do that?

    In the middle tool bar, near the Reject Tool that you used to make the red marks, there should be an "Un-Mark" Tool. Select this tool and you can erase the red marks. It should look like an empty star.
    YOu can select "View Rejected Only" to make sure you get them all.

  • Theme only on index page

    Hi,
    I have a customer where i want to implement a theme only on the index page. The rest should just use SAP corbu. Is this possible maybe by using the cockpit feature in the configuration tables?

    You can assign a theme to a cockpit but your requirement, as far as I understand it, is to assign one theme to the index page and another one to everything else. That won't work. You are always using one cockpit, either the inbuilt one (/nwbc) or a named one. Even if there are multiple cockpits in the system, you will always be using one cockpit at a time depending on what ICF node you used.

Maybe you are looking for

  • Unable to save the message mapping

    Hi.. I have completed the Message Mapping. when i am trying to save the Message Mapping i am getting the  Error while executing save "The length 0 of the array ' Sorted Function keys' is not equal to the number of 1 functions". can you pls suggest me

  • How do I enlarge the font on web pages

    how do I enlarge the font on web pages so that it stays that way all the time

  • Line item...Card H

    hi guys, while creating infocube dimensions...I found some things I didnot understand... 1.Line Item Dim 2.Card H Dim what are they and where do we use them in real time.... thanks and rgds Surekha

  • Is there a way to batch relink audio files in itunes?

    Hello, My ext. HD with my iTunes library crashed (*****) and I copied the files on my iod to my new drive with Senuti. I trashed the itunes library file so it would rebuild and set the music folder in the itunes preferences to the new drive. BUT NO M

  • HT4623 How to erase the new update if you don't want it?

    My Ipad is slowing down cant I erase And restart to the way it was?