Off Set of dep. reqmts to operation date

Experts,
in our system (OPU5) setting is "Adjust scheduling; Adjust dates: Adjust basic dates, adjust dep.reqmts to operation dates."
So know is demand date is equal to operation date. I am looking for a way to establish a 4 day off set, that the demand date is 4 days before operation date. I am looking for a way which is not lead time relevant.
So the operation queue time might not be my prefered option.
Thanks in advance
Jörg

Hi jorg,
If it is reolved kindly mark it complete and then open another thread.

Similar Messages

  • Get the reqmt date and the reqmt and the dep reqmt qty

    Hi,
    From whcih table we can get the reqmt date and the reqmt and the dep reqmt qty .i checked mdtb. it only show the recipt data and qty.

    Try using PBIM and PBED tables.
    Regards
    Ratan

  • How to start AND end a loop using a Boolean Button set to "Switch When Released" operation

    I have a Boolean button set to "Switch When Released" operation. When I press this button (now it's in the On state) I want to run a loop that does something continupously (for now, let's say it displays a simulated sine wave) until I press the button again (now the button is in the Off state) in which case, I want to end the loop. I am wiring my button to the loop condition that's set to "Continue if true" and have a "Wait Until Next ms Multiple" of 200 ms (I tried up to 500 ms). When I run the VI and press the button the first time, I see the sine wave displayed. But when I press the button again, nothing happens. It looks like it does not respond to the user interface. What's happening. What am I doing wrong? I'm using an Event Handler design pattern. I've also tried the Producer/Consumer (Events) design pattern. But I don't imagine the particular design pattern should make a difference. I've attached my code. Thanx.
    Fataneh
    Attachments:
    My_Event_Handler.vi ‏107 KB

    A simple solution would be to harness the timeout event, where you would put your data simulation. No need for parallel loops and local variables.
    The event timeout is starts out as  -1 (infinite) but pressing the start/stop button toggles between a 200ms and an infinite timout whenever it is pressed. Since the evet structure always runs, all other events (e.g. stop) are also serviced.
    Please ask if anything is not clear... Good luck!
    Message Edited by altenbach on 07-13-2005 04:20 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    My_Event_HandlerMOD_CA.vi ‏116 KB

  • TS3297 when I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please?

    When I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please? I have restored my ipod to factory settings and rest it.

    I also tried moving the date forward by a year and then moving it back to normal and it still doesn't work.  i can't find an automatic update of time zones on my itouch to turn this off.

  • ORA-02069: global_names parameter must be set to TRUE for this operation

    I have 10g database and a schema 'TMAPP'
    And I have two table in TMAPP as
    create table user_menu_privs
    company_code           varchar2(5),
    bu_code      varchar2(12),
    user_group      varchar2(30),
    user_group_type      varchar2(1),
    menu_option_code number(5),
    enabled varchar2(1),
    query_only varchar2(1),
    default_lang varchar2(3),
    created_by      varchar2(10),
    created_on      date,
    updated_by      varchar2(10),
    updated_on      date,
    constraint pk_user_menu_privs primary key (company_code,bu_code,user_group,user_group_type,menu_option_code),
    constraint fk_user_menu_privs foreign key (company_code,bu_code,user_group,user_group_type)
    references user_group(company_code,bu_code,user_group,user_group_type)
    create table user_dst
    company_code           varchar2(5),
    bu_code      varchar2(12),
    userid varchar2(10),
    user_group      varchar2(30) ,
    user_group_type      varchar2(1) ,
    font_size      number(2) ,
    font_name      varchar2(100) ,
    address_id number(10),
    created_by      varchar2(10),
    created_on      date,
    updated_by      varchar2(10),
    updated_on      date,
    constraint pk_user_dst primary key (company_code,bu_code,userid,user_group,user_group_type),
    constraint fk_user_dst foreign key (company_code,bu_code,user_group,user_group_type)
    references user_group(company_code,bu_code,user_group,user_group_type)
    I have another database 11g with a schema TMAPP.
    Here I have created a database link 'to_dev' is connecting to the 10g db
    using this I can connect and see the data from 10g TMAPP
    I have created two views
    create or replace view user_menu_privs as
    select *
    from user_menu_privs@to_dev
    where user_group in
    (select user_group from user_dst
    where user_group_type='F');
    create or replace view user_dst as
    select * from user_dst@to_dev;
    and I executed
    delete from user_menu_privs
    where menu_option_code=108;
    I am getting the error
    ORA-02069: global_names parameter must be set to TRUE for this operation
    after that I set the global_names in 11g as TRUE
    then I am getting another error as
    ORA-02085: database link TO_DEV connects to DEV.REGRESS.RDBMS.DEV.US.ORACLE.COM -- that means link is not wokring
    Please help
    Dennis
    Edited by: DJ on Mar 13, 2012 5:49 AM
    Edited by: DJ on Mar 13, 2012 5:51 AM
    Edited by: DJ on Mar 13, 2012 5:53 AM
    Edited by: DJ on Mar 13, 2012 5:55 AM
    Edited by: DJ on Mar 13, 2012 5:56 AM

    OP wrote
    >
    But you said
    create a database link in 11g database with 11g database global name and put 11g database global_name=true.
    and put 10g database golba_name=false;
    >
    That isn't what I said at all. Reread my first reply. The first part is a copy of what you had stated.
    >
    ORA-02069: global_names parameter must be set to TRUE for this operation
    after that I set the global_names in 11g as TRUE
    >
    And then I said
    >
    That is because when global_names is TRUE, the database link name MUST be same as the global db name of the database to which the link connects to.
    You need to drop the database link and recreate it using the global name of the database it connects to.
    'link name MUST be same as the global db name of the database to which the link connects to.' - I didn't say 11g.
    And I didn't say 'put 11g database global_name=true' because you had already done that! 'after that I set the global_names in 11g as TRUE.
    1. 11g - global_names MUST be TRUE
    2. 11g - database link name MUST be the same as the global db name of the database to which the link connects to - 10g global db name
    3. 10g - gloibal_names setting is irrelevant

  • Example: Calculating Operation Dates

    Hi Gurus,
    http://help.sap.com/saphelp_46c/helpdata/en/7e/d4191b455911d189400000e8323c4f/frameset.htm
    Menu path: Routings > Scheduling Routings > Example: Calculating Operation Dates
    We have an example in SAP library in the above link.
    As per that queue time, setup time and processing time it is taking 10min extra.
    I mean the setup time is 0.5hrs, but as mentioned in the example,the setup start at 09.20 and setup end at 10.00. My doubt is setup end time should be 09.50. Why it is taking 10min extra.
    Please refer to this example in Library and explain why this difference.
    Regards,
    Jejesh

    Dear,
    please refere the example as the Working Time for work Center is 8 hours Which is then reduced to 6 hours after subtracting breaks & Utilization factor it comes as 6 hrs.
    So the Total reduction is 25% this means that all timings will be set by adding 25 % so that they can be set in 8 Hr scale. the 10 min that u are refering is result of that.
    Think & Try to set the Time considering Breaks & Utilization factor for a Problem ur self u will then able to appriciate that example.
    Regards
    samunder singh

  • Changing operation date in co02

    Hello everyone,
    We have quite lengthy production operations and we need to change individual operation date, of planned or production orders (especially production order, in fact, before they are relased in fact).
    The problem is that when I access Co02, and go to the operation list view, I cannot change the date. I can enter an operation or delete one but I can't change the start date of each operation.
    It is absolutely needed in our case, as we have a lot of waiting time in the shop floor and need to review the schedule to match free slot. There is not a lot of orders , so the most convenient way is to do it from the Operation list, in Co02.
    Please could you tell me how it is possible.
    Many thanks,
    Pierre Mikael

    Dear ,
    I am not sure whether you have Capacity Requirement Planning is in place  for PP cycle .Basically , operation dates and production order schedule dates can be changes based on the available capacity of Work Centre wehre the respective operations are happing in shop floor.There two kind of production scheduling happend in any production order .One is operation level scheduling and another order level scheduling .Order level scheuling should havppned based on the total details scheduling of operation based on the work centre load ( available , over load , requirement hrs at work centre ) .
    Any operation in a scheuled production order , can have changes in date wheile deispathing the operation for work centre once the CRP in place .Here , we have Scheduling margine ( FBP, FAP, Opening periods ) contributes to Basic Start Dates in Production order .It is possible though Capacity Leveling -CM21/CM22/CM31/CM23  after cheking the Capacity Load in CM05/CM07 for a particular work centre level.
    The simplest way to adop CRP and explore the same .please find belwo the detaiuls of  the same :
    Setting Required :*
    1. Settings for Available Capacity
    2. Setting for Capacity requirements
    3. Settings for Capacity evaluation and leveling
    4.Materials Master define the Production scheduler and production scheduling profile
    5.Work Center - Define the capcity planner group,activate checkbox Relevant for Finite sceduling,on the capacity header define the shift timings,break timings and unit of measure,no of individual capaity, enter formula for scheduling in capacity view. 6.Routing - enter the values for the standard values. Use control key with scheduling.
    7.In transaction OPU5 and OPU3Z - define the scheduling parameters for planned order and productiion orders and activate the checkbox Capacity requirement and Scheduling.
    8.Capacity Setup :
    1.Define time profile in OPD2.
    2.Define the strategy profile in OPDB
    3.Define the Overall profiles in OPD0.
    4.In the order control OPJK  maintained check capacity with SAPSFCG013 profile.
    5.Define Scheduling parameters for Production orders-OPKP-Maintain Capacity Checked /Finite Scheduling Cheked /Scheduing Type -BW/FW .
    Hope this will help u in analysis
    Regards
    JH

  • Iphone was stolen. and find my iphone was turned off. How can I erase all data

    Last night my iPhone was stolen. And find my iphone was turned off. How can i erase all data on my phone remotely?

    You can't do anything if Find My Phone was not enabled.
    What To Do If Your iDevice Is Lost Or Stolen
    iPhone, iPod Touch, and iPad
    If you activated Find My Phone before it was lost or stolen, you can track it only if it is connected to the Internet by Wi-Fi or cellular. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. iCloud- Use Lost Mode
      6. What to do if your iOS device is lost or stolen
      7. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      8. Find My iPhone
      9. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • 0I_FPER and variable off set not working

    Hello All,
    I am attempting to us the FiscPer Interval input variable with an off set and it does not appear to be working.  I am attempting to do this on COPA.  The business requirement is to have an interval and the corresponding interval for the prior year.  One of the problems I am having in testing this is that there is not enough data to test the year (-12) off-set.  So I have decided to test it with a -2 off set to see that at least in theory it will work.
    The 0I_FPER interval is working however the -2 off set is not returning any data.  I have attempted a number of solutions so far with out success.  We are using BI 7.0 and are currently on Service Patch 10 with a number of additional oss notes applied.  Does any one have any suggestions for me?
    Thanks
    MK

    i dont think offset would work on interval option. It needs to be a single value.
    What i mean to say is, if the user enters 01/2006 - 07/2007, when you put a offset 0f -2, the system wouldnt know which value it is supposed to offset (period1 - 7).
    The work around if you want to display the same range in previous year would be to use two variables on fiscal year and posting period seperately and there you can do a offset on fiscalyear which would give you the same range for 2006.

  • Off-set on variable

    Hello,
    Could someone please describe to me the concept of off-set on a variable?
    There is a variable named AF_FPER-1 in my BW-system, where -1 indicated the off-set, I guess?
    How was this variable created? It is based on a SAP user exit variable..
    Thanks & regards,
    F C

    Hi F C,
    Usually the SAP exit variables will be defined starting with a 0 in the technical name. Anyhow coming to the concept of Offset: This helps you get another value from the same variable, based on the relationship of so many before or so many after. Offsets are commonly used with the time variables. Lets say the reqt is to have data for this month and 2 months prior to that. One way would be to have 3 variables, but this is redundant and non-user friendly. So you can use one variable and define offsets as -1 (previous) and -2 (prior to previous).
    Hope this helps...

  • How to change operation dates in Production Order /Capacity Leveling

    Dear Experts ,
    We are using ECC 5.0 .In production order , scheduling happing as Backward  based on the Sales Order Delivery Date .I am doing the following :
    1.Demand as Sales Order with Delievery date : 20.03.2010
    2.Running MRP with Lead Time Scheduling -2  in md02 and converting the Planned Order to Production Order .
    4.Production Order have following dates :
             Basic Finsish Date : 21.03.2010
             Basic Start : the day Pl.Or--Pr.Ord
             Schedule Start : 15.03.2010
             Schedule Finsish : 17.03.2010
            Schedule Release : 13.03.2010
    5.In schedueling margin key :  Float Before Production : 3    , FAP : 3 , Release Period : 2
    6.In material master : Work Scheduling View : Setup : 3 days , Processing : 4 ,Interoperation : 2 for one Base Qty 1
    7.In operation : Op1  : Start Date  : 15.03.2010    Finish Date: 15.03.2010
                             Op2 : Start Date : 16.03.2010      Finish Date : 17.03.2010
                             Op2 : Start Date : 17.03.2010      FD : 17.03.2010
    Question :
    1.How to change the Operation dates  in Production Order Operation over view screen ? Today,  operation over view screen , Start date and Finsih Date  of individual operation are not changable with in Production Basic Start /BF date  or beyond .It is only changing based on the Standard Value : Labor
    2.How to change/re-schedule operation dates d in CM21 (Graphical view -Work Center Capacity load as per   Production Order and Operation combination ) based on capacity availale in advance dates? I am using  Time Profile : SAPSFCZ002 -SFC Graph midterm-3 motnhs and Planning  ,
    How to solve this above issue in scheduling operation and capacity distribution .
    Regards
    JH

    Closing the thread

  • Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).

    Hi,
    Our Environment is Essbase 11.1.2.2 and working on Essbase EAS and Shared Services components.One of our user tried to run the Cal Script of one Application and faced this error.
    Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).
    I have done some Google and found that we need to add something in Essbase.cfg file like below.
    1012704 Dynamic Calc processor cannot lock more than number ESM blocks during the calculation, please increase CalcLockBlock setting and then retry (a small data cache setting could also cause this problem, please check the data cache size setting).
    Possible Problems
    Analytic Services could not lock enough blocks to perform the calculation.
    Possible Solutions
    Increase the number of blocks that Analytic Services can allocate for a calculation:
    Set the maximum number of blocks that Analytic Services can allocate to at least 500. 
    If you do not have an $ARBORPATH/bin/essbase.cfg file on the server computer, create one using a text editor.
    In the essbase.cfg file on the server computer, set CALCLOCKBLOCKHIGH to 500.
    Stop and restart Analytic Server.
    Add the SET LOCKBLOCK HIGH command to the beginning of the calculation script.
    Set the data cache large enough to hold all the blocks specified in the CALCLOCKBLOCKHIGH setting. 
    Determine the block size.
    Set the data catche size.
    Actually in our Server Config file(essbase.cfg) we dont have below data  added.
    CalcLockBlockHigh 2000
    CalcLockBlockDefault 200
    CalcLockBlocklow 50
    So my doubt is if we edit the Essbase.cfg file and add the above settings and restart the services will it work?  and if so why should we change the Server config file if the problem is with one application Cal Script. Please guide me how to proceed.
    Regards,
    Naveen

    Your calculation needs to hold more blocks in memory than your current set up allows.
    From the docs (quoting so I don't have to write it, not to be a smarta***:
    CALCLOCKBLOCK specifies the number of blocks that can be fixed at each level of the SET LOCKBLOCK HIGH | DEFAULT | LOW calculation script command.
    When a block is calculated, Essbase fixes (gets addressability to) the block along with the blocks containing its children. Essbase calculates the block and then releases it along with the blocks containing its children. By default, Essbase allows up to 100 blocks to be fixed concurrently when calculating a block. This is sufficient for most database calculations. However, you may want to set a number higher than 100 if you are consolidating very large numbers of children in a formula calculation. This ensures that Essbase can fix all the required blocks when calculating a data block and that performance will not be impaired.
    Example
    If the essbase.cfg file contains the following settings:
    CALCLOCKBLOCKHIGH 500  CALCLOCKBLOCKDEFAULT 200  CALCLOCKBLOCKLOW 50 
    then you can use the following SET LOCKBLOCK setting commands in a calculation script:
    SET LOCKBLOCK HIGH; 
    means that Essbase can fix up to 500 data blocks when calculating one block.
    Support doc is saying to change your config file so those settings can be made available for any calc script to use.
    On a side note, if this was working previously and now isn't then it is worth investigating if this is simply due to standard growth or a recent change that has made an unexpected significant impact.

  • Printer setting could not be saved operation could not be completed error

    printer setting could not be saved operation could not be completed error 0*000006cc

    Hello printer setting could not be saved,
    When you do receive this error message?
    Have you made any changes before this issue?
    Please take the following steps for troubleshooting:
    1. Update the printer driver from the manufacturer website.
    2. Run the printer troubleshooter.
    http://windows.microsoft.com/en-us/windows7/open-the-printer-troubleshooter
    3. Temporarily block the firewall and check if this issue still exist.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Setting up csv files as a data source for Hyperion intelligence explorer on Windows 7

    Hi. wondering anyone can point me to a resource or supply me with step son how to Set up csv files as a data source for Hyperion intelligence explorer on Windows 7?
    I used to be able to do it in WXP, but it seems thing shave really changed with W7..... Absolutely desperate... All and any help welcome.....

    Hi
    Can you please try setting up full persmission in the security properties for everyone on the wsconfig folder C:\ColdFusion10\config\wsconfig  and restart ColdFusion Server.
    Swaraj

  • In ods what is meaning of operational.(operational data stoer-ODS)

    in ods what is meaning of operational.(operational data stoer-ODS)

    Hello Satish
    I guess you are very much clear about data and info....
    Data: everything and anything is data
    Info: If data is structured in a way that it gives a meaningfull information than it is info
    We use ODS as a data warehouse layer which contains meaningfull data which when loaded in cube( in structured way - Extended star schema in our case ) provides meaningfull information...so basically it is containing the data on which operations of DW are going to be performed...( it may be analyzing data, decision making on the data....)
    This is why it is called operational data store instead of Data store...
    Hope your have got your answer...
    Thanks
    Tripple k

Maybe you are looking for