Search results

  1. Marco Mendoza

    Question Import from a dynamic CSV

    DEF VAR campos AS CHAR EXTENT 1000 NO-UNDO. .....code.... IMPORT DELIMITER "," campos. /*validate first column*/ IF campos[1] ... THEN NEXT. .....code....
  2. Marco Mendoza

    CIM Load PO "~" not working correctly?

    "03/26/19" ~ "04/05/19" ~ "CANDICE" ~ Be sure the ~ is the last character from each line, Im pretty sure you have an extra space or other hide character. Another suggestion, never use "run " for external programs; always use "gprun.i"
  3. Marco Mendoza

    Product structure in XML format

    https://documentation.progress.com/output/OpenEdge113/pdfs/dvxml/dvxml.pdf
  4. Marco Mendoza

    Using PRESELECT EACH

    Always! Let's see if KrisM can see the other typo.
  5. Marco Mendoza

    Using PRESELECT EACH

    " do for /*customer*/ updCustomer transaction:"
  6. Marco Mendoza

    Question Repeat for and do for

    The difference between a block that should or should not update something and continue vs a block that should or should not update something and repeat.
  7. Marco Mendoza

    Running QAD mfg/pro program using mbpro, do I need mf.p to run in the script?

    The mf.p program initialize global shared vars. You can't run directly a qad program. You must create a xxdummy.p program, and do somthing like this: xxdummy.p input from file.in. output to file.ou. run mf.p. ouput close. input close. And file.in must have something like this: "theuser"...
  8. Marco Mendoza

    Help please!

    Review it the webspeed log file, so you can see what is the error.
  9. Marco Mendoza

    Webspeed - Treeview Nodes

    Attached yo can see a bill of material visual tree that we made with webspeed and javascript. (I cross out some information for privacy reasons). We use this javascript program orgchart samples
  10. Marco Mendoza

    Error OVERLAP FACTOR

    Google it Progress KB - Incremental backups: Do they include full backups?
  11. Marco Mendoza

    Question Extent fields and date calculation failure. Looking for the original thread.

    You can't. "lastknowndate - currentknowndate + 1" returns an integer value.
  12. Marco Mendoza

    Upload PDF on webpage

    Is not necessary javascript. With the input type file the browser will upload the file into your server. On the directory defined in your broker setup. For binary files is necessary a setup. Progress KB - How to upload binary file through Webspeed? Progress KB - How to upload files in PASOE/web...
  13. Marco Mendoza

    Upload PDF on webpage

    use input type file HTML input type="file"
  14. Marco Mendoza

    Question Event Listener

    abl events
  15. Marco Mendoza

    the Progress SanityChecker Procedure.

    Doesn't work with letters on proversion, like 10.1C
  16. Marco Mendoza

    Error in 4GL

    try assign l_nbr = xxgstdc_nbr l_date = xxgstdc_effdate. And add INPUT to: " xxgstdc_mstr.xxgstdc_domain = global_domain and INPUT FRAME a xxgstdc_nbr"
  17. Marco Mendoza

    Comment Never seen this before on a FOR EACH statement.

    We can change the default event behavior for the three basic blocks, DO, FOR and REPEAT.
  18. Marco Mendoza

    How to add combo box on webpage to assign value from table field?

    Wrong, on "Select" the value passed is on the "option" not in the Select itself. First, I would add xxac_active on a mem variable; let'say "isactive": isactive=if available(xxac_mstr) then xxac_active else false. After that: <td> <select id="fld_xxac_active">...
  19. Marco Mendoza

    hi_char value

    Yes, should work. On mfgpro "hi_char" (and hi_date low_date) are calculated this way (Just for make sure hi_char is the highest value.): hi_char = chr(1). do i = 2 to 131071: if chr(i) > hi_char then hi_char = chr(i). end. assign hi_date = 12/31/3999...
  20. Marco Mendoza

    How to make a form in progress chui?

    share your code
Back
Top