Recent content by sharkdim

  1. S

    Question how to get the another .p program's frame's handle and control it

    how to get the another .p program's frame's handle and control it such as =========== test.p /*want to control frame a which is defined in testa.p, i know the frame name ,and want to disable the frame a's field ccc's entry*/ /*need the help....*/ run testa.p ================ testa.p define...
  2. S

    how to create a new index use command line

    hello, i have a question: such as : when i dump a table ,i can use proutil mfgtest2 -C dump abss_det /data/dump ,the line is command line .... now , i want to add a new index for <Table> , what will i do? thanks a lot
  3. S

    how to dump the records useing dumpspecified

    it's bad news...... the attachment is the df and sample .d file could you give me a way to separate the records by tr_effdate?
  4. S

    how to dump the records useing dumpspecified

    i cannot find the way to solve my question when the index is composed of more than one fields, such as the table name is tr_hist the index name :tr_eff_trnbr built by :tr_domain + tr_effdate + tr_trnbr (3 fileds) could you give me the example ? thanks a lot ....
  5. S

    how to dump the records useing dumpspecified

    dgr.pdf Progress Database Administration Guide and Reference "PROUTIL DUMPSPECIFIED"
  6. S

    how to dump the records useing dumpspecified

    hello dears, our ERP system is QAD eB2.1 sp3 we want to dump the tr_hist (transaction history table) the record which the domain(tr_domain) is "1203" and the effective date(tr_effdate) is less then 2013.01.01(Jan 01,2013) the index is tr_eff_trnbr like this: tr_eff_trnbr 3 + tr_domain...
  7. S

    Export the fields value from a table to a string

    thanks a lot ,it's a good way to solve the problem, thank you very much
  8. S

    Export the fields value from a table to a string

    i want to export the fields value from a table ,to a string ,such as , i have a table like table :tt_mstr fields: tt_site as character format "x(10)" tt_line as integer format ">>9" tt_item as character format "x(25)" value tt_site = "10001" ;tt_line = 1 ; tt_item =...
  9. S

    Printing cim program

    maybe,you can use batchID mode to print the result
  10. S

    Customize Barcode 39 for EPSON

    have someone found the solution? i meet the same question..........
  11. S

    how to define and use dynamic delimiter when using import Statement

    entry function is a good way to resolve this issue or write a dynamic .p and run it to do with the issue.
  12. S

    how to define and use dynamic delimiter when using import Statement

    progress tell me it is not possible , i have found another way to resolve this question thanks
  13. S

    how to define and use dynamic delimiter when using import Statement

    sorry , it's input error , i have changed the thread , after remove double quote , the error "Invalid statement. (254)" is also displayed
  14. S

    how to define and use dynamic delimiter when using import Statement

    my program : define variable file_sep as character format "x(1)" no-undo. DEFINE VARIABLE aaa AS CHARACTER. DEFINE VARIABLE bbb AS CHARACTER. DEFINE VARIABLE ccc AS CHARACTER. ASSIGN file_sep = "|". input from d:\bbb.txt. REPEAT: import delimiter file_sep aaa bbb ccc NO-ERROR. MESSAGE...
Top