Different timing

i have master -detail database blocks, in the detail i have field (ID) and i have start date for training and for how many days fields in master block.so let say the client has id (1234) take training on 22-nov-2009 for 3 days ...mean finished on 26-nov-2009 between 10:00 till 12:00. if the same client register in an another training in same days like 24-nov-2009 for 5 days from 11:00 till 15:00 (same timing)...should the system give message.
i wrote this code in (when-validate-item trigger) but it is not working ...
when-validate-item
============
begin
     SELECT count(*) into :global.dummy
     FROM PYPSTSM,PYPSTSD
     WHERE PYPSTSD_REF_NO = PYPSTSM_REF_NO
AND PYPSTSD_PARTICIPANT_PIDM = :PYPSTSD_PARTICIPANT_PIDM
AND :PYPSTSM_DATE BETWEEN PYPSTSM_DATE AND (((PYPSTSM_DATE+PYPSTSM_NO_OF_DAYS)-1))
AND (:PYPSTSM_START_TIME BETWEEN (PYPSTSM_START_TIME+(:PYPSTSM_START_TIME-PYPSTSM_START_TIME))
AND (PYPSTSM_START_TIME+(:PYPSTSM_START_TIME-PYPSTSM_END_TIME))
OR :PYPSTSM_END_TIME BETWEEN (PYPSTSM_END_TIME+(:PYPSTSM_END_TIME-PYPSTSM_START_TIME)) AND (PYPSTSM_END_TIME+(:PYPSTSM_END_TIME-PYPSTSM_END_TIME)))
AND PYPSTSD_STATUS_IND ='R';
if :global.dummy >0 then
message('*ERROR* this person has registered an another Training.');
message('*ERROR* this person has registered an another Training.');
RAISE FORM_TRIGGER_FAILURE;
end if;
end;

