Infinite Supply and ATP calculations

Hi,
We are using an Unconstrained plan which is ATP enabled.We have setup ATP rule where the Infinite Supply option is set as Cum Total Lead time. Now, we have Purchase Orders that are placed both within and beyond the Cum Total Lead Time. For example, let's say the Cum total LT is 30 days and we have 2 POs, one on the 15th day and the other on the 40th day. When we do our ATP, we are able to see the PO which is on the 15th day but the PO on the 40th day is not seen by ATP since it assumes that since our infinite supply option is 30 days, we can meet any order within 30 days and the system gives an ATP date of 30 days. The requirement here is for ATP to ignore the Infinite Supply option if there is a PO or Intransit available beyond the Cum Total LT and consider that for ATP calculations. So, in the example above, ATP should return a date of 40 days from now.
I have tried using both the options ATP/CTP Based on Planning Output and ATP/CTP Based on Collected data for the profile option INV:Capable to Promise, but it still ignores the POs beyond the Cum Total LT. Please help with your ideas if ATP can be made to look beyond the infinite supply option in the ATP rule.
Regards,
Abhijit

Hi Devesh,
Thanks for your input.
The only problem in having the highest lead time for buy items as the Infinite Supply is that if there's no On-hand, PO or In-transit available for a Demand, ATP will return a date of the highest lead time for all items that is assigned with that ATP rule in that Org. We have our lead times ranging from 10 days to 120 days. If we set the ITF as 120 days (user defined) and enter a sales order for the item which has a total LT of 10 days, ATP will give a date of 120 days if no supply is available. This will not be acceptable as we will be communicating 120 days to the customer whereas actually we can get that item from our supplier in 10 days.
Please correct me if my example is incorrect. Also suggest if we can bypass the scenario above with any other setup.
Regards,
Abhijit

