Search results

  1. tamhas

    Question smtpmail.p; Can we save the email to *.eml

    Or better a bcc.
  2. tamhas

    Resolved Strange problem related to streams and break by totals.

    Point being, based on the code you supplied, the error message is reasonable.
  3. tamhas

    Resolved Strange problem related to streams and break by totals.

    In your code, you never set yesno, so it will be false and so you will not have opened the stream.
  4. tamhas

    Question Type-II-database again

    Tom, what about the wisdom of writing in chunks vs using LOBs?
  5. tamhas

    Why use substitute

    This is a plus for other uses of substitute as well, e.g., some kind of slice and dice where one could assemble pieces, but it would require additional logic to detect and handle unknown values.
  6. tamhas

    Primary Index allows null values?

    And, to emphasize, if mandatory is not checked, then there can be multiple records all with the same ? value even if the index is marked as unique.
  7. tamhas

    Primary Index allows null values?

    Plus, you need to mark it mandatory since, if it can have multiple null values without violating uniqueness.
  8. tamhas

    Difference between repeat and do block

    Note that one can scope a buffer or transaction to a DO loop, but one has to state it explicitly instead of it being implicit like with REPEAT.
  9. tamhas

    Fill a temp-table using sql statement. Is it possible

    I.e., if you are in a context where you can use SQL-92, you have no temp-tables.
  10. tamhas

    ProTop 3.141 is in the wild!

    How long until version 3.14159?
  11. tamhas

    Temp Table as parameter or Shared temp table

    More info would be useful as usual. What version of Progress. What license model? Do you have replication? If not, why not? Might it be a solution to run the read-only users on the replicate? If you are refreshing these temp-tables every 5 minutes to have current data for reporting, then...
  12. tamhas

    Temp Table as parameter or Shared temp table

    If you have a top level procedure which is not connected to the DB ... and I am not particularly sympathetic that it is sensible to be so stingy with licenses ... then the usual thing is to connect to the DB and transfer control to a subprocedure since it is only in that subprocedure that the DB...
  13. tamhas

    Temp Table as parameter or Shared temp table

    Put the temp-table in a persistent procedure or class and provide methods to operate on it. Much cleaner.
  14. tamhas

    Invoice Item Cost

    There is a Syteline forum.
  15. tamhas

    Transaction is active or not in application level

    And, it should be noted that a transaction *is* active and anything you do inside that block *will* get undone if the transaction is not completed. You may not see this because there is no permanent record, but any undo variables, for example, will be returned to their starting state.
  16. tamhas

    Cannot pay

    Related to this? Credit card payments not working
  17. tamhas

    Trimming and storing

    What is not accomplished by assigning the trimmed value to the database field?
  18. tamhas

    Problem in editing a decimal field.

    Note also that the DECIMALS property of the field will determine how many decimals to the right can be assigned, regardless of the display format.
  19. tamhas

    Close account

    New Member .... ???
  20. tamhas

    Can we kick some item from MRP calculate in 23.2?

    This is clearly a question about a specific software product. You should post it in the corresponding board.
Back
Top