How to make AI acquire Waveform stop scanning..​.

Hi... i'm using labview 7.1 and playing a DAQ hardware now...
i wish to know how to make the "AI Acquire Waveform" stop scanning data into waveform, i heard someone said that got a build in fuction to stop it... can anyone tell me is it true? If no, can let me know the method to stop it?
with regard
Jaxx

If you want to pause your acquisition then the best thing to use would be Pause Triggering (DAQmx) or Scan Clock Gating (Traditional DAQ). You can find examples for either one in the NI Example Finder, search for 'pause' and go to the Cont Acq&Chart Samples-Int Clk-Pause Trigger.vi (DAQmx), or you can search for 'digital scan clock gating' in the search field for ni.com.
You may also want to look at this site for more information on triggering concepts: http://zone.ni.com/devzone%5Cconceptd.nsf/webmain/​2A03115556FB233386256870005BB522
In your original comment you stated you simply want a pulse on one line to start, and then to pause the acquisition on the next, then repeat the operation. You may just need to use the Start and Stop Trigger examples reinitialize your task if this is the case where you are just looking at a pulse on one line. Pause triggering or Scan Clock Gating will relate more to you having a single line go high and staying high until you want to pause the acquisition.
Particularly if you are in the situation where you have pulses coming in on a single line I would recommend you look at the DAQmx examples rather than the Traditional DAQ examples. The architecture of the code is more efficient and will allow you to more quickly reinitialize the task.
Otis
Training and Certification
Product Support Engineer
National Instruments

