ASCP Planned orders recommendation date for current week

Dear Experts,
I am facing the below issue in Decentralized ASCP workbench.
In the forecast demand date is 18-04-11, 25-04-11, 02-05-11 and so aon (Weekly buckets).
After launching plan today (18-04-11), Recommendation in workbench are showing due dates as 19-04-11, 25-04-11, 02-05-11 and so on.
The question here is, Why the current week demand is shifting one day (19-04-11). Business requirement is today (18-04-11).
Appreciating your valuable soluation.
Note:
(We checked planning time fence. Items having the value 0, 1 are also giving the same result)
Regards,
Ramesh

Sandeep Gandhi,
Yes, ASCP can not schedule anything in the past but it will suggest planned orders for today (Plan run date) for the past demands.
Example: Forecast Demand due date : 16-04-11.
when we run the plan today, ASCP have to suggest planned order for today's due date (18-04-11)
But we don't know why it is shifting to 19-04-11 (tomorrow).
Your valuable suggests will be very helpful
Regards,
Ramesh

Similar Messages

  • How to get data for current week and previous week using customer exit in Bex.

    Hi everyone,
    I have a scenario in which I need to display data for current week and previous week (based on "sy_datum" the program has to calculate current week and previous week) in Bex using  Customer exit. I have created one variable in Bex Query Designer and I have written code for the variable in CMOD. But it is not working fine, (I know that we can do the same by using offset value in Bex). Can some one guide me how to achieve my requirement using customer exit.
    Thanks in Advance,
    G S Ramanjaneyulu.

    Hi krishna,
    Thanks for your quick reply, can you have a look at my code,
    case i_vnam.
    WHEN 'ZPWK_CWK'.
    ranges : pre_week for sy-datum.
    data : start_date type DATS,
           end_date TYPE dats .
    ************FM TO GET FIRST DATE OF CURRENT WEEK ************************
    CALL FUNCTION 'BWSO_DATE_GET_FIRST_WEEKDAY'
      EXPORTING
        DATE_IN  = sy-datum
      IMPORTING
        DATE_OUT = start_date.   " WEEK FIRST DATE
    end_date = START_DATE + 6.   " WEEK LAST DATE
    END_DATE   = START_DATE - 1.   " PREVIOUS WEEK END DATE
    START_DATE = START_DATE - 7.   " PREVIOUS WEEK START  DATE
    **********PREVIOUS WEEK DATES IN PRE_WEEK******************
    pre_week-SIGN   = 'I'.
    pre_week-option = 'BT'.
    pre_week-LOW    = START_DATE.
    pre_week-HIGH   = END_DATE.
    APPEND  pre_week.
    CLEAR : START_DATE,END_DATE.
    endcase.
    Regards,
    G S Ramanjaneyulu.

  • How to calculate start date and last date for current week

    Dear All.
    i want to calculate the start of the current week as well as the last date of the current week, our week start from Saturday and ends of Friday i.e. Saturday is the first day of the week and Friday is the last day of the week.
    How can i acheive this in universe Designer?.
    Please help...

    Hi
    the formulas in webi will be as follows
    for startdate
    =RelativeDate(LastDayOfWeek(CurrentDate());-8)
    for enddate:
    =RelativeDate(LastDayOfWeek(CurrentDate());-2)
    Regards,
    Ranganath

  • Query to get data for current week+13

    Hi Friends,
    I have two tables
    BACKLOG_WEEK_AFTER_ATP (LE)
    BACKLOG_ATP_GT_CW (RE)
    ** First I have to query whats the current week and year and it should come in this format ---- 2011-WK30
    columns in table BACKLOG_WEEK_AFTER_ATP are:
    ITEM_NUMBER      QUANTITY
    1N5418                 20
    1N5614                 30
    1N5806SM               10
    1N5811                  0
    2PFF6                  60columns in table BACKLOG_ATP_GT_CW are:
    ITEM_NUMBER     QUANTITY        YEAR_WEEK
    1N5418                30        2011-WK30
    1N5418                 5        2011-WK31
    1N5614                30        2011-WK32
    1N5806SM              30        2011-WK33
    1N5811                20        2011-WK32
    3EX473K1              20        2011-WK30My report should look like
    ITEM_NUMBER    2011-WK30  2011-WK31  2011-WK32  2011-WK33  ...............till 13th week
    1N5418                10         -5         -5         -5  ...............till 13t week
    1N5614                30         30          0          0  ................till 13th week
    1N5806SM              10         10         10         20  ................till 13th week
    1N5811                 0          0         20         20  ................till 13th week
    2PFF6                 60         60         60         60  ................till 13th week
    3EX473K1              20         20         20         20  ................till 13th weekTo get this report i have these conditions to keep in mind.
    1) If item_number not present in LE table and present in RE table then repeat what it is in RE table till 13th week
    2) If item_number not present in RE table and present in LE table then repeat what it is in LE table till 13th week
    3) If item_number present in LE and also present in RE table then do subtraction for RE - LE for that particular item_number till 13th week.
    4) If item_number is there in LE table but not present in RE table for current_week+1(today week comes as 29th week) then repeat the same which is there in LE table. If item is found in RE table for (example 32th week) then subtract RE -LE for that particular item_number
    Thanks in advance.
    Regards

    Hello,
    If you don't need the PIVOT display, then this may help you :
    with le as
    (select '1N5418' item_number, 20 quantity from dual union all
    select '1N5614' item_number, 30 quantity from dual union all
    select '1N5806SM' item_number, 10 quantity from dual union all
    select '1N5811' item_number, 0 quantity from dual union all
    select '2PFF6' item_number, 60 quantity from dual ),
    re as
    (select '1N5418' item_number, 30 quantity, '2011-WK30' year_week from dual union all
    select '1N5418' item_number, 5 quantity, '2011-WK31' year_week from dual union all
    select '1N5614' item_number, 30 quantity, '2011-WK32' year_week from dual union all
    select '1N5806SM' item_number, 30 quantity, '2011-WK33' year_week from dual union all
    select '1N5811' item_number, 20 quantity, '2011-WK32' year_week from dual union all
    select '3EX473K1' item_number, 20 quantity, '2011-WK30' year_week from dual
    row_gen as (
    select item_number, calc_year_week,
           row_number() over(partition by item_number order by calc_year_week) rn
    from
        (select le.item_number from le union select item_number from re) item,
        (select to_char(level*7+sysdate,'YYYY-"WK"WW') calc_year_week from dual connect by level<=13) week)
    select item_number, calc_year_week, calc_qty
    from row_gen, le, re
    where row_gen.item_number=le.item_number(+)
    and row_gen.item_number=re.item_number(+)
    and row_gen.calc_year_week=re.year_week(+)
    model
    partition by (row_gen.item_number)
    dimension by (rn)
    measures (calc_year_week, year_week, le.quantity le_qty,re.quantity re_qty,0 calc_qty )
    rules  (
    calc_qty[1]  =
        case when re_qty[cv()] is null then le_qty[cv()]
        when le_qty[cv()] is null then re_qty[cv()]
        else  re_qty[cv()]-le_qty[cv()]
    end,     
    calc_qty[rn>1] order by rn =
        case when re_qty[cv()] is null then calc_qty[cv()-1]
        else re_qty[cv()] - calc_qty[cv()-1]
        end           )
    order by 1,2;I am not sure this is the simplest way to do it, but the results seem to match your example.
    Regards,
    Sylvie
    Edited by: Troll35 on Jul 19, 2011 3:08 PM

  • ASCP Planned orders in period buckets (Weekly or Monthly)

    Hi,
    We see that the ASCP planned order due dates are pushed to friday of week (if in weekly buckets) or last friday of the month (if in Monthly buckets).
    What is causing this behaviour? Is there any profile option/plan option cuasing this to happen.
    Any help in regard is most appreciated.
    Regards,
    Anand

    Hi Guru,
    1) Please check the maximum earliness & lateness of a receipt under Pegging in Demand tab of APO material master is defined.
    2) In SNP2 tab, check the period split whether the data is blank.  If it is 2, the planning data will get disagregated and released from middle of bucket.
    Regards
    R. Senthil Mareeswaran.

  • MRP setting for Purchase (Planned Order ) Requirement date

    Dear Sir,
    During the MRP run , we desire that the genertaed Planned Orders for the Purchase related items , should have requirement date as either the current date or the current date plus procurement lead time defined in the Material Master against the item .
    To achive the abobe requirement , we request you to pl guide us as what setting / parameters are required to be set in the MRP setup .  Or if there is some other alternate approach , pl suggest the same .
    With Thanks and Rgds
    Sonia Agarwal

    Dear
    Generally , during MRP run , system will genarted Planned order for Purcahsed item if it is opening period .
    The opening period for the planned order represents the number of workdays that are subtracted from the order start date in order to determine the order opening date. This period serves as a time float, which is available for the MRP controller when converting a planned order into a purchase requisition.
    You define the opening period for the planned order in Customizing for MRP in the IMG activity Define floats (scheduling margin key) and assign it to the material in the Scheduling margin key field (MRP 2 view) in the material master
    Now if you want to have Planned order for purchased item with requirement date as current date , then maintain Demand date like Sales Order requirement date as curent date in VA01 or PIR date as current date.
    Where as MRP will consider the Planned Order based on planned opening date , lead time , GR processing time from MRP2 view .So for current date requirement , u should keep Lead time and GR processing time as 0.
    Regards
    JH

  • MRP Planned order finish Date calculation (Planned delivery + GR Proc.time)

    Dear Gurus,
    Currently in our system, when MRP runs, Planned orders are created and the order finish date is calculate based on Purchasing processing time OMEW + Planned Delivery time from Material Master + GR processing time from material Master.
    My business requirement is that,  system has to take only Planned Delivery time + GR Processing time and exculde Purchasing PRocessing time.
    I cant make it Purchasing Processing time as ZERO - because this is used for other Purchase orders and KPI will be affected for procurement department
    Now we are going to Automate the Purchase orders for Materials - if outline agreement exist.
    How to make system settings for a MRP run, the Planned order finish date - should consider only Planned delivery time from Material master + GR Processing Time ( it should exculed Purchasing PRocessing time). Is it posssible? if not by any user exit, ABAP coding should be done?
    gurus please advice!
    BADI : MD_PLDORD_CHANGE - is this can be used?
    Please advice
    Regards
    RS
    Edited by: RS on May 18, 2010 10:22 AM
    Edited by: RS on May 18, 2010 10:33 AM
    Edited by: RS on May 18, 2010 1:34 PM

    Let me check, if I can find a way to paste /afs/md04 (AFS Envirnoment) screen shot . But in the mean time following are the
    details
    IHPT  - 12 days
    GRPT - 0 days
    SMK  - 000 (Op Period, Float After Prod., Float Before Prod.,Release Per. - 0 days)
    Thanks,

  • Can i add data for current month only

    can I add data for current month only?

        Knowing your plan options is important marlingut! So that we are able to provide correct information, what make and model phone are you trying to add data too? Is this device already activated on your account?
    Thank You,
    MichelleL_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Planned order start date & finish date

    Dear All ,
    I am running MRP for finished material ,
    But i am getting Planned order start date & finish date are coming same (todays date ). But when i am converting the order then proper scheduled dates are coming .
    Why for the Planned order the scheduled dates are not coming ?
    Regards

    Hi Venky,
    Pls try to understand how MRP works
    After MRP planned orders are created for the requirement(in house)
    In the planned order stage -basic dates are deteremined
    For the determintaion of basic dates system check the in house production time/replenishment lead time maintained in the material master
    For your requirement you maintain lot size dependent in house production data in the work scheduling view & check
    You have to key in data in set up time,processing time ,base qty etc
    Hope it is clear
    Rgds,
    SVP

  • SNP Planned Order start date in past

    Hi
    After SNP run, for the past requirements it is giving avaiablilty data as today but the planned order start date is in past. Now this order fails in CIF as the production version in R/3 is valid from today.
    In the strategy profile we have backward+reverse with infinite scheduling. In this case the start date should be todays date for past requrirements... am I correct?
    Regards
    Abhishek Rai

    Hello Abhishek,
    We are also facing the same issue. Did you find any solution to this issue?
    We are on SCM 7.0 with EHP1.
    Thanks,
    Mangesh

  • Planned order explosion data quesiton

    Hello.
    we have the following: -
    we have a sales order for a material.
    we use the lot for lot MRP type.
    I need to find a data table where I can see the relationships between the Parant and Child Planned orders.
    So for a Fin product planned order (remeber we use lot for lot) I want to see all related planned orders for the Sub assemblies below.
    I am putting togehter a spec for a report and I need to find out which data table these are in.
    Thanks in advance.

    HI Guy,
    Please check table PLAF, PLPLAN_PARAM for planned order
    if it is production order then AFKO, AFPO, RESB and all
    if useful reward us
    Thanks
    Bala

  • Planned order start date is in the past

    Hi Experts,
    I am running MRP with lead time scheduling (2) at my production plant. The planned orders are generated against the requirements but the start date of the planned order is in the past. I have not mentioned anywhere in the configuration allowing the scheduling in past. I cross checked plant parameters, MRP group, settings for determining basic dates & scheduling parameters and every where start in the past check is blank.
    Since the planned order basic dates are calculated based on in house production time in material master, I maintained the lot dependant times in work scheduling view (Set up & processing time with base qty). But system is not considering this in MRP run. But its considering the lot independant inhouse prod time maintained in work scheduling view in MRP.
    Is there any other check to be maintained or system limitations? Your expert view on this please.
    Appreciate an early reply.
    Thanks & Regards
    Prathib

    Check OPU5
    S Anil

  • SNP planned order availability date difference between APO and ECC

    Hi,
    I have observed that SNP Planned order availability date is not matching between APO and ECC. Details are as follows.
    I ran SNP Optimizer with bucket offset of 0.5. After publishing the optimizer created planned orders to ECC, only start date is matching.
    Example:
    I am using PDS as a source of supply.
    Fixed production activity in SNP PDS is 1 day.
    GR processing time: 3 day
    After running optimizer planned order is created with dates explained below.
    Start date/time: 09.05.2011 00:00:00
    End date/time: 12.05.2011 23:59:59
    Availability date: 16.05.2011 00:00:00
    Because of bucket offset defined as 0.5 optimizer planned order availability is start of next monday.
    After publishing this planned order to ECC dates on the planned order is as follows.
    Start date: 09.05.2011
    End date: 09.05.2011
    Availability date: 12.05.2011
    I have not maintained any scheduling margin key in ECC. Also if I dont define the GR processing time, planned dates between APO and ECC always match. Can anyone explain the impact of GR time on the availability date.
    Regards,
    Venkat

    Hi Venkadesh,
    What's "state stamp"? Do you mean different time zone?
    note : 645597  mentioned by Nandha is very helpful:
    In standard, CCR will use duedate - "the available date of the output product".
    Nandha's words "In SAP APO, if the receipt date of the primary product deviates from the
    end date of the last activity of the order, the receipt date
    always identifies this as inconsistent. You cannot rectify
    inconsistencies of this type by using CCR."
    I guess in your PDS or PPM, the output product is not assigned to the End of the last activity. Someone changed it?
    Please CIF the PDS or PPM again.
    If you really want to apply a note, please use note 815509 as you're using planned order,
    and system will use order end  date in CCR instead.
    GR time is always considered. BR/Tiemin

  • How do I change the start date for the week from Monday to Sunday on my iPhone 5?

    How do I change the start date for the week on iCal from Monday to Sunday on my iPhone5?

    Yes. On my new iPhone 5 the iCal week begins on a Monday not a Sunday and does not give me the option to edit in settings on the phone

  • MPS run, planned orders were created for all levels ?

    Hello PP members
    I ran a small scenario
    material    MRP Type     Low Level    SG           M/T Type
    A      M0         000             40              FERT
    B               PD              001              40             HALB
    c               PD              002               10             ROH
    Maintained PIRs(MD61) for material A, and ran MD41( Single Item Multi level Planning)
    As material A is an MPS item, I was expecting that it should create planned orders only for material A, but in this MPS run it created planned orders for material B & C. (Looked into MD04, where I see planned orders were created
    for all the levels)
    As per the MPS run, it will plan only for one level of BOM (in this scenario for material A)
    Any suggestions, why planned orders were created for material B & C
    please clarify

    Just check
    System must have created a dependent requirement planned order and not the planned order for requirement you put in demand management for B and C
    i.e. if you enter a demand in MD61 for B and C, run the transaction, system will not consider this requirement during MPS run. MPS run will consider the requirement if the requirement for the child is comming from parement where parent is MPS item.
    Hence you need to run MRPm for B amd C if teh requirement(not dependdent requirement from A) is to be considered.
    I hope you are clear
    Edited by: Rajesha Vittal on Jan 28, 2008 8:06 AM

