Re: ODBC:Need to sort, but can't use ORDER BY because of Progress bug - How to use in
Just a note on this bug . Only the server needs to be updated to 10.1C to fix this . The 10.1B workstation will work fine and the bug is located server side.
I don't know if many people use this product and had good experience with it? I installed it on a AIX system and tried to connect 3 other system to it . Everything got setup properly and all "fmconfig -host <host> -enable" on all 3 other system completed succesfully. Admin Server got...
I think he wanted to have two distinct buffers to keep pointers on both records at the same time. Probably modification in one affects the second one.
I believe that this was more about learning how buffers work then how to create two records in the database.
Your are creating 2 new buffer for your temp-table then overwritting them with the handle of the default buffer handle of your temp-table. So both your handle point to the same BUFFER .
This code will do what you are trying to accomplish
DEFINE TEMP-TABLE ttVendorOrig LIKE vendor
FIELD...
One of the major change is the Unicode ActiveX change. .WRX created by version 9.1E did not work on progress 9.1D or lower.
There are also a few bug fix since 9.1D is probably the version with the most service pack released.
It called a preprocessor. The compiler replace that string with it defined value.
It either defined by this command
&GLOBAL-DEFINE SOIVRP10-P-TAG38 <value>
or by
&SCOPED-DEFINE SOIVRP10-P-TAG38 <value>
You can also learn it value with this command:
MESSAGE "{&SOIVRP10-P-TAG38}" VIEW-AS...
You could create 2 different broker with one broker dedicated to the App and one broker with 1 or 2 agent dedicated to reporting.
You can be sure that one will not prevent the other.
Have you tried:
update PUB.JobHead, PUB.Part
set PUB.JobHead.ProdCode = PUB.Part.ProdCode
where PUB.JobHead.PartNum = PUB.Part.PartNum and PUB.JobHead.ProdCode <> PUB.Part.ProdCode
You can always let the OS decide wich application to use to open the html file.
example
OS-COMMAND VALUE("start mypage.html").
It will use the default web browser to open your html file.
A simple question...
Will R-Code compiled in 10.1C work with a 10.1B Client?
I need to upgrade a DB Server for a stupid ODBC bug but i was wondering if we need to do all the stations.
Thanks
You got an error in your code:
function get_mdArray returns decimal ( input x as integer, input y as integer, input z as integer ):
find mdArray no-lock where mdArray.x = x and mdArray.y = y and mdArray.z = x no-error.
return ( if available mdArray then mdArray.payload else ? ).
end...
Your looking at the wrong spot . Casper suggestion about streaming the file as a binary stream was the perfect solution for your problem . You open the file , output the right header , and stream the binary data to the user .
The only part missing in his example is the right header type but...
From the cryptic message i seem to decipher that he wants this to run within a application without multiple login.
I *think* this means he wants to use a Timer and fire a program at different time interval.
This would mean that PSTimer is what you need to use. BUT be very careful because...
Your not linking to your file properly. You cannot put it in the Webspeed working directory and link to it like it was a webspeed program. Your server is trying to run your file like it was a webspeed page.
You have to put your file in the www root directory or a directory under that. Then...
I live and work in Canada but you will not find much opportunity here. The only thing we hear about are downsizing and lost jobs.
With the economic downturn, it hard to find company hiring , it even harder finding companies that are hiring abroad. You will need a exceptional skill set to...
Changing this
FOR EACH wo_mstr NO-LOCK WHERE
wo_due_date >= data_u AND wo_rel_date >= data_u AND wo_rel_DATE <= data_u1
AND wo_cc >= buyer1 AND wo_cc <= buyer2
AND wo_part >= part1 AND wo_part <= part2...
There is no real solution that exists in Version 9.
There is no datatype in version 9 that can receive a string longer then 32k.
Even if you broke down WebValue into different fields that didn't go over 30k , it wouldn't work because GET-CGI-VALUE receives all the fields that are submitted...
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.