Similar Messages

  • Purpose of IS SUPPLIED and IS REQUESTED

    Hi,
    What is the purpose of "IS SUPPLIED" and "IS REQUESTED" and in which cases we do these ABAP statements.
    Thanks,
    Sandeep

    Hi,
    IS SUPPLIED is used to check if an optional importing parameter e.g. of a method is supplied. Usually this condition is used to default the value if it is not supplied and the default is too complex to hard define it in the parameter definition. Example:
    IF iv_from_dt IS SUPPLIED.
      lv_from = iv_from_dt.
    ELSE.
      " if no start is supplied we take the first of this year as default
      lv_from(4) = sy-datum(4).
      lv_from+4(4) = '0101'.
    ENDIF.
    IS REQUESTED is used to check if a certain exporting parameter has been requested (is further processed) by the caller e.g. of the method. Often function modules or methods have more than one exporting parameter e.g. one structure with data / keys for calculations and one with data / keys and the corresponding texts for printing in a report. If the caller only needs the structure with the data as it does not need any text information the called function module can skip getting the texts and save runtime.
    Kind Regrads
    Roman

  • Why does my FP-1600 take a 24V .5 Amp Power Supply and drop the Voltage to 11V at .5 Amps?

    I have a FP-1600 connected to 4 FP-TB-1 bases. 2 FP-AI-100, 1 FP-TC-120, and 1 FP-AO-210 modules. I am powering the FP-1600 with a 24 V .5 A power supply. There are no devices currently connected to any of the modules. The power supply should be supplying 12 W, which should be enough to power the FP-1600 and the 4 modules according to the power requirement calculation in the manual P = 7 W + 1.15*#modules. When I install the third module, the FP-1600 stops communicating. Checking the power supply I see that the voltage drop across the power terminals on the FP-1600 is only 11V and then measuring the current being drawn it is .5 Amps, which is only 5.5 W, not enough to power the devices. When I unhook the power supply and measure the Voltage it is 24 V.
    Why is the FP-1600 dropping the Voltage to 11V? Should I just purchase a 12V 2 Amp power supply?
    Thanks for any help
    Jeremy

    Hello jqk,
    You got it figured out. The maximum current that can be drawn is .5 which is too small. As the current being drawn approaches the maximum allowable current, the voltage will begin to drop. Eventhough the current you measure is .5A, the fact that the voltage is 11V means that the circuit requires more current to function properly.
    As a rule of thumb, you want the maximum current your power supply can deliver to be at least the double of the system's maximum current consumption.

  • Shared DateVar in Subreport and datediff calculation in Main Report?

    Hello experts,
    I am using CRXI sp2.  I have a report that contains two subreports for different dates in the same date field that are identified by a Service Code.  The subreports have been placed in the same group footer 1a to be displayed and the calculation resides in the main report group footer 1b.  The shared variables are as follows:
    whileprintingrecords;
    shared datevar Codedate5473;
    Codedate5473:={@Codedate5473};
    and
    whileprintingrecords;
    shared Datevar Codedate5623;
    Codedate5623:={@Codedate5623}
    The main report has the following calculation is in group footer 1a.
    Whileprintingrecords;
    Shared numbervar daysbetween;
    if (isnull({@Shared 5623})or isnull({@Shared 5473})) then 0
    else daysbetween:= datediff("d",{@Shared 5623},{@Shared 5473})
    This returns negative numbers as well as calculations where one of the shared variables is null.
    I reset the calculation in the report header as well.
    Thanks for your help in advance.
    Kevin

    Hi Kevin,
    I can reproduce your issue, As per my knowledge the crystal will make some issues in null value computation as well as  shared variable  computation
    In your report i can see , you tried to access values from subreport to main report through shared variable. that will make problem. we can access values from main report to subreport without any issue using shared..dont ask me the reason..i am not the right person to say that... lol.
    The another wrong thing  i was found in your formula is , you are not resetting the shared variable any where.. so once the date field is null, the shared variable returning the previous value.
    So this is the solution for you..
    1,You have to add one more subreport for displaying your result., Lets say 'Sub report3'
    and create a formula, like.(Same which you have write before for the result)
    shared datevar Codedate5473;
    shared Datevar Codedate5623;
    numbervar daysbetween;
    WhilePrintingRecords;
    daysbetween:= datediff("d",Codedate5473,Codedate5623);
    daysbetween;
    2, Re- write your first two formulas like this
    For Subreport1,
    WhilePrintingRecords;
    shared dateVar Codedate5473;
    if isnull({Codedate5473}) then
    Codedate5473:=date(0,0,0)
    else
    Codedate5473:=date({Codedate5473});
    For subreport2
    WhilePrintingRecords;
    shared dateVar Codedate5623;
    if isnull({Codedate5623}) then
    Codedate5623:=date(0,0,0)
    else
    Codedate5623:=date({Codedate5623});
    Hope this will works for you,
    Cheers,
    Salah.
    Edited by: salahudheen muhammed on Aug 7, 2009 1:05 PM

  • How to update Supplier and Supplier Sites through interface tables

    Hi All,
    Working on EBS Version 11.5.10.2
    I have a requirement to update flags in Supplier and Supplier Sites.
    Interface Tables : ap_suppliers_int
    ap_supplier_sites_in
    1. ap_suppliers_int :
    Field name : hold_unmatched_invoices_flag
    2. ap_supplier_sites_in :
    Field name : hold_unmatched_invoices_flag
    The Flags to update in base tables
    1.base table name : po_vendors
    Field to Update : hold_unmatched_invoices_flag
    2. base table name : po_vendor_sites_all
    Field to Update : hold_unmatched_invoices_flag
    Please let me know is there any API for updates.
    Thanks and Regards

    Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ap_supplier_sites_in+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=po_vendors+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=po_vendor_sites_all+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=hold_unmatched_invoices_flag+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • SPP Error - No valid transportation lane between Supplier and LOC1

    Hi
    While running the EOQ and SFT planning service, we get the following error
    "No valid transportation lane between Supplier and LOC1". LOC1 is the entry location for our BOD.
    We have not created any procurement relationships as we are working on a standalone SCM trialbox.
    Appreciate any help/suggestions to resolve this issue.
    Thanks & Best Regds
    Mitesh

    Hi Mitesh,
    You need to have valid transportation lanes from the supplier. Maintain it manually. If I remember correctly it is possible to have External Procurement Relationships in APO only (type 4) and not just contracts, purchasing inforecords or scheduling agreements CIFed from ECC.
    Hope this helps.
    Thanks,
    Somnath

  • How do I use LabVIEW to control and vary the voltage on my Agilent Power Supply and simultaneously record temp from 1 DMM and voltage from another DMM?

    I am using an Agilent Power Supply  to apply a voltage to a
    thermistor to heat an Al chassis.  I want to use LabVIEW to tell
    the power supply to apply 5V for 10 minutes, then step to 7V for 10
    minutes, etc.  I am completely new to LabVIEW, so any help would be greatly appreciated!
    In addition to that, I want to place a type J thermocouple onto the Al
    surface and use a Keithley 2000 DMM to monitor the temperature (it has
    a built in conversion from V to Temp for type J).  I will also be
    using another Kelthley 2000 DMM to record the output voltage of a new
    uncalibrated thermocouple.  I would like to collect the output
    voltage for this uncalibrated thermocouple and the temperature reading
    from the type J simultaneously.  How should I go about doing this
    in LabVIEW?  I will be using version 6.1.  The power supply
    and DMMs will be connected to a PC using GPIB.
    Again any suggestions would be greatly appreciated- I have no idea
    where to begin on such a project.  I have taught myself how to
    make a basic VI- converting temp in oC to oF, but  that is as far
    as my knowledge goes.

    What you want to do should be fairly straightward and a good way to learn labview. 
    First off, if you haven't already, I would download the drivers for the Keithley and Agilent instruments.  I found the keithley drivers at the link below.  You will need to find the labview drivers for the Agilent PS at their website.  Drivers are the VI's you will use in your program to control the insturments.
    http://sine.ni.com/apps/we/niid_web_display.download_page?p_id_guid=E3B19B3E90B0659CE034080020E74861
    If you open Labview and go to the help menu and click on Labview bookshelf there is alot of information on getting you started coding labview.   This should get you started, if you have anymore questions just ask in this same thread and I am sure you will get all the help you need.
    Brian
    Message Edited by BrianPack on 09-14-2005 05:21 PM
    Message Edited by BrianPack on 09-14-2005 05:21 PM

  • There is something wrong with the volumes buttons in my macbook pro, every time i pressed the one who raises the volume, it leads me to the screen where (i do not no what its called) the background is black with the date and time and a calculator.

    There is something wrong with the volumes buttons in my macbook pro, every time i pressed the one who raises the volume, it leads me to the screen where (i do not no what its called) the background is black with the date and time and a calculator. However, when i lower it, my safari tab goes out of the screen. What do you guys think i should do? I'm getting very nervous.

    hey HAbrakian!
    You may want to try using the information in this article to adjust the behavior of your function keys to see if that resolves the behavior:
    Mac OS X: How to change the behavior of function keys
    http://support.apple.com/kb/ht3399
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Goods Receipt PO+VOlume and Weight Calculation

    Hello experts
    i have a GRPO with 10 items in lines. as far as i can see, there are missing in some of the the value for the Weight and the Volume. while checking the Item Master Data form, the volume and the weight are filled up with specific value.
    could you please inform me the reason this document(GRPO)  has not filled these values for specific items?
    also, by clicking the Vlolume and Weight calculation, for these items the the volume is filled and the weight is not.
    it is strange i suppose.
    what i have found out is that in a Purchase Order, some of the items do not have a Volume or/and Weight because the BP does not have the values noticed to us and these fields are editing in item master data afterwards
    By using the System information under the VIew, i can see that the VOlume and Weight Calculation gets data from INV1 table
    Edited by: Fasolis Vasilios on Jan 10, 2012 10:56 AM

    Hi,
    The reason is simple: those value can not be copied if the Item Master was ready when you created the PO. However, PO wont automatically updated when you updated Item master. It stays in the old Item setting. That would be copied to GRPO from the old PO.
    Thanks,
    Gordon

  • I have had Adobe XI for about two years and My harddrive just crashed. My backups were part of the failure so I can't get it back. I purchased it from a third part supplier and it was a download. I need to find out how to get it restored. I can send scree

    I have had Adobe XI for about two years and My harddrive just crashed. My backups were part of the failure so I can't get it back. I purchased it from a third part supplier and it was a download. I need to find out how to get it restored. I can send screen shots of all of the drive location where the drive is still good and I can see my Adobe Acrobat pro information, but the download itself is missing. NEXT STEP?

    If you are talking about Reader (you did post in the Reader forum), then just download http://get.adobe.com/reader/enterprise. However Reader is free not purchasable. You can download a trial then install using your serial number, which if you didn’t register or write down somewhere you will be out of luck to track down.
    Download a free trial or buy Adobe products | Adobe downloads

  • Order has been fully supplied and invoiced but a quantity of 76 is still sh

    Hi,
    Customer order XXXXXX line30This order has been fully supplied and invoiced but a quantity of 76 is still showing as outstanding on MD04
    Total quantity is 288 out of which 212 was deliverd and invoiced once and 76 was delivered another time and invoiced the status is compleate for both
    when you see in MD04 for same material it is showing 76 under Rec/Re coluem and it is showing purchse req under MRP colum, for rest of the line items it is showing Purchase order item under MRP coluem
    user doest want this 76 in MD04
    I have searched the note in SAP note no:Note 25444
    SDRQCR21: Recovery of sales and delivery requirements
    and run but no results. the problem is still there.
    and also please guid me wether it is a sd issue are MM or any other because as to my analysis if i run SDRQCR21 it has to delete all bad requirments but this is with purchase requisistion under MRP colum in MD04 screen with a     *  mark.
    please help me find a solution
    Thanks for the help
    Regards
    Rajendra Prasad

    Hi,
    Try and click delivery completed in sale order and check MD04.
    This will not appear.
    regards
    suresh

  • What is the best way to query planned orders or work orders for make items and identify the buy component that is short for supply and vice versa?

    What is the best way to query planned orders or work orders for make items and identify the buy component that is short for supply and vice versa?

    What is the best way to query planned orders or work orders for make items and identify the buy component that is short for supply and vice versa?

  • Supplier and suppliersite not available in po creation from

    i have created supplier and suppliersite but its not populated in po creation form

    Open Supplier & Query for Site. On General Tab you'll see Purchasing Check Box. It should be checked. This is for 11i Instance.
    Please check this.
    Thanks

  • REDO scanning goes in infinite loop and Too much ARCHIVE LOG

    After we restart DATABASE, capture process REDO scanning goes in infinite loop and Too much ARCHIVE LOG being generated.
    No idea whats going on.... otherwise basic streams functionality working fine.

    What's your DB version

  • Supplier and Vendor ? difference.

    What is difference between supplier and Vendor ?
    Regards

    Hi,
    Vendor and Suppliers are almost same. Sometimes we may have difference. There is a concept called DUNS Number which they call as Supplier. There will be a system like third party system which is called one source system and they will collect all vendor information from different companies and sell these information to the people who need information reg vendors.
    In that term Duns numbers are called as suppliers.
    Hope this helps for you.
    Thanks,
    Arun

