Time Streams and Shipping Dates

Hello,
Does anyone have any documentations regarding time streams? I am checking on how time streams and determination of shipping dates such as loading date, pricing date, GI date, etc. are related.
I noticed that when we run ZZTTSTR program from SAP which clears time stream handles, before we create order documents, somehow some order documents determine wrong shipping dates.
We setup a background job to run ZZTTSTR daily every night and during the day we upload order files which converts to about 500-1000 order IDOCs and posted to be order documents.
Now, i removed the backround job of ZZTTSTR and the issue never happened again. I'm looking for more info about time streams so I can determine how this caused my issue.
I hope someone can help.

You will get it within the window you were originally promised by Apple. If you get it early, bonus.
There is nothing else anyone here can say about it.
Speculation and rumor are prohibited by the Apple Support Communities Terms of Use.

Similar Messages

  • Creating streams and sensor data hub

    Hi all,
    I am working on the Getting Started example from OTN ( "HandsOnSession.pdf" )
    and in the step to create stream and sensor data hub, am having a problem.
    I am working with the Standalone SES v10.1.2 running on a Linux OS.
    While running this command at the Linux Terminal,
    sqlplus system/welcome1@orcl
    I get a -bash: sqlplus command not found error
    I am in the <filepath>/edge/sql $ when I execute it.But I observed that my Oracle edge server install folder doesnot have a sqlplus folder which I think is by default installed in the Oracle_Home folder. There is a sqlj folder though , but am not familiar much with sqlj.
    Could anyone advise on how to connect to the database and create he SDH tables.
    Also in the sqlplus system/welcome1@orcl command, could anyone confirm if the syntax is as below,
    sqlplus <username>/<password>@orcl
    where
    <username> = username used to install the Edge server install
    <password> = password used to install the Edge server install
    would appreciate your response,
    Thanks,
    Vijay

    Hi Vijay!
    The EdgeServer doesn't have a full Oracle installation. Therefore a client tool such as sqlplus is not present. Install a Oracle Database on this machine (as I suspect you do not have a database yet) and use the sqlplus it comes with.
    cu
    Andreas

  • Sales order with Compl.deliv., Lead time and Shipping date problems

    Hello, SAP gurus!
    We have some concerns with sales orders that won't start processing, and I'm wondering if there's anyone here who have had experience with this problem.
    If not, hopefully you understand this scenario.
    Scenario:
    * A salesorder with three lines, of which two lines are not in stock (itemcategory YBAB), one line in stock (itemcat TAN)
    * Requested delivery date is asap, ie 19/03-2014
    * Marked with Complete delivery
    * In the Shipping tab, it seems all dates are copied from lead time of the YBAB-lines, 11/06-2014.
    * We just received the two YBAB-lines on PO, but the date still shows 11/06-2014, almost a month from now.
    Is it possible to make SAP automatically change the shipping date to the date we actually receive the items and are ready to process the order?
    What we have now is a salesorder made 2 months ago, ready to be packed and shipped today, but SAP seems to hold on to the "expected" date a month from now. It's frustrating!
    Hope to hear from you

    Hello,
    You will need to trigger a av. check again to factor the impact of receipt of YBAB items.
    You could evaluate backorder processing to automate this as a daily run to work on the sales order relevant for re-ATP based on new availability situation.
       Thanks,
    Sudhir

  • Time stream and Factory Calendar settings issue. Problems in scheduling!!

    Hi,
    We have a factory calendar of working days from SUN-THU only (5 days a week).
    Every working day starts at 07:00:00 (first shift) and ends at 06:59:59 at the following day.
    I am not sure how to set the time stream. Do I set it for daily (5 days a week) with gaps start at 07:00:00. Or, as the standard way as daily (all days 1 -7) 00:00:00 - 23:59:59 without gaps.
    We are using the planning board to schedule production orders that were created in ECC, but we see that we have problems with date corelation between the systems, and we think it is due to some wrong setting of the time stream!
    Thanks for your replies

    Hi,
    For scheduling, the time stream of resource is relevent. As to how to generated the time stream, it depends on your resource capacity setting and your factory calendar. I'm not sure why your factory calendar starts at 7:00:00 daily. For the time steam of the resource, it should be ok to start at 7:00:00, and you mayexecute the time stream generation (ta. /sapapo/rest02) to save the time stream in LiveCache.
    Claire

  • NSDate, NSTimeInterval, Calculating time passed and Core Data

    I'm creating a timesheet/stopwatch application of sorts for the iPhone.
    I am using an NSDate in CoreData and following this pattern:
    1) Start:
    Session* session = (Session*)\[NSEntityDescription insertNewObjectForEntityForName:@"Session" inManagedObjectContext:managedObjectContext_\];
    session.startTime = \[NSDate date\];
    2) Calculate time passed and update label:
    NSTimeInterval timeDiff = -1*\[session.startTime timeIntervalSinceNow\];
    cell.textLabel.text = \[NSString stringWithFormat:@"%f", timeDiff\];
    I also see that I could use:
    NSTimeInterval timeDiff = \[\[NSDate date\] timeIntervalSinceDate:session.startTime\];
    cell.textLabel.text = \[NSString stringWithFormat:@"%f", timeDiff\];
    I don't like this since it is needlessly creating a lot of dates - and there could be 100s of these timers running at the same time ... or, does timeIntervalSinceNow possibly also create a new date evertime under the covers and I'm pre-optimizing or something too early. Can anyone suggest a better way to do this? For instance, initially, I was simply using NSTimeInterval:
    NSTimeInterval startTime = \[NSDate timeIntervalSinceReferenceDate\];
    NSTimeInterval endTime = \[NSDate timeIntervalSinceReferenceDate\] - startTime;
    But I end up struggling with the best way to manage this as part of a CoreData entity. Should I uses a double? or a Date? I understand that a Date is implemented as an NSTimeInterval but I can't assign or subtract an NSTimeInterval directly to my entity.date
    session.startTime = \[NSDate timeIntervalSinceReferenceDate\];
    NSTimeInterval timeDiff = \[NSDate timeIntervalSinceReferenceDate\] - session.startTime;
    Obviously, this won't compile when startTime is a Date object but I think it illustrates what I'm after. Trying to 'lightly' calculate time passed by using the start time assigned to an Entity. Maybe the original way is just fine. I'm just looking for suggestions. I guess I could try running this inside a profiler. As a side note, is there a better way to print the stopwatch output to the screen? It seems like overkill to constantly update a Label's text property ... hundreds, maybe thousands of times especially when there may be 10 or so timers running on the same screen. Does anyone have any advice for stopwatch type 'update the time' label behavior?
    I'm doing this in an NSTimer potentially set to fire every .01s ... IE: this method will get hit quite a bit ...
    Thanks.
    Message was edited by: LutherBaker

    LutherBaker wrote:
    I don't like this since it is needlessly creating a lot of dates - and there could be 100s of these timers running at the same time ... Can anyone suggest a better way to do this?
    That doesn't sound good. Why would you have so many?
    I'm just looking for suggestions. I guess I could try running this inside a profiler. As a side note, is there a better way to print the stopwatch output to the screen? It seems like overkill to constantly update a Label's text property ... hundreds, maybe thousands of times especially when there may be 10 or so timers running on the same screen. Does anyone have any advice for stopwatch type 'update the time' label behavior?
    I'm doing this in an NSTimer potentially set to fire every .01s ... IE: this method will get hit quite a bit ...
    That doesn't seem like a side note. That seems like the main point.
    As "good" video is typically around 30 frames per second, it doesn't make any sense to update the user interface any more frequently than that. Also, you really only need one timer. Let that timer update all the values. You may not need any timers. You could do everything via key-value coding and let the OS handle all the work.

  • Delivery date and shipping date

    Hi,
    Delivery: individual delivery
    Shipment: collection of deliveries which has to be delivered if route is same.
    Then, my question is whether the shipping date and delivery date is same for a particular order? Then what is the filed and table for shipping date?
    Regards,
    Sooraj.M

    Hi Sooraj,
    The delivery document’s delivery date (LIKP-LFDAT) is independent of the various dates found on the shipment document to which the delivery belongs.  Shipment processing will not automatically change LIKP-LFDAT. 
    There are several planning and execution dates on the shipment document that can be considered the “shipment date”:
    Check-in
    Loading start
    Loading end
    Shipment completion
    Shipment start
    Shipment end
    All of these are found on the shipment header table VTTK.
    Regards,
    Ken

  • IPhone 6 Plus Order Confirmation Email and Ship Date???

    Verizon Wireless Customer Support ,
    I pre-ordered the iPhone 6 plus on 9/12/14. I have yet to receive an order confirmation email and I have had 3 different CSRs tell me via phone three different possible ship dates. Can you please give me some clarity on this situation and possible give me my order information so that I may track it myself??
    Thanks,
    Gena

        I can only imagine how anxious you are about your pre-order.
    I would love to check on it for you since you never received the confirmation email,glmoore08.
    Once we get the order confirmation number, you can check the order status here http://bit.ly/RjmCUB.
    Please look out for a direct message from me.
    TamaraH_VZW
    Follow us on Twitter @VZWSupport

  • Time machine and wiki data recovery

    I'm running into an issue where I need to recover wiki data from a Time Machine back-up..
    The backstory:
    The wiki server was running on a 2008 Mac Pro which had an unrecoverable disk failure.  Given the age of the machine, the power it drew, and the fact that I dont need the horsepower of a macPro to host the wiki, I picked up a new Mac Mini to host the server data. It is a very low usage system, so the Mini should have all the power I need..  Not to mention its cost is over $2,000 less..
    I've been able to recover all the files I need from the Time Machine backup disk, except for the Wiki..     The last time I needed to do something like this was 10.6, and everything was in flat files, so it was a simple copy operation..  Now however it looks like there is a postgres database to deal with..  Being that I only have access to the files on the TM backup, Im not sure how to recover the wiki.
    My thought was to simply to a TM restore, but because Im going from a MacPro to a MacMini, it barks that its a different hardware type and will not complete the restore..
    So the end question is, has anyone ever had to recover an Apple wiki, from a Time Machine backup disk, running 10.8, with the destination being a Mac Mini?  If yes, how did you overcome not running the postgres database?
    Thanks..

    Restore these items, then reboot:
    /Library/Server/PostgreSQL For Server Services
    /Library/Server/Wiki

  • Comparing a time period and a date via trigger....

    Hi ,
    There are among others three tables....
    Table material
       material_code number
       onomasia   varchar2(50)
       guarantee_end_date date
    Table supplier_contract
         contract_code number
         start_date date
         end_date date
        supplier number(5)
    Table supplier_contract_material
          contract_code number
          material_code numberThe table material , for each material contains the guarantee_end_date , whereas the other two contain info about the materials that should be replaced/fixed/ e.t.c by the supplier in the specific time period (start_date - end_date).
    The thing that has to be done is there have not be any overlap of the dates.... In other words , when a material is bought then this is covered for replacement by the end of the date (guarantee_end_date in the first table). After this date there should be contract with the supplier for this material for a specific period (start_date - end_date , in the second table).
    I want to secure the database that when the end_user tries to update this time_period(start_date - end_date) before or between the guarantee_end_date ("when i say between the guarantee_end_date " , i mean the condition guarantee_end_date between start_date and end_date is not acceptable) then an alert would be raised ....
    So , I wrote the following trigger:
    create or replace trigger trg_check_eggisi
    before update on supplier_contract
    for each row
    declare
    guarantee_end_date_var date;
    begin
       begin
         select guarantee_end_date 
           into guarantee_end_date_var
           from material a, supplier_contract_material b
          where a.material_code=b.material_code
           and b.contract_code=:new.contract_code;
         exception
          when no_data_found
           then return;
        end;
       if guarantee_end_date_var>:new.guarantee_end_date_var
         then
         raise_application_error(-20021,'NOT_APPLICABLE');
       end if;   
    end;The problem is that the error ORA-01422 is raised ... because more than 1 material may be contained in the specific contract....
    Do you have any idea...????
    many thanks ,
    Simon

    Hi  John,
    As you want to  display the planned value of Depreciation for future years,
    since this is not possible you can display the planned values only for that year and that too for subsequent periods,  you  will  see  the Yellow icon stating it is planned which is not yet posted in the posted value Tab,
    Since if  you  want to display planned values for future year you have to  post Depreciation for subsequent period and close the fiscal year and again same procedure follows....
    Regards,
    Imran M Arab

  • Preordered at 6am EST and "ship" date = 9/21?

    So, my confirmation email says "Delivery By" 9/21, but the online status says Shipping 9/21.
    If I got my order in 3 hours after they became available, should I expect it to arrive on 9/21? 

        Hi, pghrunner!
    Congratulations on your new iPhone 5! The dates are an estimate, as Apples inventory is continually updating. Verizon and Apple are working hard to get devices out to customers as quickly as possible. As it is now, if you preordered on 9-14 by 9AM, it is set to deliver by 9-21. You can confirm the preorder status here: http://bit.ly/rqEisu. Also, you will get an email confirming the tracking info once it ships out! I hope that helps!
    Thanks,
    AdamE_VZW
    Follow us on Twitter @VZWSupport

  • Report on Real Time Cube and Master data

    Dear Experts,
    I am new to BI. I have created real time cube using some characteristics and top of that I built 3 reports with referring to Master data.
    And in the 3 reports, I have used different characteristics for all the report expect one ( common in all the reports).
    Now I have to create consolidated report using all the characteristics. I have build some sample reports but getting not assigned where there is no data.
    How can I achieve this?
    Thanks in advance,
    Saravanan R

    Hi suman,
    Thanks for your reply .
    I have attached the screen shot of the output. I have created the Infoset using info objects and real time cube, on top of that I have created query.
    this is the problem am facing can please suggest on this .

  • Can i use one hardrive for time machine and other data?

    i want to buy an external drive for my macbook pro retina. i want to knwo if i were to buy an external hardrive big enought ot back up my 768 on my retina could i also put other media on it (like video and movie) without it overwriting or something like that

    screenfreak wrote:
    i want to buy an external drive for my macbook pro retina. i want to knwo if i were to buy an external hardrive big enought ot back up my 768 on my retina could i also put other media on it (like video and movie) without it overwriting or something like that
    Buy one hard drive for TimeMachine, large as possible for maximum amount of saved states, keep it connected more often so it updates more often to recover deleted files.
    Buy one hard drive the same size or slightly larger to clone your boot drive to it, it will be a hold option key bootable clone in case your boot drive fails to boot. Update it before doing anything major to your machine. Keep it disconnected in case of malware so it doesn't get infected or delete your files.
    Buy one hard drive for extra storage if your boot drive is getting full for instance.
    Buy one hard drive to backup the extra storage drive and treat it like the clone, make sure you have clean extra storage drive before connecting and updating it.
    Label and date each drive, your memory will fail you and you'll accidentally overwrite a drive.
    Keep your drives separate and in their respective purposes, in other words do not use partitions or use TimeMachine to backup other drives.
    Never use Filevault, it's cracked, it's worthless, impossible to recover data and you'll have to give up the password for repair or customs/searches anyway. Use a external hardware based encrypted drives and USB Iron Keys. This way your sensitive data is off the machine and can be used with another machine.
    Despite how many drives and backups, it's good to also make burned and labeled DVD's of your most important files like music for instance when you first get them. It's because sectors fail on hard drives and takes out your data and thus on all backups made afterwards. With burned DVD's it's permanent, unless you scratch it, melt it or loose it.
    Hardware also fails, more often than software because it's moved/abused while in operation.
    If you lose your TM drive, you ALSO lose what's on the other partitions on the drive or data that TM drive was backing up from other drives.
    Drives are cheap, data is not. Protect the data. Because it's a fortune trying to recover lost data off a dead drive.

  • Whats run time configuration and php date and time constants?

    http://www.w3schools.com/php/php_ref_date.asp .....are they required to make dynamic websites....??

    Are they required to make dynamic websites?  No.  But if you are going to use any date functions (like for example one I frequently use - stringtotime()), then you would need to use -
    date_default_timezone_set()
    to properly establish the timezone to be used for your calculations.

  • Shipping calendar- Time stream change.

    Hi All,
    is it possible to make different changes in same time time stream for different location.
    For example- there is a time stream TSTREAM , which is attached to shipping calender of both location LOC1 and LOC2.
    Now if 23 january is holiday for LOC1 and not for LOC2, Can we make location specific changes in calender? Is there any way to do this? or do i need to create 2 separate time stream with one having 23rd january as holiday and another as workday and attach to each location?
    Thanks in advance!!

    Hi
    As far as I know, I think it better to go for separate Time stream or Shipping calendar for different locations. You can use the same factory calendar while only creating time stream you can directly edit the buckets in one of the time stream according to your holiday calendar for respective location.
    Thanks
    Amol

  • How do you calculate difference in time (hours and minutes) between 2 two date/time fields?

    Have trouble creating formula using FormCalc that will calculate difference in time (hours and minutes) from a Start Date/Time field and End Date/Time field. 
    I am using to automatically calculate total time in hours and minutes only of an equipment outage based on a user entered start date and time and end date and time. 
    For example a user enters start date/time of an equipment outage as 14-Oct-12 08:12 AM and then enters an end date/time of the outage of 15-Oct-12 01:48 PM.  I need a return that automatically calculates total time in hours and minutes of the equipment outage.
    Thanks Chris

    Hi,
    In JavaScript you could do something like;
    var DateTimeRegex = /(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d)/;
    var d1 = DateTimeRegex.exec(DateTimeField1.rawValue);
    if (d1 !== null)
        var fromDate = new Date(d1[1], d1[2]-1, d1[3], d1[4], d1[5]);
    var d2 = DateTimeRegex.exec(DateTimeField2.rawValue);
    if (d2 !== null)
        var toDate = new Date(d2[1], d2[2]-1, d2[3], d2[4], d2[5]);
    const millisecondsPerMinute = 1000 * 60;
    const millisecondsPerHour = millisecondsPerMinute * 60;
    const millisecondsPerDay = millisecondsPerHour * 24;
    var interval = toDate.getTime() - fromDate.getTime();
    var days = Math.floor(interval / millisecondsPerDay );
    interval = interval - (days * millisecondsPerDay );
    var hours = Math.floor(interval / millisecondsPerHour );
    interval = interval - (hours * millisecondsPerHour );
    var minutes = Math.floor(interval / millisecondsPerMinute );
    console.println(days + " days, " + hours + " hours, " + minutes + " minutes");
    This assumes that the values in DateTimeField1 and DateTimeField2 are valid, which means the rawValue will be in a format like 2009-03-15T18:15
    Regards
    Bruce

Maybe you are looking for

  • Connecting a TV to my Mac Pro

    Okay, been reading up in the forums on the Mac Pro with the stock nvidea 7300 GT card and connecting it to a TV as a second monitor for editing and watching video. 1) my DVI to S-Video/composite adapter will not work. this *****. 2) i could spend $40

  • Error with ACH Format

    Hi Friends, I am trying to get a printout through FBZ5 for an ACH format (Payment method - T) for a new company code. Facing the following error, Select either a payment transfer medium or a DME Message no. F0067 Diagnosis Payment transfer media can

  • How to get the "link" HTML.attribute

    What are the HTML.attribute that could contain a link ? The most common are HREF and SRC but there are too : ACTION, BGCOLOR ... and attribute that doesn't contain links like width ... Is there anyway to know the attributes that can contain links, or

  • Electronic PO Transmission to the vendor systems

    I am new to PI , I have a scenario in which i have to send the PO document electronically to the supplier system in CXML format using XI interface and get the XML confirmation back from the supplier system and update the PO and once the confirmation

  • IMac not listed, airport or airport extreme?

    My iMac G4 20 inch flat pannel display 1.24Ghz isn't listed on apples site. Which airport card do I need to use? Exyreme or regular .