Recent content by rajesh4you

  1. R

    F4 is not working in WRQ reflection s/w

    please help me... In WRQ reflection software for MFGPRo, the F4 trigger is not working... I had written a trigger program on WO release. Once whatever the WO's are released...i.e., if the status changes from 'f' to 'r' then some extract should generate...while releasing the file will be with...
  2. R

    First instance of the Inventory, lot location being added

    Hi All, I have a requirment to find date of the first instance of the Inventory, lot location being added. For this my logic is as below: FOR EACH ld_det: FOR FIRST tr_hist NO-LOCK WHERE tr_serial = ld_lot AND tr_loc = ld_loc AND tr_part = ld_part BY tr_date : ASSIGN v-date = tr_date.END...
  3. R

    server or the system has no more resources

    Hi All, I am getting the below error when trying to connect a DB. Please anyone throw some light. "The server or the system has no more resources. Please contact Progress Technical Support. (748)"
  4. R

    problem with combo-box

    Its working. thanks a lot.
  5. R

    problem with combo-box

    Hi All, I am having a doubt. I am trying to use COMBO-BOXin my program. When I selected one of the item and try to move to the next field by pressing enter, it is not going. when I press F1 it is moving to next field. Is the limitation of COMBO-BOX or is there any way to resolve this issue...
  6. R

    Count of pages

    Is there any function to display the no. of pages the output of a report occupies before displaying it?
  7. R

    Stack Overflow Issue

    Hi Tom, The procedure is below. For this procedure the input is a lot number where tt-lot is a temp-table. PROCEDURE lotTrace: DEFINE INPUT PARAMETER ip-lot LIKE tr_lot. DEFINE VARIABLE v-lot AS CHARACTER NO-UNDO. FOR EACH tr_hist WHERE tr_serial = ip-lot AND...
  8. R

    ** already has a conflicting use. (99)

    Hi friends, Please throw some light on the below error if possible with an example. "** already has a conflicting use. (99)" For me the <file-name> value is coming blank.
  9. R

    Stack Overflow Issue

    Hi friends, Case: One lot no. is given. For this lot no. I have to process all the ISS-WO transaction in the tr_hist table and for each new lot from this I have to process the ISS-WO transactions like this(like a tree) it will continue until no ISS-WO transactions found for a lot. This can be...
  10. R

    Read script variables in PROGRESS code?

    thanks buddy its working.
  11. R

    Read script variables in PROGRESS code?

    Hi Friends, Can anybody please explain how to use the variables defined in UNIX script in the PROGRESS code??? Assuming the script calls the PROGRESS code.
  12. R

    send an email using progress code

    hi sphipp, ya the link is broken and the code is working thank you. I need a slight modification. Can you modify the same code to have body for the email. Thank you.
  13. R

    send an email using progress code

    Hi Cecil, I am using progress 9.1D and UNIX system. I got the code UNIX SILENT echo "body" | mailx -s "subject" "emailid@domain.com". But I am having a problem with the below code. UNIX SILENT echo "body" | uuencode file1 file1 | | mailx -s "subject is here" "emailid@domain.com". When...
  14. R

    send an email using progress code

    hi friends, I need to send an email using progress code without attachement. Please help me.
Top