Recent content by Kalyansid

  1. K

    Extracting Table Data

    Thanks Tom. Do you have any workaround for Progress Ver 9.1d. Will this work?
  2. 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...
  3. 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.
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. 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
  9. K

    Problem with gzip

    Hi Cecil, I am trying to view the file using winzip. On opening the file, the layout gets changed and it looks wierd. Before gzip the file opens perfectly fine. Only after i gzip the file, then ftp it to a remote server and then unzip it i am not able to see the file properly as before. I...
  10. 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
  11. 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
  12. K

    Extracting table data and its column names

    Thanks Sikandra. I modified a bit and it works. The code snippet only displays field names using _field-name. Do we have a different keyword to fetch field labels. thanks for help. regards,
  13. K

    Extracting table data and its column names

    Hi Tom, I ran the query given by you. find _file no-lock where _file-name = "ad_mstr". output to value( _dump-name + ".hdr" ). for each _field no-lock of _file break by _order: if not last( _order ) then put _field-name + ", ". else put _field-name skip. end. for...
  14. K

    Extracting table data and its column names

    Thanks Tom and Stuart. This helped me a lot.
  15. 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...
Back
Top