Search results

  1. B

    Question Question on progress procedure mode

    Sorry for the late answer all @TomBascom this is maybe a more detail structure of what is down: RUN SCRAP-MOVEMENT. RUN LOG-SCRAP-DATA . PROCEDURE SCRAP-MOVEMENT: FOR EACH TTSCRAP NO-LOCK: do something with a closed code include file (closed code by the editor) END. END...
  2. B

    Question Question on progress procedure mode

    So to take it from the start, we have a program that register scrap information in two steps: 1. Register all scrap movement on the movement table 2. Register complementary data on the scrap table This process work 99.99% of the time. But for some reason in 0.01% of the time we have 1. Register...
  3. B

    Question Question on progress procedure mode

    Also, is there other think that can interrupt a procedure, and I'm not talking about "LEAVE" or "RETURN" and other progress keywords. I'm a bit at loss on this matter, 99.99% of a time my procedure run smoothly, but 0.01% goes wrong . And I don't know why. They did the same process on the same...
  4. B

    Question Question on progress procedure mode

    Is there a way to know that something is already running and blocked the timer or to replace it by something else ?
  5. B

    Question Use android camera device

    Hello, As everyone ever done an app that is on windows rdp session on an android device and uses the camera with a progress app ? Something like a KEYENCE trakker device. Strucure Best Regards
  6. B

    Question Question on progress procedure mode

    Hello, I'm running progress OE11 and have a question. I have a program that is used to keyed scrap movement. It work like this: 1. First procedure we add movement to our Movement table 2. We logged the scrap in our scrap table While this another app is running on the same prowin32 and do...
  7. B

    Question Developper Studio Settings

    Hello, I'm starting to use progress developper studio for openedge, and I have some question. For our actual way of work, we launch our ERP and run the appbuilder from it, so some handle are initialize by our ERP. I'have manage to setup workspace and project. When I tried to run a Win program...
  8. B

    Question DB Schema designer

    Hello, While working on a new app, I was wondering if any of you work with DB Designer tool to illustrate there thought and work on DB schema? Best Regards, BobyIsProgress
  9. B

    Question Buffer copy

    If you mean by rowpointer the unique id of the row then yes you will to exclude it otherwise you have an error about unique id of your record
  10. B

    Question Crystal Report COM-HANDLE

    I was hoping that someone have it. I'm struggling finding it on SAP website ... I tried this kind of method name and it doesn't work.
  11. B

    Question Crystal Report COM-HANDLE

    If I understand correctly the DELETE OBJECT should do the tricks, but it seems that the SQL connection open by the report is still active. Have someone already solved that ?
  12. B

    Question Crystal Report COM-HANDLE

    Hello, I have a function that extract a report by Crystal Report and export it in pdf. I'm looking for way to close the Crystal Report before killing the object. There is my sample code: DEFINE INPUT PARAMETER rptNumenr AS CHARACTER NO-UNDO. DEFINE INPUT PARAMETER rptChemin AS CHARACTER...
  13. B

    Answered Way of code

    Hello, Thank you for your answer. As of today no, we are limited by our ERP vendor. But in the future our vendor is willing to modernize the software and progress version and so PASOE will come naturally. That is why I was thinking ahead of time by starting to develop our specific the right...
  14. B

    Answered Way of code

    Hello Guyz, I have to evolve on my way of programming. I'm working with the appbuilder on progress 10.2B05. Until today I make a Window file (.w) and code GUI work and DB reading in the same program. I know that it's more conventional to separate GUI interaction and DB interaction in different...
  15. B

    Question Query Performance Part 2

    Thank you @TomBascom I just did a comparaison with what you explained. In fact I was missing the syntax to select fields for the for each query and try it. On the main request I have an improvement of 9 times. That is a huge one. Best Regards.
  16. B

    Answered Invisible File by Windows OS

    The application that was causing that run on arround 300 hundred computer 7days a week 24hours a day. And we had two cases of this growing file causing by this app in less than a year but without a way to know the exact reason of this growth. I'm pretty sure that the "NO-UNDO" was the root of...
  17. B

    Answered Invisible File by Windows OS

    Thank you @TomBascom . After checking some kb and info from progress knowledge base, I know that for my version the limit size of DBI file is 1Tb. I also know that the growth could be caused by non using "NO-UNDO" on temp-table definition.
  18. B

    Question Query Performance Part 2

    Not at all and will try that thank you Stephan :)
  19. B

    Answered Invisible File by Windows OS

    So thanks to you we watched the IO caused we had the case again and it's the DBI file of a user that was growing at huge pace. So I will have to work on that.
  20. B

    Question Query Performance Part 2

    Hello, While doing a new project I was testing something on performance, there is two way I tried: I used CUSTOMER table as exemple, but for my case I have a table with 30 fields and only need 6 of them. Also I'm reading around 6K records. It appears that the traditionnal FOR EACH block was...
Back
Top