same result means what? Does it show your message? Does it not? Perhaps you could provide some sample data,here is mine
with data as (SELECT 10 STARTDATE, 12 ENDDATE, 1 ID FROM DUAL
              UNION ALL
              SELECT 12 STARTDATE, 13 ENDDATE, 2 ID FROM DUAL
              UNION ALL
              SELECT 13 STARTDATE, 15 ENDDATE, 3 ID FROM DUAL             
              UNION ALL
              SELECT 01 STARTDATE, 20 ENDDATE, 4 ID FROM DUAL             
              UNION ALL
              SELECT 01 STARTDATE, 10 ENDDATE, 4 ID FROM DUAL             
              UNION ALL
              SELECT 17 STARTDATE, 20 ENDDATE, 4 ID FROM DUAL             
SELECT * FROM DATA WHERE STARTDATE<=16 AND ENDDATE>=11
TARTDATE              ENDDATE                ID                    
10                     12                     1                     
12                     13                     2                     
13                     15                     3                     
1                      20                     4                     
4 rows selectedFor simplicity, i used numbers for the time

Similar Messages

  • Running total required but with different timing

    Hi All:
    I am using Oracle9i Enterprise Edition Release 9.2.0.6.0
    I want to write a query to display the statistics report with running total.
    I have written following query that return last 60 minutes activities.
    SELECT se.tserv_id,
    sum(decode(eu.category,'I',1,0)) Imp,
    sum(decode(eu.category,'E',1,0)) Exp,
    count(*) Total
    FROM service_events se, equipment_uses eu
    WHERE se.performed BETWEEN trunc(sysdate-60/1440,'mi')
    AND trunc(sysdate,'mi')
    AND se.tserv_id IN ('EXM','GROUNDED')
    AND eu.gkey = se.equse_gkey
    AND eu.category IN ('I','E')
    GROUP BY se.tserv_id;
    now I want to write a query that shows me the result of above query and running total as well
    But the different between current activity and running total is as follows
    Current Activity = Last 60 minutes activity
    Running Total = Total activities from the 08:00 am till sysdate.
    for example if this query executed on 11:00 am then the current activity values must be from 10:00 am to 11:00 am and the running total values must be from 08:00 am to 11:00 am
    The reason for running total starts at 08:00 am is that the shift starts from 08:00 am to next day 07:59 am.
    Can I write one single query for this?
    Similarly running total values must be start from last day 08:00 am to current date and time when I executed this query from 00:00 to 08:00 (12 midnight to 8am)
    if difficult then plz let me know that how can I find that if the time is from 00 hrs to 08 hrs then start time must be the last date 08:00 am to the current date and time.
    Thanks
    Hassan

    Dear Frnak
    Thanks for your reply and help
    Its really did what I want
    I mean to say that the result format is correct but the value of Total_day column is not correct.
    Following is the sample data from 19-Jun-2008 08:00 AM to 20-JUN-2008 08:00 AM
    TSERV_ID  EQUSE_GKEY     PERFORMED
    ===============================================
    EXM       5188958     19-Jun-2008 8:00:32 AM
    EXM       5185586     19-Jun-2008 9:03:34 AM
    EXM       5181960     19-Jun-2008 9:03:35 AM
    EXM       5173333     19-Jun-2008 9:03:35 AM
    EXM       5188263     19-Jun-2008 9:08:49 AM
    GROUNDED  5174055     19-Jun-2008 9:10:29 AM
    GROUNDED  5152887     19-Jun-2008 9:10:29 AM
    GROUNDED  5187512     19-Jun-2008 9:10:29 AM
    GROUNDED  5196303     19-Jun-2008 9:27:41 AM
    EXM       5196370     19-Jun-2008 9:29:50 AM
    EXM       5172045     19-Jun-2008 10:01:23 AM
    GROUNDED  5196269     19-Jun-2008 11:11:29 AM
    GROUNDED  5200219     19-Jun-2008 11:24:39 AM
    GROUNDED  5185246     19-Jun-2008 12:06:30 PM
    GROUNDED  5190134     19-Jun-2008 12:09:27 PM
    GROUNDED  5190475     19-Jun-2008 12:09:27 PM
    GROUNDED  5156065     19-Jun-2008 12:26:49 PM
    GROUNDED  5132287     19-Jun-2008 1:56:44 PM
    EXM       5189203     19-Jun-2008 2:29:17 PM
    EXM       5180158     19-Jun-2008 3:27:03 PM
    EXM       5149310     19-Jun-2008 3:37:31 PM
    EXM       5196303     19-Jun-2008 3:42:48 PM
    EXM       5192768     19-Jun-2008 4:03:51 PM
    EXM       5174055     19-Jun-2008 4:14:23 PM
    EXM       5200231     19-Jun-2008 4:45:51 PM
    EXM       5157151     19-Jun-2008 4:51:06 PM
    EXM       5159930     19-Jun-2008 5:01:36 PM
    EXM       5185237     19-Jun-2008 5:01:37 PM
    EXM       5195434     19-Jun-2008 5:01:37 PM
    EXM       5152887     19-Jun-2008 5:06:49 PM
    EXM       5196269     19-Jun-2008 5:06:49 PM
    EXM       5187512     19-Jun-2008 5:17:26 PM
    EXM       5190134     19-Jun-2008 5:59:24 PM
    GROUNDED  5101919     19-Jun-2008 6:44:36 PM
    GROUNDED  5101918     19-Jun-2008 6:44:37 PM
    GROUNDED  5101913     19-Jun-2008 6:44:37 PM
    EXM       5185735     19-Jun-2008 6:46:38 PM
    GROUNDED  5195475     19-Jun-2008 6:47:11 PM
    GROUNDED  5195361     19-Jun-2008 6:47:12 PM
    EXM       5132608     19-Jun-2008 7:02:23 PM
    GROUNDED  5195334     19-Jun-2008 7:10:32 PM
    GROUNDED  5190558     19-Jun-2008 7:10:32 PM
    EXM       5183029     19-Jun-2008 7:33:53 PM
    EXM       5183480     19-Jun-2008 7:39:12 PM
    EXM       5189566     19-Jun-2008 8:00:11 PM
    EXM       5181825     19-Jun-2008 8:15:57 PM
    EXM       5183537     19-Jun-2008 8:15:57 PM
    EXM       5180210     19-Jun-2008 9:08:27 PM
    GROUNDED  5193136     19-Jun-2008 9:58:23 PM
    EXM       5171510     19-Jun-2008 10:21:59 PM
    EXM       5185615     19-Jun-2008 10:48:14 PM
    EXM       5184737     19-Jun-2008 10:53:29 PM
    EXM       5195475     19-Jun-2008 11:51:16 PM
    EXM       5195476     20-Jun-2008 12:01:46 AM
    EXM       5190558     20-Jun-2008 12:12:17 AM
    EXM       5196473     20-Jun-2008 12:54:19 AM
    EXM       5183204     20-Jun-2008 1:20:34 AM
    GROUNDED  5192844     20-Jun-2008 1:28:24 AM
    GROUNDED  5174238     20-Jun-2008 1:28:24 AM
    GROUNDED  5193127     20-Jun-2008 1:28:24 AM
    GROUNDED  5185794     20-Jun-2008 1:29:09 AM
    GROUNDED  5192895     20-Jun-2008 3:04:23 AM
    GROUNDED  5193039     20-Jun-2008 3:04:23 AM
    GROUNDED  5195447     20-Jun-2008 3:04:23 AM
    GROUNDED  5190228     20-Jun-2008 3:04:24 AM
    GROUNDED  5179370     20-Jun-2008 3:04:24 AM
    GROUNDED  5190289     20-Jun-2008 3:04:24 AM
    GROUNDED  5174065     20-Jun-2008 3:04:24 AM
    GROUNDED  5192862     20-Jun-2008 5:04:42 AM
    GROUNDED  5199903     20-Jun-2008 5:04:42 AM
    EXM       5178176     20-Jun-2008 6:30:29 AM
    EXM       5185161     20-Jun-2008 6:46:14 AM
    EXM       5180226     20-Jun-2008 6:46:14 AM
    GROUNDED  5202026     20-Jun-2008 7:03:14 AM
    EXM       5101912     20-Jun-2008 7:07:14 AM
    GROUNDED  5176763     20-Jun-2008 7:25:27 AM
    GROUNDED  5185494     20-Jun-2008 7:25:27 AM
    EXM       5185295     20-Jun-2008 7:38:46 AM
    EXM       5173837     20-Jun-2008 7:49:15 AM
    GKEY     CATEGORY
    =================
    5101912     I
    5101913     I
    5101918     I
    5101919     I
    5132287     I
    5132608     I
    5149310     I
    5152887     I
    5156065     I
    5157151     I
    5159930     I
    5171510     I
    5172045     I
    5173333     I
    5173837     I
    5174055     I
    5174065     I
    5174238     I
    5176763     I
    5178176     I
    5179370     I
    5180158     I
    5180210     I
    5180226     I
    5181825     I
    5181960     I
    5183029     I
    5183204     I
    5183480     I
    5183537     I
    5184737     I
    5185161     I
    5185237     I
    5185246     I
    5185295     I
    5185494     I
    5185586     I
    5185615     I
    5185735     I
    5185794     I
    5187512     I
    5188263     I
    5188958     I
    5189203     I
    5189566     I
    5190134     I
    5190228     I
    5190289     I
    5190475     I
    5190558     I
    5192768     I
    5192844     I
    5192862     I
    5192895     I
    5193039     I
    5193127     I
    5193136     I
    5195334     I
    5195361     I
    5195434     I
    5195447     I
    5195475     I
    5195476     I
    5196269     I
    5196303     I
    5196370     I
    5196473     I
    5199903     I
    5200219     E
    5200231     E
    5202026     EAnd I used the same query suggested by you.
    WITH     s     AS(     
    SELECT     se.tserv_id     ,     eu.category     ,
               CASE
                 WHEN     se.performed     BETWEEN     
                                    to_date('&target_dt','DD-MON-RRRR HH24:MI') - (1/24)
                                  AND     to_date('&target_dt','DD-MON-RRRR HH24:MI')
                          THEN     1
              ELSE     0
              END     AS in_hour     ,
            CASE
              WHEN     TRUNC (se.performed - (8/24)) =     TRUNC (to_date('&target_dt','DD-MON-RRRR HH24:MI')
                                                     - (8/24))
                THEN     1
              ELSE     0
              END     AS in_day
    FROM     service_events     se     ,     equipment_uses     eu
    WHERE     eu.gkey          = se.equse_gkey
         AND     eu.category     IN ('I', 'E')
      AND se.tserv_id in ('EXM','GROUNDED')
    SELECT     tserv_id,     
            SUM (DECODE (category, 'I', in_hour))     AS imp_hour,     
            SUM (DECODE (category, 'E', in_hour))     AS exp_hour,
            SUM (in_hour)     AS total_hour,
            SUM (in_day)     AS total_day
    FROM     s
    GROUP BY     tserv_idNow you have the sample data for almost 24 hours
    Let me clear it again
    When I executed this query at 20-JUN-2008 09:00 AM it gives me following result (that is accurate)
    TSERV_ID  IMP_HOUR  EXP_HOUR  TOTAL_HOUR  TOTAL_DAY
    EXM        2         0           2               3
    GROUNDED   1         0           1               8When I executed this query between 20-JUN-2008 00:00 to 20-JUN-2008 08:00
    then system must show the Total_Day value from 19-JUN-2008 08:00 to current date and time. e.g
    I executed this query at 20-JUN-2008 06:00 AM it gives me following result:
    TSERV_ID  IMP_HOUR  EXP_HOUR  TOTAL_HOUR  TOTAL_DAY
    EXM             0     0     0        44
    GROUNDED     2     0     2        35Now here you can see that the value of Total_Day is not as accurate as I required:
    EXM = 44 and GROUNDED = 35
    these values are between 19-JUN-2008 00:00 to 20-JUN-2008 06:00 (that is wrong in my case)
    The values of total_day should be as follows as 8 hours from 00:00 to 07:59 AM fall in the shift of 18-JUN-2008 not in 19-JUN-2008
    From 19-JUN-2008 08:00 to 20-JUN-2008 06:00
    EXM: 38
    GROUNDED: 32
    Plz note that this result is required because in our company the shift starts from 08:00 AM and ends 07:59 AM next day
    I hope you will be more clear now and there is no confusion anymore.
    Plz let me know if you still confused.
    Brgs,

  • A problem with delays in timed loops and DAQ

    I am programming a simulation for nuclear rewetting for a visitor centre at my company in Switzerland. It involves heating a "fuel rod" and then filling the chamber with water. The pump automatically starts once the rod core reaches 750C. After this, a requirement stipulates that flow rate be checked to ensure the pump is operating at the necessary conditions. If it isn't, the heater must be shutdown to avoid, well... meltdown. However, we must allow 10 seconds for the pump to respond, while still allowing a DAQ rate of 10-100Hz.
    The challenge is that I can't add a delay in my main loop else delay all acquisition, but I can't figure out how to trigger a peripheral loop (with DAQ for the single channel of checking flow) from the main loop, and when the peripheral loop determines if flow has initalised, respond back to the main loop with the okay.
    I think much of my confusion is in the interaction of the loops and the default feedback nodes that labview is putting in willy nilly. Would the only solution be to have two 'main' loops that don't communicate with eachother but rather do the same thing while operating on different timing? Tell me if you want me to post the file (although its on an unnetworked computer and I didn't think it would be too useful).
    Thanks+ Curran
    Solved!
    Go to Solution.

    Here it is! It is not in any form of completion unfortunately.
    So reading in the temp with NI9213 and watercolumn height with NI9215, we determine to turn on the pump with NI9472. NI9421 determines whether the pump is on (there is flow) and I must respond accordingly.
    I have 3 scenarios similar to this one as well, so having redundant loops with different timing like I mentioned would be way to heavy. I think I may have though up of a solution? At the time the pump is initiated, we record the iteration and wait for a number of iterations that correspond to 10s to pass before fulfilling the pump shutoff requirement?
    Attachments:
    rewettin1.vi ‏15 KB

  • How to compare the current system time with two timing?

    want to get the current system time and compare with the two different timing example startwindow time as 2:00:00AM and endWindowTime as 6:00:00AM. if my current system time falls between these window i have to execute my rest of the code.
    my below code works for fine for JAVA 1.6 version when i do the same code with JAVA 1.4 i am getting different date and time
    String starTime=(String) NightlyvendorStatus[0].getPropertyValue("startTime");
      String endTime=(String) NightlyvendorStatus[0].getPropertyValue("endTime");
      Date windowStarttime = new SimpleDateFormat("HH:mm:ss").parse(starTime);
      Date windowEndtime = new SimpleDateFormat("HH:mm:ss").parse(endTime);
      Date systemdate = new Date();
      SimpleDateFormat parser = new SimpleDateFormat("HH:mm:ss");
      String systemTime=parser.format(systemdate);
      Date currentTime = new SimpleDateFormat("HH:mm:ss").parse(systemTime);
      if (currentTime.after(windowStarttime) && currentTime.before(windowEndtime)){
    --- rest logic here---}
    the output from JAVA 1.4 IS Thu Jan 01 02:00:00 GMT 1970 Thu Jan 01 06:00:00 GMT 1970 Thu Jan 01 03:23:00 GMT 1970
    HOW TO DO this logic..

    Hi,
    You can try converting dates into timestamp and compare just like as comparing two integers variables.
    Regards,
    Anshul

  • External LCD flicker (timing standard problem?)

    My external LCD panel flickers when connected via DVI. It basically looks like a CRT refreshing. If I connect it with VGA, it doesn't flicker. It doesn't flicker when connected to a different machine. And it doesn't flicker if I boot the machine into Windows.
    I've tried setting different refreshes on it with SwitchResX to no avail. Again, it works perfect in Windows, but my built-in LCD has whine in Windows when not at full brightness. So, in handy chart form:
    OS X
    Built-In: Perfect
    External: Flicker
    Windows
    Built-In: High pitched whine when not at full brightness
    External: Perfect
    The only conclusion I can draw from this is that it is related to the use of different timing standards or something of the like. Clearly all the hardware is fine.
    So, does anyone have any idea how to go about changing the timing standard used in OS X?

    I'm experiencing almost the same problem as you: When I connect an external LCD projector to my Macbook Pro via DVI/VGA adaptor, I notice a flickering of the LCD projektor. The intensity of the flickering seems to depend on the frequency I adjust in the monitor control panel. Unfortunately there's no frequency that fits the needs of the LCD projector.
    Any idea to solve this problem is most welcome!

  • Writing data in different intervals than DAQ

    Hallo
    Would anybody please know how to write data to a file in different timing than the actual acquisition? Actually I acquire seven different channels than I average every 100 points and what I would like to do is write this one average value of each channel into a file. I use a sequence inside of a Do While loop but what happens is that If I do not use any timer inside of the sequence it works fine but If I insert a timer it somehow crashes. The reason I put the sequence in was to write the data that are already averaged otherwise it always writes the data every 10 ms no matter whether I average or not which is not what I want since the files would be too big to handle.
    Thank you very much for any suggestions
    K
    arlito
    PS: the file is called trialAI6
    Attachments:
    trialAI6.vi ‏721 KB

    yes , i am new to this concept help me
          i am using that one ,but the program is locking , my require ment is when the data acqustion is going on i want to write the data into the files aswell as i want to display .i done the display part its ok
    when writting ,i want to write the file as 5 min data the file name should be the start time of the 5 min data . like that it will go upto 5 hours ..
    where i want to put the outer loop and how i want to know how to check the 5 min elapsed .
    here with i attached the vi 
    instead of reading form the instrument u just use some random num 1 d array of 401 points
    help me
    give some ideas plz
    indrajit
    Indrajit
    | [email protected] | [email protected] .
    Attachments:
    ProducerConsumerData 3.vi ‏58 KB

  • Statechart module - timing in asynchronous statechart

    Hallo folks,
    I am wondering if it is possible to internally time an asynchronous statechart in the current statechart odule. To explain, I would like to automatically switch between states (Wait, Generate) in an asychronous statechart. For example a simple application where when the statecharts starts running it enters init mode. If the user activates a "Start" control it generates a number than goes to the wait state for a defined period of time .After this time elapses it again generates a new number. So it repeats the process of waiting and generating as long as the user does not press a stop button which sends a stop trigger.  The reason I want to use the timing within the statechart is because i want to have various timings for different tasks and wnat to avoid the classic too many parralel loops with a queue message handler. Therefore, I can not use a timeout external trigger from within the UI loop because essentially there is only one trigger I can send from the timeout state of the UI loop. I neeed it asynchronous since various parts of the application have to execute at different timing. Does anyone have any hint for such task ? Any suggestions are greatly appreciated.
    Karel

    Hi Karlito,
    Thank You for posting this question. If I understand your description the "genereate" and the "wait" states would always follow one another. I was wondering if it is ok for you to create only one state in which the number is generated and the application waits for a defined period of time.
    Good luck with your application,
    Tamas

  • Timing on builds

    I set my timing on multiple build slides to come in and out exactly where I want them to when playing on my MacBook Pro. But when I connect to an overhead projector, the timings all go off (sometimes a little, sometimes a lot depending on the projector). Is there any way to ensure what you see on the MacBook Pro screen will look and sound the same when projected?

    I am having the same problems, but with a nice big dual core MacPro... so I don't think it is a function of using a laptop or not, or the projector.
    I get slightly different timing if I set the slide show to use the full screen or not, and the exported timing to QT (as noted in other discussions) is very, very off. The first build timing is on and then it all starts drifting. I am trying to sync up builds in a slide to a Quicktime Movie on the slide and it is driving me a bit crazy. I can't break the builds up across slides as they all relate to a single movie.

  • Help with Timing and BPM

    Hey im fairly new to logic pro. I'm trying to find out how to record and keep the instruments in the speed that i played them.
    The thing is when i start recording ill play a drum pattern at 80 BPM but when i play it back its all out of order and completely different timing than how i recorded it. I'm sure its something i havent checked or i need to uncheck but i cant find it in the help.
    Also where do i control the BPM manually? any help is appreciated. Thanks to all who help.

    Hello,
    So I suppose this means that you do not want me to try it out, not today, but later on?
    I publilshed a couple of articles about advanced actions in CP5.
    BTW did you try to spread what you want to achieve over different slides? It will perhaps be easier to achieve.
    Lilybiri

  • Fixed Asset Opening Balance

    Hi,
    Any idea to do (by import and manual create) the opening balance for fixed asset Mmaster data? Tried to search SAP notes or guide, only can find related topic on Import FA Master Data and not manual create of FA Master Data, and how to import the FA Master Data with belong to same Asset Type (same life-span) but due to purchase at different timing, now having different remaining life span).
    Thank you.

    Hello,
    I am sorry for unclear answer. I did not mean that you have to develop addon.
    after checking our client database, I see that one asset class will have same useful life and depreciation type which it means that different asset class can only the way to have different useful life (UL), and of course it will be different in depreciation type (DT).
    For example : machine A : UL : 96, DT : SL12.5
                         land        B ; UL 250  DT : SL25.
    Hope you also could discuss with SAP support about this.
    Rgds,

  • Sychronize AO/AI buffered data graph and measure data more than buffer size

    I am trying to measure the response time (around 1ms) of the pressure drop indicated by AI channel 0 when the AO channel 0 gives a negetive single pulse to the unit under test (valve). DAQ board: Keithley KPCI-3108, LabView Version: 6.1, OS system: Win2000 professional.
    My problem is I am getting different timed graph between the AI and AO channels every time I run my program, except the first time I can get real time graph. I tried to decrease the buffer size less than the max buffer size of the DAQ board (2048 samples), but it still does unreal time graph from AI channel, seems it was still reading from old data in the buffer when AO writes the new buffer data, that is my guessing. In my p
    rogram, the AO and AI part is seperated, AO Write buffer is in a while loop while AI read is not. Would that be a problem? Or it's something else?
    Also, I am trying to measure data much larger than the board buffer size limit. Is it possible to make the measurement by modifying the program?
    I really appreciate any of your help. Thank you very much!
    Best,
    Jenna

    Jenna,
    You can modify the X-axis of a chart/graph in LabVIEW to display real-time. I have included a link below to an example program that illustrates how to do this.
    If you are doing a finite, buffered acquisition make sure that you are always reading everything from the buffer for each run. In other words, If you set a buffer size of 5000, then make sure you are reading 5000 scans (set number of scans to read to 5000). This will assure you are reading new data every time you run you program. You could always put the AI Read VI within a loop and read a smaller number from the buffer until the buffer is empty (monitor the scan backlog output of the AI Read VI to see how many scans are left in the buffer).
    You can set a buffer size larger than the FIFO
    buffer of the hardware. The buffer size you set in LabVIEW is actually a software buffer size within your computer's memory. The data is acquired with the hardware, stored temporarily within the on-board FIFO, transferred to the software buffer, and then read in LabVIEW.
    Are you trying to create a TTL square wave with the analog output of the DAQ device? If so, the DAQ device has counters that can generate a highly accurate digital pulse as well. Just a suggestion. LabVIEW has a variety of shipping examples that are geared toward using counters (find examples>>DAQ>>counters). I hope this helps.
    Real-Time Chart Example
    http://venus.ni.com/stage/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3E95556A4E034080020E74861&p_node=DZ52038&p_submitted=N&p_rank=&p_answer=&p_source=Internal
    Regards,
    Todd D.
    National Instruments
    Applications Engineer

  • IPod 4th Gen has white screen after replacement, and restore

    Okay. Here's the problem. A while ago, I dropped my iPod, and it's screen cracked. I've been living with it ever since perfectly, but just with a cracked screen. Now, I ordered a new screen, and I begin to replace it. I knew how, and like an easy job, I did it pretty quick compared to others. After both ribbon cables where in, I pressed the lock button, and my iPod had a white screen. I was a little worried about that, so, I tried to reattach the screen. Now it was just black, after even using the home and lock button restart method. Eventually I got it back up and to the white screen by draining the battery and recharging, and there I was again, stuck. I looked at some forums on the internet to try to see if anyone had my problem. After clicking on the first link, it turns out, alot of people had this problem as well as me. The solution they said was pressing the home button and lock button for about 10 or so seconds, and then it goes to the apple screen and is all better again. I tried it, and my home button broke. Great. So, now I had to use the little button that the home button was pressing down to try the solution. Tried it, and, nothing. Still the blank, plain, white screen. Looked some more and saw that pressing the home and lock buttons along with the volume up button worked for some people too. Tried it, worked just as good as the previous one. Nothing. I even tried some person's idea of doing home, then volume up, then lock, in different timed stages. Nothing. I also saw people begging for them not to restore their iPods and begging for a solution. I was fine with a restore, I just had games that I played on my iPhone as well. So, I went with it, and restored it, without any backups, just going to factory mode. Afterwards I heard my iPod make the iOS "plugged in" sound, and anxiously tried the lock button. Still had the white screen. STILL. Now, I'm here, begging for a solution like others, with an iPod that won't function properly. Can someone please help me?

    No nothing like that happened, I'm sure, but I actually spent the day looking for a fix. Luckily, I had the idea of taping the spring down because I though the screen didn't touch it. Turns out I was right, but however, I found out that the screen I ordered was broken in a way, because it still had the white screen after the taping. Just to make sure, I tried the other screen to clarify if the taping worked or not. I did the home and lock button restart, and up popped the apple logo. So, that means that the screen I got from the seller was either a rip-off, or was just broken somehow in process of making, or delivering in some matter. Unfortunately, I think I can't ship it back unless for alot of money because the person I got it from comes from China. I live in the USA. So that's gonna be a matter to work with myself. Thank you for trying to help.

  • File Copy to local attached Firewire "LaCie" not working any longer

    Dear all,
    have Updated my Mac Book to the latest 10.6.3 Release and since following is not longer working:
    Copying from FinalCutPro created Quicktime *.mov Files from the internal HD via Finder to the Firewire Drive - Error Message "Der Vorgang konnte nicht abgeschlossen werden, da das Objekt „filename.mov“ in Verwendung ist."
    The File is definitive not in use (I also tried it with a Copy of it - same behavior). I have tried this further with different File(sizes) - it starts copying and stops always at different timing afterwards with the same Error. Can also delete this file without any errors.
    Having seen that this has also happened by some others in this forum by writing back to SMB - so removed extented attributes which seems to work with them - still no success for me.
    Any ideas?
    Many thanks
    /Juergen

    Some Update on this - Copying to another FireWire 800 attached Drive with Apple Filesystem worked. But I am still guessing what happened

  • Urgent HELP Needed Compressing 24 fps file to DVD m2v

    I am working in a project where all the source footage is 24fps film (in 720x486 uncompressed 8 bit QT files). I have edited the footage in FCP6 with the sequence at matching settings to the source footage. Every thing good so far.
    I then export out a reference file of the final edit. Review the ref file and all is beautiful.
    The problem occurs with I use compressor to convert the 24 fps to m2v. I use one of Apples default settings (DVD Best Quality 90 Minutes), drop the setting on the clip in the asset window and verify the settings, which in the summary show frame rate of 23.976. OK. Submit.
    When the compression is complete, and I bring the new asset into DVDSP, the rate now shows 29.97 (open in QT confirms), and the clip stutters in play back.... i.e. dup frame every 5 frames. On the second try, I don't get dup frames, but I actually got frames dropped every few seconds. i.e. frame advance in DVDSP and the video would skip a frame. The later is extremely noticeable on panning shots.
    Can any one give me some advice on how to keep the video smooth and consistent with the original footage?
    Any help or suggestions would be EXTREMELY appreciated as this project HAS to go to press tomorrow.
    Thanks,
    Gary

    OK, After a very long night with no end near, I figured out the drop frames are the result of feeding 24fps into Compressor instead of 23.98.
    I took the footage conformed the clips to 23.98 and that particular problem was resolved....
    However, conforming introduced a whole new problem: When I conform the clips, 2 black frames are introduced at EXACTLY frame 7900. I have 4 tracks of similar footage, with different language tracks. There are English, French, Spanish and German sequences. The German track is edit differently than the other 3 due to very different timing in the translation. The other three are virtually identical to the point where the black frames are introduced.
    That being said, ALL 4 tracks have the black frames appear at frame 7900 regardless of the video content.
    These are NTSC (720x480 24 fps with uncompressed 8 bit video).
    Oddly enough, if I drop the NTSC sequence onto a PAL 24fps uncompress 8 bit sequence, the black frames do not seem to appear after the PAL tracks are conformed to 25 fps. I have not found any anyway....
    Any thoughts on why I am getting this problem?
    As a result, we have had to postpone the glass mastering, and needless to say, the producer is not at all pleased...
    Thanks for any input.
    Gary

  • How to create a video thumbnail???

    I'm pretty new to FCP but I've just finished several shorts and I'm getting ready to upload them to my web site and other video sites. I would like a specific frame to appear as the video thumbnail. (In other words: the "preview frame" that appears in the player when it's not playing).
    No one in my periphery seems to know how to do this.
    Most video sites give you their choices of frames you can use. For instance YouTube gives you three options but chances are none will be the frame you want.
    I would like to select the specific frame I want, regardless of where I upload it.
    Has anyone had experience with this?

    I would like to select the specific frame I want, regardless of where I upload it.
    That's not going to work. The frames available on YouTube are set to specific times in the video.
    Other services such as Vimeo might use a different timing or a different system altogether.
    QuickTime compatible media can take advantage of the Set Poster Frame function and it can be any frame that you choose. Once the clip is outside the QuickTime environment, you take your chances with what's on offer.
    The only way you can have any control over this is to set the poster frame in a QuickTime movie and host it on a compatible site such as MobileMe for example.

