Search results

  1. S

    How to close scheduled sales orders

    how can I set Sales Order status (so_status and sod_status) to "C" or "X" for a scheduled sales order?
  2. S

    Cimload of data fields containing blank

    When I try to do a Cimload for a field which contains a blank I get the error message "input too long" because system assumes that after the blank a new input field begins. I think my put statement is wrong. It's like following: put '"' field1'" ' '"' field2'" ' ...... If field1...
  3. S

    view frame pagefoot at page-bottom

    I've a program which looks like following: for each prh_hist : if first-of(prh_receiver) then do: ... end. if last-of(prh_receiver) then do: put prh_receiver ..... VIEW FRAME pagefoot. end. end. How could it be that the very last record doesn't show FRAME pagefoot if it's working for all...
  4. S

    showing frame on page-bottom

    the feature page-bottom shows a frame at each page. The coding if last-of(datafield) then do: view frame A page-bottom. end. is not working. It shows the frame at each page, not only if last-of(datafield) Is there anybody who can help me ?
  5. S

    global_userid within session trigger

    Hello, i have a session trigger which looks like: on write of ro_det old buffer bu-ro_det do: ............. display global_userid. end. Problem is that i am not able to show the global_userid. When i add program mfdeclre.i or when i try to define global_userid i get the error message...
  6. S

    trigger

    Hello, i have never worked with triggers for Progress Verison 9 and i have to do following: Whenever a datafield of a table (ro_det) changes i want to have following information: 1. what was changed (contents of datafiled vefore change + contents of datafiled after change) 2. when was the...
Top