Search results

  1. K

    Extracting Table Data

    Hi, Need your help on extracting table data on run time. The below query only gives field level information. But I need to extract data from a table given as input on runtime. FOR EACH _FIELD OF _file NO-LOCK WHERE _file._file-name = v-inp. EXPORT DELIMITER "," _FIELD. END. Please...
  2. K

    Displaying and Editing Multiple records along Scrolling pane

    Hi, I am not sure how to do this. Is it possible to display multiple records on screen with a option to edit or delete records. Thanks in Advance for your help.
  3. K

    Issues with Uploading a Multi line data file

    Hi, I got a peculiar issue. I have a data file with 3 lines of data and program skips the last line of data just because there is no carriage return after the last line. Is it necessary to have a carriage return after the last line of the data file for it be uploaded properly by the program...
  4. K

    Excel Cim load for Purchase Order Maintenance

    Hi, I need a Excel Cimload sheet format for Purchase Order creation to create CIM using QAD Cim tool. Please if anyone has it can you please email me the sheet @ kalyansid@gmail.com. regards
  5. K

    Streams limitation

    Hi All, Progress has a limitation on 5 output streams. In my program i had defined 4 output streams and a Standard Output. Progress seems to treat this standard output as stream and is not allowing me to define new stream citing limitation of 5. I need to define a new output stream. Is there a...
  6. K

    Is there a alternative on Assign Trigger for a field extent

    Hi, I am using Assign triggers to check for any modifications on table field values. It worked fine for all except for one of the field which is a array of 4 and I am not able to use the assign trigger on this array field. Is there any alternative way (trigger) to capture the change in array...
  7. K

    Printing on a streamserv printer

    Hi, I am trying to do a print on a streamserv printer through the Batch option in mfgpro. Though it works fine when we print directly from a menu it doesnt print when we print through a batch. Is there any setup which we need to take care while printing on a streamserv through batch. regards
  8. K

    Problem with gzip

    Hi, I have a problem when i gzip a file in unix. Before gzipping the contents of the .csv file get displayed properly. However after i had gzipped the file and then try to read the contents of the file, the layout looks very wierd. Please suggest... UNIX silent gzip VALUE(v-zipfil). regards
  9. K

    ERROR: Unable to find file: TMP400.out.

    Hi All, I am stuck with this problem today. My program creates master dump based on the input criteria. All of a sudden today i am getting a error as "ERROR: Unable to find file: TMP400.out." Any idea why this error comes. thanks & regards
  10. K

    Extracting table data and its column names

    Hi, I need help with my table dump. It is easier to dump a table. But I have to dump a table with all column names and its data i.e the column names in .csv format along with its data down below. Is there a way to extract column name as well as its data together. Right now i have to do a .df...
  11. K

    Webservices Error

    When I am running the below xml file through the SOAPUI2.5.1, I am getting the error response as shown. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:eagldev:eagldevWS"> <soapenv:Header/> <soapenv:Body> <urn:gzeaweb>...
  12. K

    Problem with Break By statement

    Hi, I am currently facing a problem with breakby statement. define variable v-sortby as char . form v-sortby with frame a. update v-sortby with frame a. for each ar_mstr break by (IF v-sortby = "I" THEN ar_nbr ELSE ar_bill): disp ar_mstr with 2 col. end. The above...
  13. K

    How to remove extra line of space when using PUT or Display

    Hi, I am stuck with this simple but tricky instance. I am trying to display a chinese column-labels and below them the english labels. I wrote it as below and it displays a extra line between the chinese and english labels. PUT UNFORMATTED v-per1 AT 2 v-day1 AT 6...
  14. K

    Got Problem with Output to RTF

    hi, i am not able to get data printed to RTF properly in a order. Can someone help me with this. Should i use tables. if so then please do give me some examples. i am currently using FORMAT "X(number)" to put data in a proper place in RTF. But it doesnt seem to work.
Back
Top