Similar Messages

  • How to make the whole movie stop

    Hi,
    I want to make a button open a new scene,
    I have that working but it keeps looping,
    How to make the whole movie stop at the end of scene 2,
    Ive tried putting stop(); but that brings errors,
    I want to stop the whole movie, How would i do this?

    click an empty part of the stage in the frame where you want the timeline to stop and in the actions panel type:
    stop();

  • How to make a button to stop and run a for loop?

    How to make a button to stop and run a for loop?  and if it is stopped it shall start from where i t stopped.

    Your VI has some very fundamental flaws.
    The start/stop button is outside the FOR loop, thus it will NOT get read during execution of the FOR loop, but only before the FOR loop starts. Think dataflow!
    Thus the terminal of the start/stop button belongs inside the FOR loop.
    Your FOR loop iterates 20x, which probably takes about a nanosecond. You will NOT be fast enough to reliably press the start/stop button during a specific iteration of the FOR loop.
    Your code does not "stop and run" a FOR loop (sic). The loop always spins, but executes an empty case when "Stopped". I guess that's what you actually want?
    Once you solve (2), the x indicator will contain a random value whenever you "stop".
    As soon as the 20 iterations complete, the outer while loop spin an things start over, another nanosecond later.
    Place e.g. a 500ms wait inside the FOR loop to solve this.
    Don't place terminals of indicators on top of formula nodes.
    Your formula does not produce any output, so really has no purpose.
    Use a real "stop" button to terminate the while loop (mechanical action: latch when released). Right now you are using a plain switch, which does not reset to false before the next run. This means that you need to manually reset it before running the program again.
    It is oftern useful to operate the VI in execution highlighting mode. You will immediately see that your button does not get read during execution of the FOR loop. Try it!
    LabVIEW Champion . Do more with less code and in less time .

  • How to use AI acquire waveform.vi for continuous acquisition

    Hello all,
    I am using LabVIEW 5.1 and PCI-6023E to acquire a voltage signal continuously, display the acquired data on a chart(display one minute of data at a time)then save all the acquired data to a spreadsheet file.
    When I used the random number as a signal to develop my program; everything has worked as expected. However,it is not working now as I replace the random number with a real voltage signal using the AI Acquire Waveform.vi. I have encounterd several problems:
    1/ Only display one second of data at a time.
    2/ The elapse time that I have calculated does not match with the time display on the chart.
    3/ The program runs very very slow when I increase the number of scans
    to acquire to 1000, but my program need to acquire the signal for 15 minutes at a rate of 50Hz(50sample/second); it is about 50,000.00 samples.
    Do you have any idea how should I do to make it works? I am a novice in LabVIEW; any help would be greatly appriciate.
    Hao
    P.S: I've attached my program if you want to take a look at them.
    Attachments:
    Acquire_Using_Random_Number.vi ‏89 KB
    Continuous_Acquire.vi ‏96 KB

    Helleo Labviewguru,
    Yes, I did tried to see those examples but I could not display on a chart nor store to an array and save to a spreadsheet file when I used the AI Config.vi, AI Start.vi and the AI Read.vi(in a while loop). Can you please help me with this.
    Thank you in advance.
    Hao

  • How to make your i pod stop zooming in

    to make your i pod stop zooming in doubble tap the screen when the device is on with three fingers and then pull the fingers down
    to zoom out and up to zoom in

    A iPod touch only zooms in when you put two fingers on the screen then spread the out and have them in close to zoom out. You can try to avoid putting two fingers on it and nothing really includes two fingers on the iPod touch since it can't handle multi-touch. However, I don't think you can stop that from happening if you keep on doing it by mistake. If there is, them i can imagine that it would be in settings- general then it would be in one of those. I think it would most likely would be in accessibility. Hope this helped! 

  • How to make an acquired array of data work with point-by-point functions

    Hello everyone,
    I am working on a LabVIEW project using the Measurement Computing PCI-DAS6402/16 board. I am attempting to use point-by-point analysis with data acquired from the board, but I am having some difficulty. I am currently only able to acquire an array of data and not just a single point of data per scan. So, I was wondering if i) anybody possibly had any knowledge/experience using this particular board and getting it to be compatable with point-by-point VIs or ii) if anybody possibly knows anyway to convert an array of acquired data to work with point-by-point VIs in a hard realtime application. Thanks
    Pat
    Message Edited by Support on 11-16-2005 07:56 AM

    Hi Pat
    I just can tell you how you can use the pt-by-pt functions. As you said you have an array of data. To use the pt-by-pt functions, you need the single datapoints. So the only way is to use a loop to get the single elements and pass them to the pt-by-pt functions.
    I've attache a simple example.
    If this is the right way for you concerning processor and memory load, execution speed etc. I can't tell you.
    Hope this helps.
    Thomas 
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    PtByPt.vi ‏17 KB

  • How to make a button to stop and run a while loop?

    Hi all,
    I am a beginner in the Labview. I did a program that contains a while loop, its stop condition is connected to button. I selected “switch when pressed” to be the operation of this button. Our teacher asked us to make this button stops the loop if it is pressed and its name is converted to run instead of stop. And if it is pressed then again it starts the loop from the point it stopped in.
    Can anybody help me, please?

    First, please use a smaller font when composing your messages.
    You will need two while loops.  An inner loop which has its stop terminal attached to the stop button.  Put that in the False case of a case structure.  Wire a local variable of that stop button to the case selector of the case structure.  Put the case selector inside another while loop which is the one that keeps the program running no matter what the state of the original Stop button.  You will need a master stop button to stop the outer loop when you are ready to end the whole program.  Don't forget to put small millisecond waits in each of the loops so that the loops don't eat up all the CPU resources.
    For that stop button, you could rename the True title to Run, so that when it is pressed to stop the inner loop, the button will show the word Run.  Pressing it again pops it back out, allows the false case to execute and the innermost while loop to run.
    You could also change the words on the buttons by using property nodes.

  • How to make a common RUN/STOP Button

    Hi,
    Does anyone has an example to make common START/STOP Button in main VI.
    Thanks,
    Kishor
    [email protected]

    I'm not sure what you are trying to achieve; do you want the start/stop button to pause the sequence and then commence where it was if start is pressed again?
    Using the state machine you can still force the execution order but have more control; you can stop the sequence whenever you want, skip frames based on user input or other...and you can have a single start/stop button.
    Attached is an example.
    MTO
    Attachments:
    Stoppable_sequence.vi ‏70 KB

  • How to make audio playback auto stop

    Hello!
    I am creating a widget for iBook that will be a cooking instruction step-by-step slides for the user to follow. I used the 'Gallery' object to create the slides so each step is a cell in the gallery, and the user can swipe left/right for the next/previous step. I also have an audio clip for each steps that's set to auto play.
    My problem is that when I swipe from cell 1 to cell 2, the audio clip 1 does not stop playing even when the cell is not in focus, at the same time audio clip 2 is auto playing, and thus I am hearing overlapped audio clips.
    note: I am using iAd Producer v. 5.0.1 and will be embedding the widget to iBooks Author v.2.2

    If you had a Mac, you could take it a step further and add chapter like Audible does. I came across a a AppleScript called Join Together which uses a tool from Apple called ChapterTool. Basically, you select the files to join and run Launch Join Together from the iTunes script menu. A dialog box pops up allowing to set the Artist, track info, release year, Album, etc. It also lets you set the output bit rate, frequency, and stereo/mono. It will either output a .m4a file (music) or a .m4b file (audiobook). If you have Apple's ChapterTool install, it will have an option to add chapter names based ont he song titles.
    Example: I have a dramatized version of the NIV Bible which wad a separate mp3 file for each chapter. So, it was broken into 1189 files:
    Song : Album
    Genesis 01 : 01 Genesis
    Genesis 02 : 01 Genesis
    Genesis 03 : 01 Genesis
    Exodus 01 : 02 Exodus
    Exodus 02 : 02 Exodus
    Exodus 03 : 02 Exodus
    Revelation 20 : 66 Revelation
    Revelation 21 : 66 Revelation
    Revelation 22 : 66 Revelation
    After using Join Together, I now have only 68 .m4b files, one for every book except Psalms which I split into three parts (001-050, 051-100, 101-150). Now when I select oneof the books on the iPod, a list of chapters are shown except for r the 5 books that only have one chapter (Test: name the 5 books without looking them up. .
    I in the proces of doing this for more books which I kept the individual chapter files like _Teach Yourself Norwegian_ (2 CDs) and two _Birding By Ear_ books (3 CDs each).
    For some reason the Join Together script errors out about 10% of the time and I have to re run it. I haven't tried to troubleshoot the issue, yet. Also at the beginning when it starts to join the tracks, the script plays all of the files being joined all at the same time for about 10 to 30 seconds. What a noise that is!
    Enjoy life,
    Steven

  • How to make the application temporarily stop (pause)

    Hi,
    I'm using Jdev 11.1.2.3.0
    My use case is:
    + I have index.jsf: load list of regions (List<TaskFlowBindingAttributes>)
    + in an action of one region (For ex: A-flow.xml), i will add another region to the list of regions
    addDynamicRegion("B-flow);  
    + My requirement is: all codes after <<addDynamicRegion("B-flow); >> will be wait util the app finish adding B-flow.xml and get out of B-flow
    +  this action is the same with : Call_Form Built-in of Oracle Forms
    P/s: my addDynamicRegion is just simple :
    public void addDynamicRegion(String flowId) {
    RunForm runForm = (RunForm)JSFUtils.getManagedBeanValue("runForm");
    TaskFlowBindingAttributes taskAtt = new TaskFlowBindingAttributes();
    String flowName = flowId.replace("-", "_");
    taskAtt.setId(flowName);
    taskAtt.setTaskFlowId(new TaskFlowId("/WEB-INF/" + flowId + ".xml", flowId));
    runForm.getTfBindingAtts().add(taskAtt);
    UIComponent form = getFormComponent(FacesContext.getCurrentInstance().getViewRoot());
    AdfFacesContext.getCurrentInstance().addPartialTarget(form);
    Thank you very much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
      this action is the same with : Call_Form Built-in of Oracle Forms
    no, its not because a call form navigates to the called form module, which is comparable to a task flow call activity and not a region.
    http://imdjkoch.wordpress.com/2010/07/23/open_form-vs-call_form-vs-new_form/
    "Runs an indicated form while keeping the parent form active. Oracle Forms runs the called form with the same Runform preferences as the parent form. When the called form is exited Oracle Forms processing resumes in the calling form at the point from which you initiated the call to CALL_FORM."
    (Note: I appreciate any ADF vs. Forms comparison if technically its done correctly)
    The regions in a view load according their af:region tags and as such you wont be able to pause loading unless you use the activate condition to point to a managed bean property that returns false so that the region is not initialized.
    This is from the JavaDocs of the Class TaskFlowBindingAttributes.
    "Set of attributes that define a TaskFlowBinding object. The taskFlowList attribute of the multiTaskFlow element of the page definition uses a list of object of this type to describe each taskflowBinding that the multiTaskflow binding contains. The order of this list defines the order of the region objects in the multiTaskflow binding. "
    So adding a region does not give you a chance to stop further loading and you will have to work with not activating not yet loaded regions, which then you need to load manually.
    Frank

  • How to make the SLA time stop when the status of SR is set to Customer Action?

    Dear All,
    When a Service Request is created, the agent take over this SR and then set the status to Customer Action. I know the CRM 7.03 has the ability to exclude the Cumtomer Action time out form the Response time of SLA. However, I don`t know how to set it up. Could somebody help to give me some information about this?
    I noticed that in SLA, there is a Work duration(SRQ_WORK_DUR) and a Total Duration(SRQ_TOT_DUR), which Duration is used to affect the traffic light of SLA MPT time?
    Thank you in advance.
    BR,
    Elvis

    Hi,
    in fact you can only trace duration of Customer Action status lifetime - this you can do by
    SPRO -> ... -> Define Settings for Durations.
    and SPRO -> ... -> Date Management to create this new duration and add to SR dates profile.
    So then in Dates tab of Service Request you will have new duration called eg. Customer Action.
    If you would like to additionally exclude it from Due Date, so you should then add this status lifetime to Due Date - then Due Date would be pushed to the future (eg. Customer Action status took 3 hours, so after changing status to other one you can write down this time to duration, and then add to Due Date).
    For that you need to have a development - eg. using CRM BT Events, or in WebUI layer.
    BR
    Radek

  • How to make FaceTime and iMessage stop turning off by themselves

    Has anyone experienced FaceTime and iMessage randomly turning off?

    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    3: If the device doesn't appear in iTunes, try using the Steps in this article to force the device into Recovery Mode.
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • How to make my iphone 4 stop freezing up after this stupid iOS 7 update?

    I have an iphone 4, downloaded ios 7 and my media keeps freezing! I'm super ****ed, NOTHING works right anymore and I've tried every solution i could find! FIX THE PROBLEM NOW!! I had to pay extra on my last two phone bills because i had to redownload everything!!! I'm very disgruntled and will tell everyone i know this horrible review and have them spread the word to stay away from apple products if a fix is not issued quick fast and in a hurry!! I can't watch a video or listen to music without my phone freezing and/or crashing, can't use apps or text without my phone being unresponsive, freezing or crashing, and my battery won't last more than two hours unplugged! FIX THIS ****!!!! Just to be clear, here's a list of "fixes" that didn't fix a **** thing!:
    -deleted most apps (by this, i mean i have maybe 15 apps that were's factory installed)
    -i have MUCH more than 15% free space; try a little under half of the space is free...
    -deleted a majority of the songs i had on my phone
    -turned off all automatic updates
    -turned off background syncing
    -turned off background app processing
    -there was no option to reduce motion on my phone - i searched and it's just not there
    -turned on increase contrast
    Turned documents and data off in iCloud section
    -hit the reset all settings button
    -rebooted my phone
    -let the battery run completely dead and completely recharged the phone
    -erased my entire device and put things back on one at a time
    (Fixes from http://readwrite.com/2013/10/15/ios-7-fixes-iphone-4-4s#awesm=~opqYMWDjhJeWGL)
    -there was no airdrop option for me
    -I've toggled all apps off in the notification center
    -held the home and power buttons to reset
    -backed up and restored
    (Fixes from http://m.digitaltrends.com/mobile/ios-7-problems/)
    I want a fix and i want it now! This is just plain ridiculous!

    Try this.
    Settings>General>Reset>Reset all settings.

  • How to make single full scan

    Hi, ALL
    I have this query like below and I see that it produced 3 <TABLE ACCESS FULL> for each Unioin, how to make it work with single Scan? It's simple table 2 colums, not indexes or PK, just for sample.
    explain plan for
    select count(*) from tt where amt between 0 and 100  union all
    select       count(*) from tt where amt between 100 and 200  union all
    select       count(*) from tt where amt >200 
    | Id  | Operation           | Name | Rows  | Bytes | Cost (%CPU)| Time     |                                                                                                                                                                                                                                
    |   0 | SELECT STATEMENT    |      |     3 |    39 |     9  (67)| 00:00:01 |                                                                                                                                                                                                                                
    |   1 |  UNION-ALL          |      |       |       |            |          |                                                                                                                                                                                                                                
    |   2 |   SORT AGGREGATE    |      |     1 |    13 |            |          |                                                                                                                                                                                                                                
    |*  3 |    TABLE ACCESS FULL| TT   |     2 |    26 |     3   (0)| 00:00:01 |                                                                                                                                                                                                                                
    |   4 |   SORT AGGREGATE    |      |     1 |    13 |            |          |                                                                                                                                                                                                                                
    |*  5 |    TABLE ACCESS FULL| TT   |     3 |    39 |     3   (0)| 00:00:01 |                                                                                                                                                                                                                                
    |   6 |   SORT AGGREGATE    |      |     1 |    13 |            |          |                                                                                                                                                                                                                                
    |*  7 |    TABLE ACCESS FULL| TT   |     3 |    39 |     3   (0)| 00:00:01 |                                                                                                                                                                                                                                
    Predicate Information (identified by operation id):                                                                                                                                                                                                                                                         
       3 - filter("AMT">=0 AND "AMT"<=100)                                                                                                                                                                                                                                                                      
       5 - filter("AMT">=100 AND "AMT"<=200)                                                                                                                                                                                                                                                                    
       7 - filter("AMT">200)                                                                                                                                                                                                                                                                                    
    Note                                                                                                                                                                                                                                                                                                        
       - dynamic sampling used for this statement                                                                                                                                                                                                                                                               

    SQL> explain plan for
      2  select count(*) from emp where sal between 0 and 100  union all
      3  select       count(*) from emp where sal between 100 and 200  union all
      4  select       count(*) from emp where sal > 200
      5  /
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 3840822464
    | Id  | Operation         | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |          |     3 |    12 |     3  (67)| 00:00:01 |
    |   1 |  UNION-ALL        |          |       |       |            |          |
    |   2 |   SORT AGGREGATE  |          |     1 |     4 |            |          |
    |*  3 |    INDEX FULL SCAN| EMP_IDX3 |     1 |     4 |     1   (0)| 00:00:01 |
    |   4 |   SORT AGGREGATE  |          |     1 |     4 |            |          |
    |*  5 |    INDEX FULL SCAN| EMP_IDX3 |     1 |     4 |     1   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |   6 |   SORT AGGREGATE  |          |     1 |     4 |            |          |
    |*  7 |    INDEX FULL SCAN| EMP_IDX3 |    14 |    56 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("SAL">=0 AND "SAL"<=100)
           filter("SAL"<=100 AND "SAL">=0)
       5 - access("SAL">=100 AND "SAL"<=200)
           filter("SAL"<=200 AND "SAL">=100)
    PLAN_TABLE_OUTPUT
       7 - access("SAL">200)
           filter("SAL">200)
    24 rows selected.
    SQL> explain plan for
      2  with t as (
      3             select  count(case when sal between 0 and 100 then 1 end) cnt1,
      4                     count(case when sal between 100 and 200 then 1 end) cnt2,
      5                     count(case when sal > 200 then 1 end) cnt3
      6               from  emp
      7            )
      8  select cnt1 from t  union all
      9  select cnt2 from t  union all
    10  select cnt3 from t
    11  /
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 2586840053
    | Id  | Operation                  | Name                        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT           |                             |     3 |    39 |     6  (67)| 00:00:01 |
    |   1 |  TEMP TABLE TRANSFORMATION |                             |       |       |            |          |
    |   2 |   LOAD AS SELECT           |                             |       |       |            |          |
    |   3 |    SORT AGGREGATE          |                             |     1 |     4 |            |          |
    |   4 |     TABLE ACCESS FULL      | EMP                         |    14 |    56 |     3   (0)| 00:00:01 |
    |   5 |   UNION-ALL                |                             |       |       |            |          |
    PLAN_TABLE_OUTPUT
    |   6 |    VIEW                    |                             |     1 |    13 |     2   (0)| 00:00:01 |
    |   7 |     TABLE ACCESS FULL      | SYS_TEMP_0FD9D662A_D5091620 |     1 |     4 |     2   (0)| 00:00:01 |
    |   8 |    VIEW                    |                             |     1 |    13 |     2   (0)| 00:00:01 |
    |   9 |     TABLE ACCESS FULL      | SYS_TEMP_0FD9D662A_D5091620 |     1 |     4 |     2   (0)| 00:00:01 |
    |  10 |    VIEW                    |                             |     1 |    13 |     2   (0)| 00:00:01 |
    |  11 |     TABLE ACCESS FULL      | SYS_TEMP_0FD9D662A_D5091620 |     1 |     4 |     2   (0)| 00:00:01 |
    18 rows selected.
    SQL> SY.

  • How to make this program terminate?

    hi,
    how to make the code below stop? is is hanging because UnicastRemoteObject has registered it, and no-one has unregistered it?
    thanks,
    asjf
    import java.rmi.*;
    import java.rmi.server.*;
    public class UniTest extends UnicastRemoteObject implements Remote {
         UniTest() throws RemoteException {}
         public static void main(String [] arg) throws Exception {
              UniTest ut = new UniTest();
    }

    having done some tests it possibly seems linked to the size of the environment
    my system is a win2k machine, with sdk 1.4.1_02 from sun
    if I run
    java UniTest
    then that terminates, but if I first run a batch file containing this
    set FILL0=aaaaabbbbbcccccdddddeeeeefffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnoooooppppp
    set FILL1=bbbbbcccccdddddeeeeefffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaa
    set FILL2=cccccdddddeeeeefffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbb
    set FILL3=dddddeeeeefffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbccccc
    set FILL4=eeeeefffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccddddd
    set FILL5=fffffggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeee
    set FILL6=ggggghhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffff
    set FILL7=hhhhhiiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffffggggg
    set FILL8=iiiiijjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffffggggghhhhh
    set FILL9=jjjjjkkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffffggggghhhhhiiiii
    set FILL0=kkkkklllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffffggggghhhhhiiiiijjjjj
    set FILLa=lllllmmmmmnnnnnooooopppppaaaaabbbbbcccccdddddeeeeefffffggggghhhhhiiiiijjjjjkkkkk
    then it doesn't?
    any help would be really appreciated?
    asjf

Maybe you are looking for

  • Synchronizing Iterators for master view with multiple detail - how to ?

    New to JDeveloper (from Forms) and after an introduction a week or so back, one question I have not yet answered with the ADF framework is how to synchronize iterators. Maybe I missed something simple, but if I have master table A with FK relations f

  • I get an error message "General exception" everyime i use a java based webs

    Everytime i go onto a java based website, a this pops up saying Java error, general exception... and when i right click on the coffe cup in the lower right hand corner, i click on open console, and this is what i see basic: Registered modality listen

  • Photoshop CS5 resets monitor calibration

    My monitor is calibrated with Spyder2. Every time when I start Photoshop and open file (new or existing) my calibration info is gone. I have to apply color calibration for my monitor again. Why Photoshop resets my monitors color calibration info and

  • Problem for 309 through BAPI_GOODSMVT_CREATE

    Hi all, I am using BAPI_GOODSMVT_CREATE for material to material transfer activity (309 - movement). The problem for me is for certain entries my source and destination sale order should be different, but evenif i provide different sales order in my

  • Trouble installing xp

    when rebooting after the initial installation it goes to trouble reading disk. hit any key to restart, just stays on that screen. restarted in windows and still goes to the blinking cursor.