testGetLogFilePath.p 915 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*------------------------------------------------------------------------
  2. File : testGetLogFilePath.p
  3. Purpose :
  4. Syntax :
  5. Description :
  6. Author(s) : walter.riechsteiner
  7. Created : Fri May 21 10:43:59 CEST 2021
  8. Notes :
  9. ----------------------------------------------------------------------*/
  10. /* *************************** Definitions ************************** */
  11. BLOCK-LEVEL ON ERROR UNDO, THROW.
  12. DEFINE VARIABLE cPath AS CHARACTER NO-UNDO.
  13. DEFINE VARIABLE cString AS CHARACTER NO-UNDO.
  14. /* ******************** Preprocessor Definitions ******************** */
  15. /* *************************** Main Block *************************** */
  16. { super/funktionen.i }
  17. cString = 'wari' + CHR(01) + '' + CHR(01) + '1000'.
  18. RUN ANMELDUNG ( INPUT cString ).
  19. cpath = DYNAMIC-FUNCTION ('getLogFilePfad':U) NO-ERROR.
  20. MESSAGE cpath
  21. VIEW-AS ALERT-BOX.