openedge

  1. M

    Question how to display browser fields dynamically

    I'm displaying temp-table fields in a browser using free form query. i have 10 fields in my temp table but i want to hide and show some fields based on a condition i have tried this below code on row display of browse trigger , but i'm getting the error as you can see in the picture. DO...
  2. A

    Full row from CDC

    Hi! I'm working on a BI team responsible to retrieve data from OpenEdge using CDC. We are usually fetching the entire row when a change happens, but I've been digging through the documentation and I can't find such an option for CDC and OpenEdge, am I missing something or is this not possible...
  3. M

    Question How to add fields to a temp table by using its handle (it can be either temp-table:handle or temp-table:default-buffer-handle)

    -this is the method in my class -either i can get temp-table:handle or temp-table:default-buffer-handle -is it possible to create field in both cases if not how do i can approach in other way METHOD PUBLIC VOID loadFilesFromDir(INPUT cipDir AS CHARACTER , INPUT iphbufhandle AS...
  4. M

    Question How do i know its a valid directory and how i can know the handle belongs to a temp table

    METHOD PUBLIC VOID loadFilesFromDir(INPUT cipDir AS CHARACTER , INPUT iphbufhandle AS HANDLE ): DEFINE VARIABLE cFile AS CHARACTER NO-UNDO. DEFINE VARIABLE cFilePath AS CHARACTER NO-UNDO. DEFINE VARIABLE cFormat AS CHARACTER NO-UNDO. INPUT...
  5. JoseKreif

    Answered random() seeded with a specific value on database connection

    Progress OpenEdge 10.2B Platform: Redhat I'm noticing that the random() function seems to be seeded with a set value when you first connect to the database. For example, def var i as int no-undo. do i = 1 to 10: display random(1,100) with no-box 10 down. down. end. Produces...
  6. kasundha

    Speedup For Each Code

    Hi, I have a openedge code and it gets more than 10 hours to run. first table has 40K + records and other tables have about 5 records per each record of first table. can you give me any suggestion to improve the efficiency of this code. -------------------- FOR EACH corpdata.ArrearsRpt...
  7. J

    ABLUnit testcase for multiple inputs

    ABLUnit testcase wrapper for multiple inputs is not working as expected. For example : I wrote the test case for complete Customer detail Information Validation and having 1000 Customer ID detail in input CSV file (which is the actual result expected) . In ABLunit sampletest.p i'm reading the...
  8. A

    jQuery events are not invoking in WebSpeed(HTML Mapping)

    Hi, I want to use jQuery in existing webspeed application, that was developed in HTML mapping, currently this application is using HTML, CSS, JavaScript and Progress. But now i want to use jQuery in this but jQuery events are not invoking. Could you please help me on this. Thanks & Regards...
  9. Sayanil Datta

    Getting frequent errors from SQL Server 2016 while connecting to progress database using openedge driver

    Getting frequent errors from SQL Server 2016 while connecting to progress database using openedge driver: 1)An error occurred while preparing the query "Select * from XXXX where XXX.XXXXX='XXXXXXX'" for execution against OLE DB provider "MSDASQL" for linked server "ProgressDB". 2)Cannot execute...
  10. N

    Question Openedge Software Support

    Hi everyone - I am evaluating different software platforms and I wanted to see how well OpenEdge compares to other offerings in the marketplace. Curious to see how the company has done in terms of investing in the product - do they provide relevant updates to the software as well as support...
  11. G

    Question Slow Database In New Server

    Hi, recently we change our databases to a new server but the startup and the queries are extremely slow, even tho the hardware is better than before. We lack knowledge about databases, we manage our clients services and remote connection as well as other services but we do not know about...
  12. R

    How To Get Screen Value Of A Pervious Field In The Next Field In A Form?

    Def var v-loc as char no-undo. Def var v-enddate as date no-undo. Def var v-routerpubs as char initial “/homs/cbcbc/” no-undo. Def var v-newrouter as char initial “/home/hgda/” no-undo. repeat: form " LOCATION : " v-Loc help "Enter Product, or Press F2 for lookup."...
  13. B

    Answered Oe Replication Extents

    HP-UX B.11.31 (Itanium) Progress 10.2B. Hi, I'm looking into implementing OpenEdge Replication Plus on HP-UX. I've been reading through some of the documentation and some forums posts. I'm unclear on a few points and I'm hoping somebody might be able to set me straight: - Is it better to use...
  14. N

    Very Urgent Issue. Kindly Reply Asap

    We are trying to login into QADEE using a cim file. {mfdtitle.i} INPUT FROM "/Oa/users/123.cim" . OUTPUT TO "/Oa/users/iltscript.out". RUN mf.p . OUTPUT CLOSE. INPUT CLOSE. 123.cim contains the details of the users its password domain and the program to execute. "userid" "password" "domain"...
  15. J

    Materialized Views In Progress

    Hi, Is it possible to create materialized views in progress openedge. if it is possible, how can we create it. please suggest me. thanks.
  16. N

    Error While Resolving The Issue

    Hi all, I have an isuue, can anyone help me buddy. with the concern explaination Requirement: 1) To delete terminated orders codes from requested status of active order records,These are appearing while doing the active orders. 2) Also, Need to prevent the system from selecting the...
  17. B

    OpenEdge Developer

    Wyman-Gordon, located in Grafton MA, is a major industrial manufacturer serving a wide range of industries including aerospace, power generation, and industrial businesses. Wyman-Gordon Grafton is a 1 million sq. ft. manufacturing facility with a 50,000 ton press, 35,000 ton press and 18,000 ton...
  18. Chris Kelleher

    Progress OpenEdge Documentation Set for Dash Documentation and Snippets Browser

    Updated Documentation for 11.5/11.6/11.7: I have created a docset library for the OpenEdge documentation, to make it easy to view and search the documentation easily offline. This is compatible with Dash. Dash is an API Documentation Browser and Code Snippet Manager. Dash stores snippets of...
  19. J

    Progress OpenEdge 11.4 issue with table names

    we are using progress openegde 11.4 database and ibm cognos10.2, when we are importing tables (consist of underscore(_) like Emp_Info) from progress to cognos frameworkmanager tool to create the model, it is giving the below error [DataDirect].[ODBC Progress openedge wire protocol...
  20. davidvilla

    Question Dynamic Field Handle for array fields

    Hi I am trying to set fields dynamically in a table with array fields. I am not sure, how to represent an element of the array field when setting the field handle. Here is my example. define temp-table tt1 fields fld1 as int extent 3. define variable bh-tt1 as handle no-undo. define variable...
Top