Search results

  1. ForEachInvoiceDelete

    Self Join Json

    You can build a dataset in the structure you want using data-relation and then use write-json. If that's what you mean.
  2. ForEachInvoiceDelete

    The Keyword forget list and other nuggets

    Rob's example would work fine in that instance. Slightly off topic. Does anyone know if the "of" keyword works cross database?
  3. ForEachInvoiceDelete

    Relational database in progress procedure

    Do you want to use multiple databases, or a single database with multiple tables linked to each other?
  4. ForEachInvoiceDelete

    Question Print bitmap in character client environment

    Its been so long since i have outputted to a printer like that! What i would do is generate a template invoice with a logo, add my text via 4GL and then send the entire file to the printer.
  5. ForEachInvoiceDelete

    Question Slow response on few webspeed brokers

    Oh great glad you sorted it. Thanks for getting back to me with the resolution too. Ill be on the lookout for that in the future now! :)
  6. ForEachInvoiceDelete

    Question Difference between HTTP and HTTPS-Request ?

    And just set it to like 2068 or something. I doubt anything checks. Otherwise you need to Count the bytes in the body using like get raw I think.
  7. ForEachInvoiceDelete

    Question Difference between HTTP and HTTPS-Request ?

    Addheader() should work. I would need to look up some examples and my proxy has gone nuts. Replying on phone.
  8. ForEachInvoiceDelete

    Question Difference between HTTP and HTTPS-Request ?

    No I'm pretty sure postman assumes content-length based on your body and fills it in even though it's not displayed. If you use a proxy and bounce your request through you can see it. Interceptor might work to view what chrome is sending. Then compare to what http library is sending
  9. ForEachInvoiceDelete

    Question Slow response on few webspeed brokers

    Its been awhile since i have looked at webspeed issues. All of our slowness was due to cgip and caching which PAS resolved. Hows the machine look resource wise? Any thoughts about switching to PAS? You can have one broker(PAS agent) with multiple handlers to alter the propaths for developer...
  10. ForEachInvoiceDelete

    Question Difference between HTTP and HTTPS-Request ?

    try adding :ContentType('application/json')
  11. ForEachInvoiceDelete

    Question Difference between HTTP and HTTPS-Request ?

    You probably have the wrong content headers. I had issues with Postman/Chrome adding default headers that the HTTP library doesn't. Think it was Content-Length causing me issues. (Programmatically it would just return HTML instead, where the browser would return the correct JSON)
  12. ForEachInvoiceDelete

    Question Write an ABL program which captures the triggers of Customer table and stores it in a table "EventLog" (action,time,date,oldvalue,newvalue).

    This reads like an interview question. Ill assume your customer table only has one field because i cant be bothered to write more code. Im also writing this in the most lazy way possible so that it compiles but you wont cut/paste. Use it as a learning example. W_Customer.p - filename! Enable...
  13. ForEachInvoiceDelete

    Question Outlook and signatures. Can they be added

    Depends how your interfacing with outlook. Via com handles or smtp or something else? I'm pretty sure I have added signatures via both of those methods in the last.
  14. ForEachInvoiceDelete

    MultiThread

    Yes. Provide some more information and I'll elaborate. How is your application structured. Do you use appservers etc?
  15. ForEachInvoiceDelete

    creating dynamic temp-table in prodataset

    Progress KB - ABL: Sample code of Dynamic ProDataSet using DATASET-HANDLE
  16. ForEachInvoiceDelete

    How do you TAB out of an editable browse

    The best person to help Cecil is usually Cecil. ;)
  17. ForEachInvoiceDelete

    Question How to skip to the next line end element in XML

    i "think" your issue with how the XML looks in your editor(In your case, WordPad/NotePad), and nothing to do with its creation or use. I use a plugin for Notepad ++ called "XML Tools" that has a Pretty Print option. Turns your XML into <customers> <customer> <SalesRep>1</SalesRep>...
  18. ForEachInvoiceDelete

    Moving Away from V9ADM2 to ?????

    double post
  19. ForEachInvoiceDelete

    Moving Away from V9ADM2 to ?????

    Yeah that will be a right pain if you have one big fat client. I think KendoUI does provide some level of that interface with JSDO but i haven't ever really looked into it. We rolled our own interface and just manually populate any of the kendo objects we want. Your best bet would be to keep...
  20. ForEachInvoiceDelete

    Question How to Export csv to my desktop (Progress)

    you're not outputting anything. OUTPUT TO VALUE("C:\Users\Mark\Documents\test.csv"). put unformatted "". Edit :- That doesn't actually matter, i tried without and it works fine. Oh god i just realised whats going on. You're using a remote version of Progress installed on a server...
Back
Top