Recent content by Gasoline

  1. Gasoline

    DO block for single statement - pros and cons

    No worries Greg. :up: :)
  2. Gasoline

    DO block for single statement - pros and cons

    Hi all, Thanks for all the responses! I wasn't looking for an endless discussion, just facts, whether a DO block around a single statement affects performance or not. Maybe I should have put it like that in my original post. :rolleyes: Since you seem to be the gurus of this forum, I trust and...
  3. Gasoline

    DO block for single statement - pros and cons

    Hi, I've been trying to find out if it is good or bad, to put a single statement within a DO block. E.g. IF iValue > 1000 THEN DO: ASSIGN iHighValue = iHighValue + 1. END.versus IF iValue > 1000 THEN ASSIGN iHighValue = iHighValue + 1.The only information I've found is that the DO -...
  4. Gasoline

    Webservice call problem

    I use OE 10.1C
  5. Gasoline

    Webservice call problem

    Hi, Not sure if this is of any help at all, but when I ran your code, it worked fine for me. Here is the SOAP Response (from SOAP Spy) <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
  6. Gasoline

    XML output on separate lines

    Thanks for the quick reply Tamhas! Unfortunately, it is a requirement from a customer to recieve the file with each node on a new line. So even if this is something I should not do, is there a way to do it?
  7. Gasoline

    XML output on separate lines

    Hi, I have generated an XML-file with line breaks after each node according to Knowledge base solution P110416. (Inserting a text node containing a linefeed character after each node). The generated xml file also has a doctype declaration and a stylesheet reference tag. These are still...
  8. Gasoline

    New programmer / Coding "do loop" process

    Hi, What is the structure of the table? Does it have a quantity field with 8 extents and a price field with 9 extents or does it have 8 quantity fields and 9 price fields?
Top