Search results

  1. greeshma

    Self Join Json

    Is it possible to generate json as above in progress open edge. I am using 11.7 version. Appreciate if you can provide me any sample codes for slef join json.
  2. greeshma

    Serialize-name For Dynamic Temp-table

    Hi, /* Add field to temp table */ ASSIGN run-ok = hTT-data:ADD-NEW-FIELD(hField:NAME, hField:DATA-TYPE, hField:EXTENT...
  3. greeshma

    Single Search For A Table

    Dear all, We are in a development phase of new product. In screen designs all table is having only one search screen. Is there any way in progress where we can search all columns with matching search criteria.
  4. greeshma

    Calling Webservice With Wsdl File Throws Error

    Hi All, I am trying to call an external wsdl url. Sample code is given below. I am able to connect. But in second run (RUN ipAction IN hPortType), i am getting below error. Input is an XML. Expecting a xml having base64 data in one of the element in response xml which needs to converted to pdf...
  5. greeshma

    Adding STX ETX to XML in 9.1D

    def VAR hDoc as handle no-undo. /* hDoc contains XML */ DEF VAR v-result AS LONGCHAR NO-UNDO. DEF VAR mPointer AS MEMPTR NO-UNDO. ll = hDoc:SAVE("LONGCHAR",v-result). v-result = CHR(02) + v-result + CHR(03) . COPY-LOB FROM v-result TO mPointer NO-CONVERT . The current...
  6. greeshma

    XML hDoc:save returns error 9082 in OE 10.2B

    Hi , Development team is in version OE 10.2B . When we try to save an xml it returns error "X-NODEREF or X-DOCUMENT save got an error "Attempt to re-declare namespace prefix "for name space" in element in ICCTransactionRequest . It is already declared for name space http://servebase.com...
  7. greeshma

    Perfomance Issue

    From a gui program , with appserver routine i am calling a program in character. CREATE SERVER hAppServer. v-as-connected = hAppServer:CONNECT( g-aspf-val ) NO-ERROR. empty temp-table tt-sales. RUN asloadTT.p ON SERVER hAppServer (OUTPUT TABLE...
  8. greeshma

    ajax to webservice json passing

    Hi All, we are in between a new development where front end will a web browser. server is openedge 10.2B. from the browser value is passing to webservice as json. From ajax they are posting to url of webservice which ends in program name wsdxi.p, which is progress oe 10.2B. inside that program...
  9. greeshma

    Different font style printing

    Hi, Is there any possibility to achieve different style in one singe page using progress. def new shared stream report. DEF VAR v-ans AS logi . DEF VAR v-pg-length AS INT INIT 10 . SYSTEM-DIALOG PRINTER-SETUP NUM-COPIES 1 UPDATE v-ans. output stream report to PRINTER NUM-COPIES 1 paged...
  10. greeshma

    String Comparison

    Hi All, I am trying to get print job status of a selected printer using WMI. My printer is not connected to system and printjob's can be viewed from start-> device and printers -> see what's printing. There jobstatus is displaying blank. But in my program it returns value "?". I tried...
  11. greeshma

    How to get printer status

    Hi All, I am trying to do a bulk print to Zeebra card printers. I have written a DLL to set font and size. There is hardware issue with that printer and it will return error "Magnetic encoding error". This error cames after printing 20 cards, so 21st card will be blank and from 22nd card will...
  12. greeshma

    Chip and Pin Card Reader

    Hi All, We were using magnetic card readers for reading Credit Card Data. We are using Ms-dos command "mode" to get data from reader. Now our client wish to move to chip and pin reader .Any one have worked with this hardware? Is same way("mode") will work on this? I am working on Progress...
  13. greeshma

    proparse - how to configure c++ library

    I was trying to configure prolintver 73 in linux env Downloaded and Configured prolint directory in propath Downloaded proparse(linux compatible) with libproparse.so and file libproparse.so placed in /usr/lib directory changed proparse.p procedures to point libproparse.so instead of DLL file...
  14. greeshma

    BI exceeded

    Hi All, My client db went down this weekend due to issue "there is no space to exceed bi". 2GB is the size given for bi.We have sheduled a back up of server in every hour. At that situvation i tried to truncate bi (without forcefully) , but that returned a error.(Sorry i dont remember error...
  15. greeshma

    Question Inetgrate prolint with Round table

    Hi All, We are using RTB as program version management system in Linux server. Is it possible to integrate Prolint with RTB and How? Can you please suggest me any links or documents related to this topic. Thank you.
  16. greeshma

    XML is throws error invalid char 9082

    create X-DOCUMENT hDoc. CREATE X-NODEREF hRoot. hDoc:CREATE-NODE(hRoot,"12","ELEMENT"). This statemt throws an error "X-NODEREF or X-DOCUMENT CREATE-NODE got an error: An invalid character was specified. (9082) " Cant we add numeric character as first element?
  17. greeshma

    Question Prolint setup for OE Architect/Eclipse

    Can any one help me to setup prolint for OE Architect/Eclipse. I have downloaded prolint_74.exe from oehive.org and extracted in a directory like C:\p4gl\tools\prolint. I am using OE10.2B
  18. greeshma

    Error Read-json - Euro symbol load

    Read-json throws error while reading long char having "€" (Euro symbol). Error is given below.Please suggest any solution. Unable to convert JSON to native data type for field ''<field> in temp-table ''<table>. (15363) The JSON string for the temp-table field was not a valid string...
  19. greeshma

    GPG Decryption

    Hi, Is any one familiar with GPG encryption and decryption. We are using GPG for Credit Card encryption and Decryption. The problem is when i run decryption for around 1000 records, 3 or 4 returns null vale (decryption fails) . If i run decryption after some time with the failed data , it...
  20. greeshma

    £ prints as character ù

    Hi All, Wheneve i prints £ , it comes as ù from printer. So i thought the problem is with printer and i tried printing £ from a notepad through printer , but that succeeded printer output was £. I think the problem is related to the unicode value. Below given is the piece of code i tried...
Top