Search results

  1. T

    Simple CIM Load Instruction?

    I'm way back on 85.h. I have never CIM loaded anything. I'm getting confused by the papers I'm reading from QAD. Can anyone instruct me in simple language how to take data like: (text file obviously) 40005 FDS 40006 FDS 40007 CPD ...ect. and put it into pt_mstr (the FDS/CPD stuff goes in the...
  2. T

    Can I skip locked records?

    thank you. I will look at this.
  3. T

    Can I skip locked records?

    If I'm doing a FOR EACH thru a table that has a locked record (by a user) is there any way to either look at it only or skip it and move on? ( I can't access the program that is locking the record)
  4. T

    Help speeding this up

    I really think that might have helped some. thanks. Looking for any other "little known" tips if they're out there. ??
  5. T

    Help speeding this up

    This is very basic but so am I. I have a table "A" with 100,000 header records. The detail table "B" has 350,000 detail records. I'm looking for all records (headers and detail) with "datafield" >= yesterday. My script: for each A where A_date >= (today - 1) no-lock: for each B...
  6. T

    How do I get CR/LF after each record?

    This code delivers a text file but all records are strung out in 1 long string. How do I get them to be on separate lines? if last-of(sod_due_date) then do : export stream outer delimiter "," sod_due_date starttot runtot...
  7. T

    How do I cause an F4 keypress?

    Never mind...figured it out I found it... apply "F4" to (frame name).
  8. T

    How do I cause an F4 keypress?

    My code is: if a_runtot <> 0 then update a_factor with frame bill. if a_runtot = 0 then do: update a_runtot with frame bill. wink2 = wink1 - a_runtot. assign a_startrun = wink2. display "Press F4" with frame bill. end. update a_factor with frame bill. wink1 =...
  9. T

    How do I repeat this set of code?

    Excellent: Simon Sweetman, thank you for your guidance. Will be hoping to talk to you again!
  10. T

    How do I repeat this set of code?

    I know you will cringe at my code stucture by its part-time and I'm trying.. The following works well, but I need it to repeat at the end and go back to the top for another item input, unless F4 is pressed. Can someone help show me how I might accomplish this. Note the statements at the top...
  11. T

    What code will do this?

    Good Stuff Simon Sweetman: I thank you for your effort. Will give that a go. Bob
  12. T

    What code will do this?

    I have a TEMP-TABLE with 5 records in it. Each record has 3 fields. The records show like this when I run a FOR EACH on the table: 10/7/04 Bill N-12345 10/8/04 Mary N-54321 10/10/04 Ted N-65456 10/12/04 Mark N-55668 10/15/04 Sue N-54390...
  13. T

    Help with printing direction please

    your thread suggestion doesn't work ..? is it correct ?
  14. T

    Help with printing direction please

    In my character develpment environment, I need to direct the printer output to the default printer on the user's system (Windows). Now, I can only accomodate printers on my system using the command: OUTPUT stream printer Through lp -d VALUE(dfile) paged. Is there a command that will...
  15. T

    Can a Progress DB be mirrored?

    ping ... anyone?
  16. T

    Can a Progress DB be mirrored?

    We have a Progress 8.3b database. We would like to mirror (real time) the db on a different server using a different type of DB. Then be able to query that othe DB using SQL queries and programs. What options are there to do this?
  17. T

    Help with batch process please

    I have constructed a batch process (just a simple one to try to make one work). I am using MFG/Pro ver 8.5h. I find the instruction for getting the components established to be a bit confusing but have done my best. When I try to run it I get and error: "Attempt to write with no current...
  18. T

    Need To Print 2 copies of some docs

    Can anyone instruct me as to how to set up a printer in QAD to print 2 copies of anything sent to it. I can't just set the printer itself this way as it has other uses on the network. QAD suggested I set up anothe print que just like the existing one for it but add the control codes necessary...
  19. T

    MFG/Pro ver 8 to eb2 conversion

    I whole-heartedly agree. But the charge was to see if we could do it ourselves. Believe me there will be MUCH discussion on this before we jump.
  20. T

    Promon won't see my DB

    good info...it worked. Thanks
Top