Flash Action Happening Too Early

I'm attempting to have a flash video file play before loading a web site.
The way I'm doing it is to import an FLV video that I created in AE, into Flash, set the frame rate of the Flash to that of the (video 24fps) and add an action at frame 241 which calls the URL of the home page to be loaded.
On the authoring workstation, it seems to work okay... the .swf file plays (in VLC Media Player) and then a web browser opens.
Once this .swf and its associated html file are uploaded to the server, the video, instead of playing all 240 frames, plays about 40-42 frames and then loads the web site.
I spent hours searching for another embedded time code somewhere in the html file, and went over the flash project over and over again, but could not find a command that was making it dump and load the home page prematurely.
What could be causing this behavior, and how could I go about correcting it so that the entire 10-second video is played before the site loads the home page?

Initially, I had simply imported it as streaming video, but I redid the whole file, after reading your reply above, and discovered how to embed it in the timeline. However, the results are the same, even though the command to load mwhdvideo.com is at frame 241. I can't understand why it skips 80% of the remaining frames and just goes to the "load web page" behavior.
Now if I open the index.html on a local PC, it will run the full 10-seconds of video and then pop up a security warning about Flash trying to open a page on another domain or something similar. But once it is on the server, it no longer waits 10 seconds and cuts over to the home page after just 2 seconds. I've run out of ideas.
UPDATE:
Just for kicks, I tried an experiment: I removed the behavior command at the end of the flash file (the one that loads the home page) and tried it both on the local PC and on the server:
The local copy played through and continued repeat looping the video without ever calling the home page.
The copy uploaded to the server played the first 40 frames or so and forwarded to the home page.
I'm starting to think it's not the flash file, but something peculiar going on when it's on a live server...

