Recent content by ovf

  1. O

    QAD EB to SE migration

  2. O

    Pause Statement in Net

    I would try: {pxmsg.i &MSGTEXT = "'Ready to continue" &ERRORLEVEL = 1}
  3. O

    Question Triggers in Maint Purchase Order

    Hi I would use the following logic: ON "GO" ANYWHERE do: if can-query(self, "frame-name") and self:frame-name = "b" then do: widget-walk, and validate, if validation fails: do: message "fail message". /*use QAD message include */ return no-apply. end. end.
  4. O

    Converting CHUI wrapper programs compatible in QAD Dot Net

    Hi Vimal, I used similar techniques a few years ago. (not NetUi). After converting to NetUI - this is not possible anymore! If I remember correctly From NetUi you can act on "GO, F9 (Cursor-UP), F10 (Cursor-Down)" that's it! Unless you force the program to run in terminal mode only. So a...
  5. O

    cmt_indx

    You must remeber to have cmt_ as the last table! Regards Ole
  6. O

    Triggers are not working during the CIM file upload?

    I'm sorry but that will not change anything. The batchrun variable only change how qad programs work (not triggers!) Regards Ole
  7. O

    Triggers are not working during the CIM file upload?

    As I recall it - that kind of triggers does not work in "Progress BATCH Mode". Regards Ole
  8. O

    First instance of the Inventory, lot location being added

    I would try adding: USE-INDEX tr_serial. Regards Ole
  9. O

    Wrapper program function not working in GUI

    I think the problem is in mfdtitl1.i /*Standard ON ENTRY OF CURRENT-WINDOW ANYWHERE PERSISTENT RUN P-HANDLE-ENTRY IN global-drop-down-utilities. */ /*OVF */ ON ENTRY OF CURRENT-WINDOW ANYWHERE DO: APPLY "U10" TO SELF. RUN P-HANDLE-ENTRY IN global-drop-down-utilities. END. Now You...
  10. O

    How can I prevent the user from changing WO status?

    I would imagin that a wrapper program like: {mfdeclre.i} DEFINE BUFFER bpt FOR pt_mstr. ON ASSIGN OF wo_mstr.wo_status OLD ostatus DO: IF OSTATUS = "F" and can-do("R,C",wo_mstr.wo_status) THEN DO: FIND bpt WHERE bpt.pt_part = wo_mstr.wo_part NO-LOCK NO-ERROR. IF AVAILABLE bpt AND...
  11. O

    sending mails using mailx command unix env

    Unix example: echo ${MESSAGE_ed} | mailx -s "${SUBJECT_ed}" -c ${CC_ed} ${RECIPNT_ed} Note: -c "CC addr" is what you need. Ole
  12. O

    Applying OCX events

    Hi, In my case can (CodeJock), I can activate vis Properties and sometime Metholds. Regards Ole
  13. O

    MRP Inquiry

    Hi, It is very common to change MRP Inq. In your case I would add the status of the Work order to the display. Ole
  14. O

    Work Order

    Hi, MRP will only change Workorders in status "P". It is more likely that the users has changed it manually, or that you have another program that changes the order status. Regards Ole
Top