Recent content by DivyaRajesh

  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
Top