Similar Messages

  • Action happening too early

    My roll over action is happening too quickly how can I slow
    it down?
    http://www.mandarinedesign.com/staging/hubb/home.swf
    Also I want to add in URL links to the backside of the tag,
    but when I use getURL it brings the tag back to the up state when
    you roll off... HELP please

    slowing down that rollover animation depends on what you're
    using to display that rollover animation.
    and the rollout will be triggered when you rollout of the
    button. you can control that if you use a movieclip button, but not
    if you use a simple button.

  • E55 camera flash goes off too early

    Just discovered this so I imagine it's developed a fault, but I thought I'd ask if anyone else has the same problem. When I take a picture with flash, the flash fires before the camera shutter opens so the picture comes out dark. Any suggestions, please, or shall I just carry another camera?

    Hi mindmagic,
    Sorry to hear about the issue. Please make a backup with Nokia Suite. Then reinstall the phone software. The process is the same as when updating with Nokia Suite, but at the end select "Reinstall". 
    You can also type in *#7780# followed by lock code (default is 12345). This is soft reset, no data lost. The settings will be restored to factory state.
    Hope this helps!
    Jampe
    If the answer solves your issue, please click the ACCEPT AS SOLUTION button so other users can benefit from it as well. Giving a kudos (the white star) if my answer has helped will be appreciated.

  • Folder action kicks in too early

    I have a little applescript that is to add all files that are added to a specific folder to an iTunes playlist.
    I added the script as a folder action to the folder.
    It seems to work fine with single files.
    However, when I copy several files (which takes a few seconds), then the script gets started too early, i.e., when only half of the files have been copied over. Consequently, only some of the files get added to the playlist.
    In addition, when I copy a large number of files, it doesn't seem to work at all.
    Any ideas what's wrong? or what I can do?
    (Is this a bug in Mac OS? I read about an issue in 10.5 where folder actions got started before a single files was finished copying, but I haven't seen of any hints about my problem.)
    Any kind of help will be highly appreciated.
    Best regards,
    Gabriel.
    PS:
    Here is my script, for completeness
    Automatically add the files that are dropped on this applescript to
    playlist named below.
    To adapt it for a different playlist, just change the name below and save as application.
    In addition, you can add this script as a folder action
    Author: Gabriel Zachmann, Feb 2010
    property playListName : "Hoerspiele"
    on open theseFiles
    addTheFiles(theseFiles)
    end open
    on adding folder items to this_folder after receiving added_items
    addTheFiles(added_items)
    end adding folder items to
    to addTheFiles(theFiles)
    tell application id "com.apple.iTunes"
    activate
    set playL to some playlist whose name is playListName
    set playID to persistent ID of playL
    --display dialog ("persistent ID = " & playID) buttons {"OK"} default button 1
    reveal (some playlist whose persistent ID is playID)
    repeat with aFile in theFiles
    try
    add aFile to some playlist whose persistent ID is playID
    end try
    -- set new date, so we know later when we copied the files
    set the file_path to the quoted form of the POSIX path of aFile
    do shell script ("/bin/touch " & file_path)
    end repeat
    end tell
    end addTheFiles
    Message was edited by: GabrielZ

    folder actions have always been buggy and this has always been an issue when folder actions have to process many files at the same time. it's supposed to have gotten better in snow leopard but it's still very far from being reliable. you can try the following trick to slow down your folder action and make it wait to process individual items before they are all copied. that might (or might not ) help
    http://discussions.apple.com/message.jspa?messageID=8277780#8277780

  • Preflight droplet returns too early

    I want to convert a color PDF into grayscale. So I created a new preflight profile where nothing happens except color fixup:
    Advanced > Print Production > Preflight
    PDF Fixups > Convert to Grayscale
    I saved the profile and created a Droplet named grey.exe.
    When I call grey.exe smallSize_1MB.pdf everything  is fine. But when I have to convert a PDF having big filesize like grey.exe bigSize_160MB.pdf the Droplet .exe process returns before the preflight is done.
    Problems: A script (e.g. a batch file) continues without waiting for the Droplet to finish. So the script cannot make use the Droplet's result, e.g. a preflight report or the converted PDF file.
    Why does the Droplet's .exe process return too early? Everybody can test this with the help of the attached Droplet and the following batch scripts:
    smallSize.bat (use something small, e.g. 1 MB or smaller):
    copy /Y smallSize.pdf tmp.pdf
    grey.exe tmp.pdf
    echo "return"
    pause
    bigSize.bat (use something really big, e.g. 160 MB or bigger):
    copy /Y bigSize.pdf tmp.pdf
    grey.exe tmp.pdf
    echo "return"
    pause
    Ideas, anyone?
    Message was edited by: Droptix  I am using Adobe Acrobat 8.0 Professional.
    Message was edited by: Droptix  As an alternative I can imagine to re-produce the Droplet's function by Interapplication communication (IAC) through OLE, see http://www.adobe.com/devnet/acrobat/interapplication.html -> if anyone can tell me how to do a grayscale conversion via IAC/OLE... would be great! I know the IAC/OLE basics, can open, save and edit PDFs but don't know how to convert. It would also be possible to use: Advanced/Print Production/Convert Colors > set all Document Colors to convert > set Blending profile for instance to Gray Gamma 1.8 > set conversion options to don't embed profile.

    This is not a good way to do it. But this is the way I do it now...
    It seems to work but there is no guarantee that it will work in the future, or even on all machines.
    private static int WaitForAcrobatReady() {
      // Get the current Acrobat instance.
      var app = new Acrobat.AcroApp();
      // While a preflight (droplet) is running, app.GetNumAVDocs() will
      // not return ANYTHING, it will just hang.
      return app.GetNumAVDocs();
    To sum up the efforts of the last weeks: Acrobat doesn't seem to be made for inclusion in other automation jobs. This is just another thing that doesn't work.
    (I had to use the C# library PDFSharp to do other things that Acrobat can do really well only that it's not possible to set those properties, or start that kind of actions, from "outside".)

  • Windows TCP Socket Buffer Hitting Plateau Too Early

    Note: This is a repost of a ServerFault Question edited over the course of a few days, originally here: http://serverfault.com/questions/608060/windows-tcp-window-scaling-hitting-plateau-too-early
    Scenario: We have a number of Windows clients regularly uploading large files (FTP/SVN/HTTP PUT/SCP) to Linux servers that are ~100-160ms away. We have 1Gbit/s synchronous bandwidth at the office and the servers are either AWS instances or physically hosted
    in US DCs.
    The initial report was that uploads to a new server instance were much slower than they could be. This bore out in testing and from multiple locations; clients were seeing stable 2-5Mbit/s to the host from their Windows systems.
    I broke out iperf
    -s on a an AWS instance and then from a Windows client in the office:
    iperf
    -c 1.2.3.4
    [ 5] local 10.169.40.14 port 5001 connected with 1.2.3.4 port 55185
    [ 5] 0.0-10.0 sec 6.55 MBytes 5.48 Mbits/sec
    iperf
    -w1M -c 1.2.3.4
    [ 4] local 10.169.40.14 port 5001 connected with 1.2.3.4 port 55239
    [ 4] 0.0-18.3 sec 196 MBytes 89.6 Mbits/sec
    The latter figure can vary significantly on subsequent tests, (Vagaries of AWS) but is usually between 70 and 130Mbit/s which is more than enough for our needs. Wiresharking the session, I can see:
    iperf
    -c Windows SYN - Window 64kb, Scale 1 - Linux SYN, ACK: Window 14kb, Scale: 9 (*512) 
    iperf
    -c -w1M Windows SYN - Windows 64kb, Scale 1 - Linux SYN, ACK: Window 14kb, Scale: 9
    Clearly the link can sustain this high throughput, but I have to explicity set the window size to make any use of it, which most real world applications won't let me do. The TCP handshakes use the same starting points in each case, but the forced one scales
    Conversely, from a Linux client on the same network a straight, iperf
    -c (using the system default 85kb) gives me:
    [ 5] local 10.169.40.14 port 5001 connected with 1.2.3.4 port 33263
    [ 5] 0.0-10.8 sec 142 MBytes 110 Mbits/sec
    Without any forcing, it scales as expected. This can't be something in the intervening hops or our local switches/routers and seems to affect Windows 7 and 8 clients alike. I've read lots of guides on auto-tuning, but these are typically about disabling scaling
    altogether to work around bad terrible home networking kit.
    Can anyone tell me what's happening here and give me a way of fixing it? (Preferably something I can stick in to the registry via GPO.)
    Notes
    The AWS Linux instance in question has the following kernel settings applied in sysctl.conf:
    net.core.rmem_max = 16777216
    net.core.wmem_max = 16777216
    net.core.rmem_default = 1048576
    net.core.wmem_default = 1048576
    net.ipv4.tcp_rmem = 4096 1048576 16777216
    net.ipv4.tcp_wmem = 4096 1048576 16777216
    I've used dd
    if=/dev/zero | nc redirecting to /dev/null at
    the server end to rule out iperfand
    remove any other possible bottlenecks, but the results are much the same. Tests with ncftp(Cygwin,
    Native Windows, Linux) scale in much the same way as the above iperf tests on their respective platforms.
    First fix attempts.
    Enabling CTCP - This makes no difference; window scaling is identical. (If I understand this correctly, this setting increases the rate at which the congestion window is enlarged rather than the maximum size it can reach)
    Enabling TCP timestamps. - No change here either.
    Nagle's algorithm - That makes sense and at least it means I can probably ignore that particular blips in the graph as any indication of the problem.
    pcap files: Zip file available here: https://www.dropbox.com/s/104qdysmk01lnf6/iperf-pcaps-10s-Win%2BLinux-2014-06-30.zip (Anonymised
    with bittwiste, extracts to ~150MB as there's one from each OS client for comparison)
    Second fix attempts.
    I've enabled ctcp and disabled chimney offloading: TCP Global Parameters
    Receive-Side Scaling State : enabled
    Chimney Offload State : disabled
    NetDMA State : enabled
    Direct Cache Acess (DCA) : disabled
    Receive Window Auto-Tuning Level : normal
    Add-On Congestion Control Provider : ctcp
    ECN Capability : disabled
    RFC 1323 Timestamps : enabled
    Initial RTO : 3000
    Non Sack Rtt Resiliency : disabled
    But sadly, no change in the throughput.
    I do have a cause/effect question here, though: The graphs are of the RWIN value set in the server's ACKs to the client. With Windows clients, am I right in thinking that Linux isn't scaling this value beyond that low point because the client's limited CWIN
    prevents even that buffer from being filled? Could there be some other reason that Linux is artificially limiting the RWIN?
    Note: I've tried turning on ECN for the hell of it; but no change, there.
    Third fix attempts.
    No change following disabling heuristics and RWIN autotuning. Have updated the Intel network drivers to the latest (12.10.28.0) with software that exposes functioanlity tweaks viadevice manager tabs. The card is an 82579V Chipset on-board NIC - (I'm going to
    do some more testing from clients with realtek or other vendors)
    Focusing on the NIC for a moment, I've tried the following (Mostly just ruling out unlikely culprits):
    Increase receive buffers to 2k from 256 and transmit buffers to 2k from 512 (Both now at maximum) - No change
    Disabled all IP/TCP/UDP checksum offloading. - No change.
    Disabled Large Send Offload - Nada.
    Turned off IPv6, QoS scheduling - Nowt.
    Further investigation
    Trying to eliminate the Linux server side, I started up a Server 2012R2 instance and repeated the tests using iperf (cygwin
    binary) and NTttcp.
    With iperf,
    I had to explicitly specify -w1m on both sides
    before the connection would scale beyond ~5Mbit/s. (Incidentally, I could be checked and the BDP of ~5Mbits at 91ms latency is almost precisely 64kb. Spot the limit...)
    The ntttcp binaries showed now such limitation. Using ntttcpr
    -m 1,0,1.2.3.5 on the server and ntttcp
    -s -m 1,0,1.2.3.5 -t 10 on the client, I can see much better throughput:
    Copyright Version 5.28
    Network activity progressing...
    Thread Time(s) Throughput(KB/s) Avg B / Compl
    ====== ======= ================ =============
    0 9.990 8155.355 65536.000
    ##### Totals: #####
    Bytes(MEG) realtime(s) Avg Frame Size Throughput(MB/s)
    ================ =========== ============== ================
    79.562500 10.001 1442.556 7.955
    Throughput(Buffers/s) Cycles/Byte Buffers
    ===================== =========== =============
    127.287 308.256 1273.000
    DPCs(count/s) Pkts(num/DPC) Intr(count/s) Pkts(num/intr)
    ============= ============= =============== ==============
    1868.713 0.785 9336.366 0.157
    Packets Sent Packets Received Retransmits Errors Avg. CPU %
    ============ ================ =========== ====== ==========
    57833 14664 0 0 9.476
    8MB/s puts it up at the levels I was getting with explicitly large windows in iperf.
    Oddly, though, 80MB in 1273 buffers = a 64kB buffer again. A further wireshark shows a good, variable RWIN coming back from the server (Scale factor 256) that the client seems to fulfil; so perhaps ntttcp is misreporting the send window.
    Further PCAP files have been provided, here:https://www.dropbox.com/s/dtlvy1vi46x75it/iperf%2Bntttcp%2Bftp-pcaps-2014-07-03.zip
    Two more iperfs,
    both from Windows to the same Linux server as before (1.2.3.4): One with a 128k Socket size and default 64k window (restricts to ~5Mbit/s again) and one with a 1MB send window and default 8kb socket size. (scales higher)
    One ntttcp trace
    from the same Windows client to a Server 2012R2 EC2 instance (1.2.3.5). here, the throughput scales well. Note: NTttcp does something odd on port 6001 before it opens the test connection. Not sure what's happening there.
    One FTP data trace, uploading 20MB of /dev/urandom to
    a near identical linux host (1.2.3.6) using Cygwin ncftp.
    Again the limit is there. The pattern is much the same using Windows Filezilla.
    Changing the iperf buffer
    length does make the expected difference to the time sequence graph (much more vertical sections), but the actual throughput is unchanged.
    So we have a final question through all of this: Where is this limitation creeping in? If we simply have user-space software not written to take advantage of Long Fat Networks, can anything be done in the OS to improve the situation?

    Hi,
    Thanks for posting in Microsoft TechNet forums.
    I will try to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Kate Li
    TechNet Community Support

  • Preflight droplet process returns too early – before it's done

    I'm calling an Acrobat preflight DROPLET from program that I'm writing, and I need to know when the files are ready, that is when the preflight fixups are done.
    I need to know this in order to go on with some other file system stuff in my program, that needs to be done after the preflight fixups.
    I guess the droplet just tells Acrobat what to do, and then exits. The Droplet process stays up for a while but exits before the work is done.
    There is an question from 2009 asking the exact same thing, but no answer.  Preflight droplet returns too early
    Since it's in a locked section of the forum I venture to ask the same question now, six years later.
    Checking the modified dates of all files does not seem to work since a preflight obviously does not alter files that are not in need of being altered.
    I'm on windows, and I don't know whether this is a platform dependent problem.
    What should I do?
    Thanks,
    Andreas

    This is not a good way to do it. But this is the way I do it now...
    It seems to work but there is no guarantee that it will work in the future, or even on all machines.
    private static int WaitForAcrobatReady() {
      // Get the current Acrobat instance.
      var app = new Acrobat.AcroApp();
      // While a preflight (droplet) is running, app.GetNumAVDocs() will
      // not return ANYTHING, it will just hang.
      return app.GetNumAVDocs();
    To sum up the efforts of the last weeks: Acrobat doesn't seem to be made for inclusion in other automation jobs. This is just another thing that doesn't work.
    (I had to use the C# library PDFSharp to do other things that Acrobat can do really well only that it's not possible to set those properties, or start that kind of actions, from "outside".)

  • CCME 4.0 matches number too early!

    Hello,
    once again I have a problem with my CCME 4.0.
    It happens quite frequently that someone from the outside calls a extension within our organisation. But the CCME bagins matching too early, before all digits are received. One or sometimes even two digits are left out.
    Example:
    Caller dials 12345-234 with 12345 being the main number and 234 being the extension. Now the CCM begins matching at 12345-23 already. The voice rule for incoming calls now cuts all but the last three digits and tries to match that to an extension. But since there is a digit missing, the CCM tries to match "523" instead of "234". And of course the extension "523" does not exist. So the caller gets a "number not assigned".
    This is quite annoying! How can I force the CCME to wait until all digits are received from the telephony service provider?
    Regards,
    Eyad Tayeb.

    The requested debug (of a succesful call):
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960443: <009><009>Component = Invoke component
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960444: <009><009><009>Invoke Id = 22962
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960445: <009><009><009>Operation = Diversion Leg2
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960446: <009>Progress Ind i = 0x8183 - Origination address is non-ISDN
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960447: <009>Calling Party Number i = 0x2181, '3462211214'
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960448: <009><009>Plan:
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960449: ISDN, Type:National
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960450: <009>Called Party Number i = 0xC1, '9209299'
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960451: <009><009>Plan:ISDN, Type:Subscriber(local)
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960452: 533213: Sep 6 15:27:45.121: ISDN BR0/1/1 EVENT: process_rxstate: ces/callid 1/0x192A calltype 2 HOST_INCOMING_CALL
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960453: 533214: Sep 6 15:27:45.121: ISDN BR0/1/1 EVENT: host_incoming_call: call_id 0x192A, Guid = 50AAF3E5965D bchan 0
    10.10.1.251 960462: 533223: Sep 6 15:27:45.125: ISDN BR0/1/1 Q931: extract_redirect_orig_called_ie: IE type redirecting num none reason 15 cnt 1 plan -1 type 0 pres 1
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960463: 533224: Sep 6 15:27:45.125: //-1/xxxxxxxxxxxx/DPM/dpAssociateIncomingPeerCore:
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960464: Calling Number=3462211214, Called Number=9209299, Voice-Interface=0x46AA9C28,
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960486: 2: Dial-peer Tag=299
    2006-09-06 13:27:36 UTC Local7.Debug 10.10.1.251 960487: 533232: Sep 6 15:27:45.133: //-1/50AAF3E5965D/DPM/dpMatchPeersCore:
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960489: 533233: Sep 6 15:27:45.133: //-1/50AAF3E5965D/DPM/dpMatchPeersCore:
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960490: Match Rule=DP_MATCH_DEST; Called Number=299
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960491: 533234: Sep 6 15:27:45.133: //-1/50AAF3E5965D/DPM/dpMatchPeersCore:
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960492: Result=Success(0) after DP_MATCH_DEST
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960494: Result=SUCCESS(0)
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960495: List of Matched Outgoing Dial-peer(s):
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960496: 1: Dial-peer Tag=20003
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960497: 2: Dial-peer Tag=299
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960498: 533236: Sep 6 15:27:45.137: ISDN BR0/1/1 Q931: TX -> CALL_PROC pd = 8 callref = 0x81
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960499: <009>Channel ID i = 0x89
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960500: <009><009>Exclusive, B1
    2006-09-06 13:27:37 UTC Local7.Debug 10.10.1.251 960501: 533237: Sep 6 15:27:45.153: ISDN BR0/1/1 Q931: TX -> ALERTING pd = 8 callref = 0x81
    2006-09-06 13:27:43 UTC Local7.Debug 10.10.1.251 960502: 533238: Sep 6 15:27:51.825: ISDN BR0/1/1 Q931: TX -> CONNECT pd = 8 callref = 0x81
    2006-09-06 13:27:43 UTC Local7.Debug 10.10.1.251 960503: <009>Channel ID i = 0x89
    2006-09-06 13:27:43 UTC Local7.Debug 10.10.1.251 960504: <009><009>Exclusive, B1
    2006-09-06 13:27:43 UTC Local7.Debug 10.10.1.251 960505: 533239: Sep 6 15:27:51.929: ISDN BR0/1/1 Q931: RX <- CONNECT_ACK pd = 8 callref = 0x01
    2006-09-06 13:27:43 UTC Local7.Debug 10.10.1.251 960506: 533240: Sep 6 15:27:51.929: ISDN BR0/1/1 EVENT: process_rxstate: ces/callid 1/0x192A calltype 2 HOST_CONNECT
    2006-09-06 13:27:44 UTC Local7.Info 10.10.1.251 960507: 533241: Sep 6 15:27:51.933: %ISDN-6-CONNECT: Interface BRI0/1/1:1 is now connected to 3462211214

  • CK24 - "Release too early" message in log

    Hi, All:
    I am trying to perform a mark and release for period 1 in 2009 today Dec 16. The cost estimate was done without error. Marking was allowed in CK24 as well as Release. I checked the costing 2 tab and my estimate was there as the future standard cost. Everything seems OK.
    However when I check the log, it has this message:
    Message number 157 - Company code then "Release too early".
    Will this cause problem to my release on Jan 1, 2009.
    Thanks in advance for your help!
    Peter

    Thanks for your quick response, Suraj and Mangalraj!
    I am new to SAP and no one in the company knows the exact detail on how to perform the annual cost update. Hence I am asking for help here. I am doing a test on one item right now. I tried before this test to use CK40N to perform a cost run. It gave me incorrect costings. We looked into details and discovered that CK40N is for items with quantity structure. Because all our products are without quantity (purchase items), the system did the calculation incorrectly.
    I think I need to clarify a bit more about my test. We have purchase items only hence I used KKPAN - Create cost estimate without quantity structure to enter the costs in directly. There are 3 cost elements, the purchase price, the freight and inspection overhead. The cost estimate should be done by SAP right away after the data is entered. After the data entry, I perform the CK24 to mark the item. Then I use CK24 again to release. Then I checked and saw that message.
    Based on Suraju2019s comment, does that means that I have to release the costs on Jan 1, 2009 for my new standard costs to be effective? I found that to be very ineffective. Why canu2019t SAP allow me to plan ahead? I have already performed all my analysis on all the costs. I am sure they are correct. Why do I still need to perform the release on the first date of the actual period?
    With regard to Mangalraju2019s comment, I can understand that if the structure is based on some future date, the system should not allow the release because there may be errors when the actual costing run is performed. However since I am not using costing run as explained above, this is not relevant to my situation.
    One thing I want comments on is whether this message will stop my planned costs to become standard costs on Jan 1, 2009? This message is not an error, not even a warning. What will happen if I disregard this message? Will I have problem on Jan 1 with the system having outdated standard costs that I have been using for 2008? Please advise.
    Thanks in advance for your help.
    Peter

  • Systemd: some services starting too early and then failing

    Hello everyone,
    I freshly installed Arch on this new laptop (Asus Zenbook Prime UX32VD) and from the start, I wanted to have a pure systemd setup. I'm using services only and I've uninstalled initscripts and so far it's working relatively well.
    However, some services seem to start too early by default and the workarounds are unsatisfactory.
    Problem 1: asus-screen-brightness and asus-kbd-backlight
    On this lap top, the stock screen brightness buttons do not work (yet). A script and a service file (which are both available via the asus-screen-brightness AUR package) have to be used to allow users to change the brightness via the script. The problem is, with that service enabled, it only succeeds sometimes. About have of the time booting the laptop it fails, most likely because the necessary nodes in /sys/ do not exist yet. Restarting the service manually after booting does the trick:
    [root@tachychineta shapeshifter]# sc status asus-screen-brightness
    asus-screen-brightness.service - Allow user access to screen brightness
    Loaded: loaded (/etc/systemd/system/asus-screen-brightness.service; enabled)
    Active: active (exited) since Fri, 12 Oct 2012 11:23:44 +0200; 1min 1s ago
    Process: 320 ExecStart=/usr/bin/asus-screen-brightness allowusers (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/asus-screen-brightness.service
    Oct 12 11:23:44 tachychineta systemd[1]: Starting Allow user access to screen brightness...
    Oct 12 11:23:44 tachychineta sudo[349]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/bin/chmod g+w /sys/class/backlight/intel_backlight/brightness
    Oct 12 11:23:44 tachychineta sudo[349]: pam_unix(sudo:session): session opened for user root by (uid=0)
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: cat: /sys/class/backlight/intel_backlight/max_brightness: No such file or directory
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: /usr/bin/asus-screen-brightness: line 8: /10: syntax error: operand expected (error token is "/10")
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: /usr/bin/asus-screen-brightness: line 10: 2*: syntax error: operand expected (error token is "*")
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: cat: /sys/class/backlight/intel_backlight/brightness: No such file or directory
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: chgrp: cannot access ‘/sys/class/backlight/intel_backlight/brightness’: No such file or directory
    Oct 12 11:23:44 tachychineta asus-screen-brightness[320]: chmod: cannot access ‘/sys/class/backlight/intel_backlight/brightness’: No such file or directory
    Oct 12 11:23:44 tachychineta systemd[1]: Started Allow user access to screen brightness.
    [root@tachychineta shapeshifter]# sc restart asus-screen-brightness
    [root@tachychineta shapeshifter]# sc status asus-screen-brightness
    asus-screen-brightness.service - Allow user access to screen brightness
    Loaded: loaded (/etc/systemd/system/asus-screen-brightness.service; enabled)
    Active: active (exited) since Fri, 12 Oct 2012 11:25:28 +0200; 2s ago
    Process: 2547 ExecStop=/usr/bin/asus-screen-brightness disallowusers (code=exited, status=0/SUCCESS)
    Process: 2579 ExecStart=/usr/bin/asus-screen-brightness allowusers (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/asus-screen-brightness.service
    Oct 12 11:25:28 tachychineta systemd[1]: Starting Allow user access to screen brightness...
    Oct 12 11:25:28 tachychineta sudo[2593]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/bin/chgrp users /sys/class/backlight/intel_backlight/brightness
    Oct 12 11:25:28 tachychineta sudo[2593]: pam_unix(sudo:session): session opened for user root by (uid=0)
    Oct 12 11:25:28 tachychineta sudo[2597]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/bin/chmod g+w /sys/class/backlight/intel_backlight/brightness
    Oct 12 11:25:28 tachychineta sudo[2597]: pam_unix(sudo:session): session opened for user root by (uid=0)
    Oct 12 11:25:28 tachychineta systemd[1]: Started Allow user access to screen brightness.
    Exactly the same problem occurs with asus-kbd-backlight.service which is needed to allow users to control the keyboard backlight. It also fails because of missing /sys/ entries if started too early.
    Problem 2: automatic login & X11
    I use the method described on the wiki to autologin into TTY1 with my user and my .bash_profile contains
    [[ $(fgconsole) = 1 ]] && startx
    and my .xserverrc is configured as explained in this fantastically useful article by falconindy.
    This way, X starts automatically and my session is properly authenticated for things like udiskie. I'm not using [testing] but instead rebuilt polkit with --enable-systemd and it's working just fine. The problem is, just like in problem 1, Xorg fails to start every now and then, failing with
    (EE) No devices detected.
    I don't have a full log because it hasn't happened in a while, but I'm very certain it's because the chipset isn't ready, yet.
    Solutions?
    I added "i915" to /etc/modules-load.d/static.conf hoping that would cover both the Xorg and backlight problems but it doesn't help. I then tried adding i915 to my MODULES in mkinitcpio.conf and rebuilding the initramfs and at least it looked like that way the problems went away but it added about 4 seconds to the time spent by the "kernel" during boot which is quite unacceptable. (Plots with and without i915 in MODULES).
    I read the systemd.unit and systemd.service man pages but I can't find a way to speficy required kernel modules for a service file. I'm not sure if specifying the modules in /etc/modules-load.d shouldn't be enough (because apparently it's supposed to load for sysinit.target, which is early) but apparently it isn't.
    Any ideas how I can get these services to work properly without sacrificing too much boot time?
    Thank you
    Last edited by Shapeshifter (2012-10-12 10:20:09)

    Please fill a bug report.

  • [Calender] Dates are misplaced a day too early

    Ez all crew,
    since updating to 4.0.1 my iPhone 3GS 32 GB Calender seems to begun misplacing events/activities a day too early. This is only the case on the iPhones, not on my other Mac computers. They are all synced via MobileMe.
    Actually it is only the case when using the Calender in List mode, not in Day or Month mode. E.g. an event/activity added to begun on Thursday 26th August is shown on the day before (i.e. Wednesday 25th). I have screen shots from the iPhone to confirm the problem, however, it is not possible for me to send the to Apple Support. I'm told to contact my local (Danish) telephone operator company. Yet, this is clearly an Apple software problem, not the local telephone company's.
    I have now updates to 4.0.2 and it did not solve the problem. Please advice. Cheers!

    iPhone Calender recently started to mash up the dates again. A total reset of the MobileMe Calender sync was needed to sort it out. However, once and again the while creating a new event in the iPhone Calender it does not save it. Often it is needed to re-create it 2-3 times. This does not happen on my Macbook Pro and iMac 27" computer's Calender though. It's a strictly iPhone problem apparently,

  • Calling getT3Srvr too early

              I wrote a small java application monitoring adding/deleting cluster members using
              JMX notification(Listening on ClusterMBean). I keep getting the following error
              when I delete a member from a cluster:
              weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Calling getT3Srvr
              too early. This can happen when you have a static initializer or static variable
              pointing to T3Srvr.getT3Srvr() and your class is gettingloaded prior to T3Srvr.
              at weblogic.t3.srvr.T3Srvr.getT3Srvr(T3Srvr.java:119)
              at weblogic.management.internal.Helper.isAccessAllowed(Helper.java:1837)
              at weblogic.management.internal.AttributeChangeNotification.getOldValue(AttributeChangeNotification.java:175)
              at weblogic.management.internal.MBeanProxy.wrapNotification(MBeanProxy.java:765)
              at weblogic.management.internal.MBeanProxy.sendNotification(MBeanProxy.java:850)
              at weblogic.management.internal.BaseNotificationListenerImpl.handleNotification(BaseNotificationListenerImpl.java:71)
              at weblogic.management.internal.RelayNotificationListenerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:359)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:762)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:308)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              <Jan 14, 2003 10:10:31 AM EST> <Warning> <rmi> <080004> <Error thrown by rmi server:
              weblogic.management.internal.RelayNotificationListenerImpl.handleNotification(Ljavax.management.Notification;Ljava.lang.Object;)
              I don't use static variables or blocks in my code. Any body saw similar errors
              or know how to fix it?
              

              I wrote a small java application monitoring adding/deleting cluster members using
              JMX notification(Listening on ClusterMBean). I keep getting the following error
              when I delete a member from a cluster:
              weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Calling getT3Srvr
              too early. This can happen when you have a static initializer or static variable
              pointing to T3Srvr.getT3Srvr() and your class is gettingloaded prior to T3Srvr.
              at weblogic.t3.srvr.T3Srvr.getT3Srvr(T3Srvr.java:119)
              at weblogic.management.internal.Helper.isAccessAllowed(Helper.java:1837)
              at weblogic.management.internal.AttributeChangeNotification.getOldValue(AttributeChangeNotification.java:175)
              at weblogic.management.internal.MBeanProxy.wrapNotification(MBeanProxy.java:765)
              at weblogic.management.internal.MBeanProxy.sendNotification(MBeanProxy.java:850)
              at weblogic.management.internal.BaseNotificationListenerImpl.handleNotification(BaseNotificationListenerImpl.java:71)
              at weblogic.management.internal.RelayNotificationListenerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:359)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:762)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:308)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              <Jan 14, 2003 10:10:31 AM EST> <Warning> <rmi> <080004> <Error thrown by rmi server:
              weblogic.management.internal.RelayNotificationListenerImpl.handleNotification(Ljavax.management.Notification;Ljava.lang.Object;)
              I don't use static variables or blocks in my code. Any body saw similar errors
              or know how to fix it?
              

  • Disconnected too early.

    If you disconnect your nano from your computer too early (with the "do not disconnect" warning still flashing on the screen), does it affect the battery life of the nano?

    >If you disconnect your nano from your computer too early (with the "do not disconnect" warning still flashing on the screen), does it affect the battery life of the nano?
    No.
    I've had my nano for 3 1/2 months and I often disconnect the nano without ejecting first. Doing so often requires a reset, but other than that, no problems.
    Gary
    -edit-
    While we're on the subject, you might take a look at this article:
    http://docs.info.apple.com/article.html?artnum=61135

  • My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe! Now see if it charges normally and after a period try to turn it on again. If the batter has been drained it could take 20 minutes or so for it to show that it is charging.
    Also considering if the battery need replacing!

  • Material Cost Estimate - Release too early

    Hi,
    I ran the cost estimate for one material on 12.06.2008 and i released the cost estimate. Here it is saying 'Cost Estimate released too early'. I thought system is releasing the cost for material for the next month. but i want to update the material cost for this month only.
    And how many days before you have to run the cost estimate for the new month.
    sateesh

    Hi Sateesh,
    Please check the period which you have mentioned in CK24.
    I think the period you have given is of next month. Hence system is giving that message as next month's  period may not have been opened.
    System allows to release cost estimate only once in a period. Normal practice is to carry out cost run at the end of the month.
    Please do let me know if your problem is solved.
    regards,
    makrand

