Search results

  1. M

    auto batch job in mfg/pro

    Only missing the variable batchrun: INPUT FROM test1.in. OUTPUT TO c:\resulttran.prn. batchrun = yes. RUN mf.p. batchrun = no. INPUT CLOSE. OUTPUT CLOSE. Greetings
  2. M

    default distribution code

    When you press F2 the datas from the Account Code Maintenance (25.3.13) and they´re validated vs the relationship account, sub-account, cost center, and project if this existis.
  3. M

    PO Receipts

    Good. :blush:
  4. M

    string manipulation question

    For example: DEF VAR i AS INT. DEF VAR lv-temp AS CHAR. DEF VAR cad AS CHAR INIT "one,two,three,four". DEF TEMP-TABLE res FIELD r-field AS CHAR. i = 1. REPEAT: lv-temp = ENTRY(i,cad,",") NO-ERROR. IF ERROR-STATUS:ERROR THEN LEAVE. CREATE res. ASSIGN...
  5. M

    PO Receipts

    Is the same as a normal reception, but in the quantity to receive you must type this quantity in negative. Bye.
  6. M

    prh_hist conversion question

    In Eb2.1 MFG has a new table pvo_mstr (Pending Voucher Master) where are all vouchers related with receptions. This table you access with: pvo_internal_ref = prh_receiver and pvo_line = prh_line. If you want consult the historial then: vph_hist (Voucher Invoice History) where vph_pvo_id =...
  7. M

    PO Receipts

    For a line has been received like Memo, this should have been to part outside of Parts Catalog. Or in the PO wil be captured the type like M (Memo). Solution: You´ll need reverse the original movement with a negative receptíon. Later You´ll need to receive this line like type blank, to sure...
  8. M

    Comma delimited list

    Another options would be: OUTPUT TO report.dat. FOR EACH <table> NO-LOCK: EXPORT <field1> <field2 <field3>. END. The result is, for example: "A" "123" "Z1" "B" "456" "Z2" "C" "789" "Z3" Bye.
Top