Search results

  1. D

    progress to .net

    Hi, we are in the process of converting certain progress programs to make it work on .net. Few programs have the "Pause 0" statements. Any idea, what can we replace 'pause' with? Regards, Div.
  2. D

    Installing progress on HP unix 11i

    openedge 10.2B The installation is giving a Error “sh: 9858 Bus error(coredump)”
  3. D

    Installing progress on HP unix 11i

    We are trying to install openedge on HP unix 11i server... We are getting an error on core dump....any idea how to resolve this? regards, Divya
  4. D

    How do we pass values into QAD's browse/view maintenance ?

    yes.... sure its using my browse program. though there is data that can be viewed in the browse, the browse comes empty...
  5. D

    Entity to Entity data transfer

    I think you can use 25.19.14 transaction export, 25.19.15 transaction import and 25.19.16 transaction post
  6. D

    How do we pass values into QAD's browse/view maintenance ?

    It is xxlu094.p since I am trying to create a look up browser...... This one also has a mfdeclre.i at the top. There are no syntax errors, however the browse is empty. Rgds, Divya.
  7. D

    How do we pass values into QAD's browse/view maintenance ?

    Dear Mosfin....... this is what I tried doing program 1 ---------------------------- {mfdeclre.i} define variable lc_po like prh_nbr no-undo. define variable lc_grn like prh_receiver no-undo. form lc_po colon 10 lc_grn colon 40 with frame a. update lc_po with frame a. assign...
  8. D

    How do we pass values into QAD's browse/view maintenance ?

    helloo.... Thanks for the reply. I have a field lc_po with purchase order number and it is followed by lc_grn - receiver number. Just before the update of lc_grn, I wrote assign global_ref = lc_po. In the where clause of the browse maintenance also I use, prh_domain = global_domain and...
  9. D

    How do we pass values into QAD's browse/view maintenance ?

    Hello!!! I have a customized program with a purchase order number and receiver number as input fields. When the purchase order number is keyed in, a browse at the receiver field should display only the associated receivers (belonging to the purchase order) ... Any idea how this can be done...
  10. D

    mfnp to fetch the values from 2 tables and display...

    You could just run the below from the QAD's progress editor. {mfdtitle.i} {mfnp16.i} The code will be displayed.
  11. D

    [ask] duplicate output

    It should be like this - each ih_hist will have multiple idh_hist records.... FOR EACH ih_hist WHERE ih_domain = GLOBAL_domain AND ih_nbr >= nbr AND ih_nbr <= nbr1 and ih_ship >= shto and ih_ship <= shto1 and ih_inv_date >= ord and ih_inv_date <= ord1 NO-LOCK : DISPLAY...
  12. D

    problem with import

    Hi , I have a CSV file with the below data 1000,1200,1300,100,charges 2000,1200,1300,-300,Charges input from "test.csv". repeat: import m_line1 m_line2 m_line3 m_line4 m_line5 m_line6. assign m_line_no = m_line_no + 1. input close. /* m_line1 m_line2 etc are local variables */...
  13. D

    CIM across domain

    Thanks Rgds, Divya
  14. D

    CIM across domain

    Does anyone know how to cim data across domain?? Rgds Divya
  15. D

    Cim to tax detail frame of sales order shipment program

    Hi all, I have a so line with multiple tax types .... when I use the arrow keys at the 'Trailer field' .... I am able to see different tax types and update the tax amount manually.... but i need to edit the tax amount via CIM..... I am unable to arrive at the CIM format...... Please lemme...
  16. D

    Exit icon

    Hi I have written a wrapper on one of the QAD's program. During the course of QAD program, I create and populate a temporary table with necessary data. When I exit the QAD program, I use my temp-table data and perform CIM to another program... When I select the "ESC" key.....cim happens...
  17. D

    How to take count

    isb_part = ib_sys_part isb_serial = ib_sys_serial isb_parent = yes isb_eu_nbr = ib_eu_nbr isb_ref = ib_sys_ref..... once u get this.... u can get all the count!!!!
  18. D

    How to take count

    in case ure looking only for the parent - child relationship....why dont you use ib_det ..... instead of defining a buffer!!!
  19. D

    problem with combo-box

    Hi .... try with this....... define variable lc_a as char format "x(18)" label "View" init "Detail" view-as combo-box list-items "Detail", "Summary". define variable lc_b as char. form lc_a lc_b with frame a. update lc_a go-on(return go) with frame a. assign lc_a =...
Top