Search results

  1. Marco Mendoza

    Count results in for-each

    Can I add i = 0 before the for each? lol
  2. Marco Mendoza

    Create a table using a variable?

    I don't fully understand your question, but maybe this example can give you some ideas, (be sure you are not using -q parameter) DEF VAR xtable-name AS CHAR NO-UNDO. xtable-name = "table1". OUTPUT TO temp.p. PUT UNFORMATTED "INPUT FROM table1.d." SKIP " REPEAT:" SKIP " CREATE " xtable-name...
  3. Marco Mendoza

    Answered What is the proper usage of gpbrparm.i?

    how can we know if you don't explain the steps you was following? Guess? My guess is you are not following correctly the steps :p
  4. Marco Mendoza

    Data buffers

    Another approach OpenEdge 11.7 Documentation
  5. Marco Mendoza

    Resolved sending outlook mail with graphics

    The image src that you are using is local (C:\image.jpg)? Do you tried with an Internet visible http://xxxx.xxxx/image.jpg image?
  6. Marco Mendoza

    Data buffers

    As this was Quiz question Two. Frame buffer and record buffer. OpenEdge 11.7 Documentation :p
  7. Marco Mendoza

    Remove unwanted large spaces in string value

    DEF VAR i AS INTEGER NO-UNDO. DEF VAR c AS CHAR NO-UNDO. c = "your text". DO i = 1 TO 15: c = REPLACE(c," "," "). /* first "" with 2 spaces, second "" with 1 space */ END.
  8. Marco Mendoza

    Ads

    I see the sponsor word in Rob and tamhas name, but I don't see it on yours Tom. I see just the word "Curmudgeon". Maybe your sponsorship status ended.
  9. Marco Mendoza

    Why Find schema trigger will execute before session trigger?

    I suggest you to write the question to Forum - OpenEdge Development - Progress Community, it is common to receive responses from Progress staff and it seems only they know why is designed on this way.
  10. Marco Mendoza

    Question will speedscript\webspeed commit the data without refreshing the complete page

    With refresh option, on a "input type hidden" keep the "id" of the last field posicionated; and when the page is refreshed, use the javascript focus() to focus on the field. With no refresh option, you could use jquery ajax, and call another webspeed program that update the database with the...
  11. Marco Mendoza

    Difference between Put and Export

    4.- With export you have an automatic break line, with put you must do an "skip". 5.- export take care if data contain delimiter character or quotes, with put you must take care of it
  12. Marco Mendoza

    Browse formula

    ((pt_prod_line = "95") or (pt_prod_line = "86" AND pt_part BEGINS "5A")) and wo_status = "R"
  13. Marco Mendoza

    Question How can Backflush not generate the FG (i.e. No RCT-WO) after consuming the parts (i.e. successful ISS-WO)

    For #2 use the vanilla program that allow zero for rct-wo For #1, as your program is custom, you can add validation for rct-wo and iss-wo was created, if not you can undo the transaction. How can you validate rct-wo and iss-wo?: ON WRITE OF tr_hist and validate both tr_type iss- and rct- was...
  14. Marco Mendoza

    copy file from window server

    If you have ftp access to your unix server you can write a .bat file and call it from abl with os-command.
  15. Marco Mendoza

    Question anyone can give an idea/code updating HTML table content (- from progress table for each loop ) through an embedded sped script

    The call to "myFunction" does not work as you think. MyFunction is javascript code, not ABL code.
  16. Marco Mendoza

    Question How can Backflush not generate the FG (i.e. No RCT-WO) after consuming the parts (i.e. successful ISS-WO)

    Works as designed. If you select "Modify Backflush" you can modify the "Recepit Data Input" qty, and write Zero; this way only ISS-WO will happen and not the RCT-WO; btw, you can do the opposite too, RCT-WO happen and the ISS-WO no. For revert you can do it on the same way.
  17. Marco Mendoza

    ticket waiting

    Sort by time (ambiguous answer for an ambiguous question :p )
  18. Marco Mendoza

    Break by on multiple fields

    Try only checking the last field: FOR EACH < Table Name> Break by Col1 by Col2 by Col3 by Col4 by Col5 by Col6 by Col7 By Col8 by Col9: IF First-of(Col9) THEN DO: Initialize variables. END. Calculation part. IF Last-of(Col9) THEN DO: Printing the report row. END.
  19. Marco Mendoza

    Wanted to know the effects of Re-Defining the Bill of Material (Product Structure) with new set of components

    Instead delete try to expire the BOM seting "End Date" value. There are not direct impact if you delete the BOM, but for historical purposes is better to expire it. Note: If you have custom reports, need to be sure all queries to BOM (ps_mstr table) are using ps_start and ps_end values correctly.
  20. Marco Mendoza

    Question Import from a dynamic CSV

    For the ^M yo can use something like this: Converting Text Files for Use on DOS or AIX Using sed, enter ^M on the command line by using the key sequence Ctrl-V followed by Ctrl-M. sed 's/$/^M/' <filename> > <newfilename> UNIX -> DOS sed 's/^M$/$/' <filename> > <newfilename> DOS...
Back
Top