Maybe you are looking for

  • WUT-121 error on 9iAS

    Using WebUtil, I successfully opened an image file in a form in 9iDS. When we moved to the app server, we encountered the WUT-121 error. The temporary directory space is not restricted, and this is in the file webutil.cfg: transfer.database.enabled=T

  • Live Cache Installation Error

    Hi, While trying to install Livecache, i am getting the error as bleow. INFO       2007-11-28 07:54:10 [iaxxejsexp.cpp:106]            EJS_Installer::invokeModuleCall() Working directory changed to /tmp/sapinst_instdir/NW04S/STANDALONE/LC/SERVER. ERR

  • Get the pid of current user...

    well.. I feel like a newbie :D how could I found wich is my process id when I log on into Oracle db? (11g)

  • Web galleries--thumbs and large images not showing after uploading to server

    I have created 2 web galleries--one html and one Flash. I saved them to my local drive and they work perfectly. Then I uploaded to our server (I checked to see that all folders/files made it, and they did) and then when I access the index.html file,

  • Adobe Indesign CS4 Crashing When Printing To HP OfficeJet Pro 8500

    Adobe Indesign in crashing when I select print. The only printer I have is the OfficeJet Pro 8500 (A909g) I am running the latest version of OS. (OS 10.10.1) I have uninstalled Indesign and reinstalled it from my disc. There is no update to the versi