Search results

  1. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    hi Tom and Rob, first of all i thank you for the supports you gave given me. At last after many months, i found the mistake i've made. The Redhat is running on one CPU after using mpstat -P ALL. I've adjusted the CPU usage to 8 due to 8 cores and setup hyper threading to it. now the CPU usage...
  2. C

    Progress with XML or JSON ?

    sorry to ask Tom, any Progress notes i get to read to start on XML or JSON ? thanks a lot.
  3. C

    Progress with XML or JSON ?

    hi Tom, thanks for replying. We are using Progress Openedge 10.2b.
  4. C

    Progress with XML or JSON ?

    good evening everyone. Now in Malaysia, we are introducing e-Invoice which need to link up to Poppel using XML or JSON. i'm wondering whether Progress can come out with XML or JSON file for integration (which CSV is no issue). Thanks.
  5. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    Morning Tom. User will get this message.
  6. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    thanks for your advice Rob
  7. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    Morning Tom, thanks for your reply. My problem here is when concurrent users login at the same time, the _proapsv takes up to 10mins to release and as users keep logging in, it takes up to 60mins to release and CPU usage is up to 95%. Then users are unable to login and start to get errors. I'll...
  8. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    Sample when i login 20x
  9. C

    _proapsv high CPU usage in Redhat 6.6 (Resolved)

    Good evening people, need help here. I'm using Progress 10.2b in Redhat Linux 6.6 (64 bit). when multiple users (50) concurrently login , i notice many _proapsv (Progress Admin service) comes out and each eats between 9% to 11% of CPU, ending up the CPU hits 90%+. each _proapsv takes 5 mins to...
  10. C

    Resolved Idle Session don't refresh (Something different)

    Guys i found the problem. I found the semaphores memory allocation are not sufficient. so i increased from 50 to 500. cps = 50 10 instances = UNLIMITED per_source = 500 It works now. thanks.
  11. C

    Resolved Idle Session don't refresh (Something different)

    Another info is overnight all the idles go missing leaving i have to restart the services.
  12. C

    Resolved Idle Session don't refresh (Something different)

    Hi guys, Need help on this : Situation : 1. When login QAD connection manager shows only 20 even when i put min 30 session. 2. When user opens up 2 maintenance menus, the session shows 18 idle and 2 busy. And it doesn't create new idles to 20. Database Start up Parameters (DB version...
  13. C

    Resolved Command to Write into a PDF Template

    Guys, after some research. i found a much easier way to do this. easier than pdfinclude. All you need is pdftk. Basically : 1. Create a template with Logo, header, footer in Winword and save is as PDF - header.pdf. 2. Then using Progress to output to a file and use enscript and ps2pdfwr to...
  14. C

    Resolved Command to Write into a PDF Template

    you are great as always Mr Tom. i'll check this out.
  15. C

    Resolved Command to Write into a PDF Template

    thanks i'll check on this.
  16. C

    Resolved Command to Write into a PDF Template

    Guys, Need some help here. I'm wondering is there a way to write contents into a PDF template. Situation : I have a PDF template with only the Company Logo and Header on top 5 lines of the PDF. Since Progress outputs mainly character based , i was thinking of writing the statements into the...
  17. C

    programmable virtual keyboard development

    well, i did once and its very long coding. Here some snips : DEFINE VARIABLE key_ent AS CHARACTER FORMAT "x(1)". DEFINE VARIABLE full_keys AS CHARACTER FORMAT "x(50)". DEFINE BUTTON kb_a label "A" TRIGGERS ON CHOOSE key_ent = "A". END TRIGGERS. DEFINE BUTTON kb_b label "B" TRIGGERS...
  18. C

    Counting records

    thanks so much Rob.
  19. C

    Counting records

    DEFINE VARIABLE cnt AS INTEGER. cnt = 0. FOR EACH < Table Name > NO-LOCK BREAK BY document# : IF FIRST-OF(document#) THEN DO : cnt = cnt + 1. END. END. DISPLAY cnt.
  20. C

    Sharing variables across internal procedueres.

    global and shared have their values. i used them for QAD applications where the global variables feeds to Crystal reports. example, i can create one crystal reports and use the global shared variable userid to find his/her location and the report filters automatically instead of creating few...
Top