Maybe you are looking for

  • Macbook pro cracking at hinge

    My Macbook pro (bought in november 2008) has started to crack!! It seems like it's getting worse... It looks just like this: http://www.mac-forums.com/forums/apple-notebooks/141840-new-unibody-macbook-pro- cracking-hinge.html Do you think Apple will

  • PLEASE HELP ITS URGENT (PROBLEM IN INCLUDE)

    IF I EXECUTE IN 4.6C ITS NOT GIVIN NY ERROR BUT THE SAME CODE IN 6.0 IS GIVING ERROR IF NOT ( ( text_flag = 'X' AND tcode_level > 0 ) OR              ( text_flag_level0 = 'X' AND                tcode_level      = 0   AND          )    ). ERROR IS: In

  • Enable server group mailing list

    I am try to figure out why I cannot get the server group mailing list to work. I have a group called testgroup in my OD and have 4 users added to it. I restarted the server after I ticked the box "enable server group mailing list" in Mail/settings/Ma

  • BAPI_SALESORDER_CREATEFROMDAT2 colud not fill ORDER_CONDITIONS_IN-CONDVALUE

    Hello, I need to fill the total condition value in item level, since the price cannot be entered with 4 decimals, so total should be filled first to avoid differences in total because of big quantities. I cannot change number of decimal places on pri

  • Nokia X/X2 -- Some thoughts and questions

    Moved from Symbian Belle, some thoughts: 1. Email widget doesn't automatically refresh. Have to manually tap to load new mail despite specifying a sync. interval. 2. Asking me to Sign in to a MS, Exchange, Nokia or Google account etc. to use the cale