Maybe you are looking for

  • CASH FLOW per PERIOD

    Hi Gurus/Experts, really need your help since i'm stuck in creating Report Painter for Cash Flow. Below is the explanation of my case: My requirement is to make report for Cash Flow periodically (or per month). Already created Report Painter in FSI5

  • Satellite C660-18C - Can't get the microphone to work

    So I couldnt get the microphone to work so I bought a new one. I also can not get this to work. I have tried everyway I can think of and it simply will not register any sound and yes the microphone is on and the volume is full. Can someone please hel

  • Scheduling Mail

    Hi all, I've enabled SBO mail service in client place and also I am able to send the mail manually. Now I've requirement to send some  reports (crystal report built for some Purchase and Sales data) to company management in daily basis. Can anyone he

  • Use of Complex Oracle Object with JDBC

    How can I use Oracle Object(or PL/Sql type) with JDBC I have a structure of record with some attributes and table of another attribute. My types are defined as follows ! <code> CREATE TYPE EMPLOYEE_GRADES AS TABLE OF VARCHAR2(50) CREATE TYPE EMPLOYEE

  • How to set a Japplet as parent for a JDialog ?

    Hi, I am using netbeans IDE 6.0 for swing development. I have a web application where i have main GUI as JApplet, In this I am calling a custom JDialog on a button click. Code for main GUI looks like, import javax.swing.*; import javax.swing.event.*;