Search results

  1. ForEachInvoiceDelete

    Error Could not locate method 'DeleteCat' with matching signature in class 'Lion'. (14457)

    Oh and check your r code is deployed in the propath. think its like web-inf/openedge by default but you can change it. Check your PAS settings.
  2. ForEachInvoiceDelete

    Error Could not locate method 'DeleteCat' with matching signature in class 'Lion'. (14457)

    Was it compiled in the same version of progress as you deployed it too? That caused me no end of headaches as i was compiling in 11.7.1 and deploying to 11.7.3
  3. ForEachInvoiceDelete

    Question how to take output of function

    not entirely sure what you want but lets give it a shot. Hi i want to take output of the following function and i need to validate the output with if statement to assign value to a local variable in browse of se2013 version. So you want to validate the output of a function? That's not really...
  4. ForEachInvoiceDelete

    Progress kbase acting strange?

    Thanks for the chuckle on a Wednesday morning.
  5. ForEachInvoiceDelete

    Error OVERLAP FACTOR

    I heard he responds fastest when you say "Big Tommy B" three times.
  6. ForEachInvoiceDelete

    Question Query to check all database accounts?

    Every day is a school day! I don't actually work with Progress anymore so i'm allowed to be a little rusty :P
  7. ForEachInvoiceDelete

    Question Query to check all database accounts?

    VST tables. I think its _User, but i dont have access to a progress database right now. def var icount as int no-undo. for each _user no-lock: assign icount = icount + 1. end. message icount view-as alert-box.
  8. ForEachInvoiceDelete

    Question Using WebSpeed as a REATful API Web Service Famework

    Are you using Webspeed with PAS? Old webspeed only really supported a few HTTP verbs (Post etc). With PAS you can use most if not all.
  9. ForEachInvoiceDelete

    Question NO-UNDO upon Creating Table

    Does this still undo via a procedure editor or only the application? You might have some index issues (duplicate unique entries) or the create trigger of that table is returning an error you are not capturing or aware of. But yeah, as Cringer says, sort that transaction scoping out.
  10. ForEachInvoiceDelete

    Error Problem on QAD EAM

    Or you have no access to the database server. Etc etc. Basic stuff to try in order of likeliness.
  11. ForEachInvoiceDelete

    Error Problem on QAD EAM

    I have never used the software before. Or ever seen it in my life. But I can tell you haven't set up your database connection correctly. Username/Password is wrong.
  12. ForEachInvoiceDelete

    Question Progress Application Server

    ApplicationServerManager.RunProc <--- this will need to change.
  13. ForEachInvoiceDelete

    Question Progress Application Server

    No. Progress Application Server(PASOE) and "Appserver" (Classic Appserver from now on) are entirely separate. Classic Appserver is going to be retired at some point and everyone should be moving over to PASOE. PASOE should work in a very similar way, as its basically the original appserver...
  14. ForEachInvoiceDelete

    Question Progress Application Server

    Do you have it licensed? Progress KB - Quick Start Guide and Video for Progress Application Server for OpenEdge (PASOE)
  15. ForEachInvoiceDelete

    Question Progress Application Server

    You could make HTTP requests to the web/rest transport of PAS, from your C# back end. (We do that occasionally)
  16. ForEachInvoiceDelete

    Dynamic DataSets (Oh joy weird bug)

    One of our developers has been messing about for me testing some dynamic dataset stuff and came across something weird. If you use an input/output dataset handle, when it comes back out on the output, its stripped all the data relations! I have had a look and i am also stumped! Anyone else...
  17. ForEachInvoiceDelete

    Question Software tool required for Unit Testing GUI input

    AutoIt Scripting Language - AutoIt
  18. ForEachInvoiceDelete

    Question about parsing JSON

    def var charstring as char. charstring = string(joObj2:GetJsonText("OwnerName")). message charstring.
  19. ForEachInvoiceDelete

    BROKER: Could not spawn a server. (1890)

    I had the exact issue Rob is explaining, but with replication agents when i was testing replication sets. (Copy paste fail between prop files, but yeah, min/max port ranges crossed and i lost a good few hours figuring it out)
  20. ForEachInvoiceDelete

    Reading XML

    Use sax-reader. Progress KB - 4GL/ABL: Sample code of the use of SAX parser with XSD validation.
Top