DEF VAR campos AS CHAR EXTENT 1000 NO-UNDO.
.....code....
IMPORT DELIMITER "," campos.
/*validate first column*/ IF campos[1] ... THEN NEXT.
.....code....
"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"
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.
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"...
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
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...
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">...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.