Search results

  1. Marco Mendoza

    Lookup Fails When Casting Id To An Integer.

    get-value is an user-defined function. As is pointed on this article, the results can be unpredictable Progress KB - User Defined Functions (UDF) in WHERE clauses (FIND , CAN-FIND or FOR EACH) can be unpredictable
  2. Marco Mendoza

    Abl, Always Forgotten

    Interactive: The Top Programming Languages 2017 I wonder if someday I will see ABL in some list.
  3. Marco Mendoza

    Conditional Statement In A For Each

    This is wrong; "and xxpick_status = (if open-only = yes then rpt-stat)"; an "else" is mandatory on the sentence. I would change it to: and (open-only = FALSE OR xxpick_status = rpt-stat) Other option, similar to your first code is: and xxpick_status = (if open-only = yes then rpt-stat else...
  4. Marco Mendoza

    Need Transaction Sample Codes.

    1.- REPEAT TRANSACTION: <some stuff: read "n" record > <some stuff: update "n" record > END. 2.- DO TRANSACTION: REPEAT: <some stuff read "n" record > <some stuff: update "n" record > END. <some stuff: confirm all ok or undo > END.
  5. Marco Mendoza

    Error Startup Database Not Found.

    You need to do some update at 36.6.1 option
  6. Marco Mendoza

    Question Implementing Transaction Management - Best Way ?

    Something like this should work: {mylockcode.i &table=yourtable &translocklabel=TRANS_LOCK &sometableupdates="yourtable.field=value"} Don't forget to init your vars i-Retries=0, c-message="" etc
  7. Marco Mendoza

    Question Licensing Impact

    You should not share your serial/control numbers.
  8. Marco Mendoza

    Question Speed Up Csv File Import

    I don't see why you need the Temp-Table. So, I would remove the temp-table and use only Variables, and replace FOR EACH main.stock WHERE company = inputCompany AND loc-cd = inputDepot: IF stock.prod-code = pProdCode THEN DO: By FOR EACH main.stock EXCLUSIVE-LOCK WHERE company =...
  9. Marco Mendoza

    How To Set Up Dr

    It was a joke (sadly not obvious joke). Mike can make a better effort on explain his questions.
  10. Marco Mendoza

    How To Set Up Dr

    Is not obvious? Disaster Recovery. lol
  11. Marco Mendoza

    Passing File To "output" Option

    your device must be defined on Printer maintenance, if is not defined the output is sent to a ".prn" file. if you don't want the warning message add batchrun = TRUE. before gpselout.
  12. Marco Mendoza

    Passing File To "output" Option

    On gpselout.i use the "device" parameter. /* OUTPUT DESTINATION SELECTION */ {gpselout.i &printType = "printer" &printWidth = 132 &pagedFlag = "NOPAGE" &stream = " "...
  13. Marco Mendoza

    Problem In Reading A Text File

    Workaround: Add a carriage return or line feed to your file. OUTPUT TO yourfile.txt APPEND. PUT SKIP. or PUT CONTROL CHR(13) CHR(10). OUTPUT CLOSE.
  14. Marco Mendoza

    Cim Load Or Q-doc For 7.9.1 - Picklist / Pre-shipper Automatic

    Do you can share a cim file example? It sounds like something is wrong on it.
  15. Marco Mendoza

    Question Add "total By" To A Variable

    for each ld_det no-lock break by ld_part: accum ld_qty_oh (TOTAL BY ld_part). end. display accum TOTAL ld_qty_oh.
  16. Marco Mendoza

    Abl Schools

    Thank you Joey, is not for me, is for an Internship program, we would like to start hiring students with ABL knowledge.
  17. Marco Mendoza

    Question Printing

    Read the printer's technical manual; it's all about control codes.
  18. Marco Mendoza

    Abl Schools

    In the company we have Internship program, and I would like to start hiring students for small ABL projects.
  19. Marco Mendoza

    Abl Schools

    Hello, What schools (universities) teachs ABL? Are there a database that we can access? By country maybe?
Back
Top