ljrep_printbill.sra 754 B

12345678910111213141516171819202122232425262728293031323334
  1. $PBExportHeader$ljrep_printbill.sra
  2. $PBExportComments$Generated Application Object
  3. forward
  4. global type ljrep_printbill from application
  5. end type
  6. global transaction sqlca
  7. global dynamicdescriptionarea sqlda
  8. global dynamicstagingarea sqlsa
  9. global error error
  10. global message message
  11. end forward
  12. global type ljrep_printbill from application
  13. string appname = "ljrep_printbill"
  14. end type
  15. global ljrep_printbill ljrep_printbill
  16. on ljrep_printbill.create
  17. appname = "ljrep_printbill"
  18. message = create message
  19. sqlca = create transaction
  20. sqlda = create dynamicdescriptionarea
  21. sqlsa = create dynamicstagingarea
  22. error = create error
  23. end on
  24. on ljrep_printbill.destroy
  25. destroy( sqlca )
  26. destroy( sqlda )
  27. destroy( sqlsa )
  28. destroy( error )
  29. destroy( message )
  30. end on