Maybe you are looking for

  • I upgraded my hard drive and my ipod no longer recognizes my computer.  It will not sync. What should I do?

    I upgraded my hard drive and my ipod no longer recognizes my computer.  It will not sync. What should I do?

  • 2007.11-0.4 Isos released, installation feedback

    Hi i just placed the new "Core Dump" TEST ISO to the mirrors eg: ftp://ftp.archlinux.org/other/rc-iso/2007.11/ 1 week testing should be enough, I tested them in kvm-qemu and didn't find an issue. Changelog: GENERAL: - kernel 2.6.23.1 usage - RAM usag

  • Convert number to letter of alphabet?

    Hi, Is there a LabWindows function for converting a number to an alphabet equivalent? I was trying something like this... char getLetterOfAlphabetByNum(int number){     //test if alpha     if(isalpha (number)==0)         DebugPrintf ("Error convertin

  • Question on zen v plu

    When I rip boughten cd's, it auto rips them in a wma format which sound like crap how do I rip song into the zen in a mp3 formatfrom CD's also i do not see or can find" SUPER RIP" what is this? And last but least my zen+ does not synce how can I solv

  • Export mp4 files from iMovie to quicktime has no video

    I have an mp4 video and import into iMovie 08. I did all the cutting and share it to the media brower (or export using quicktime). However, the video has sound but no video. Any things I need to download to fix it? I realized if I import another form