Generate random string with ABAP

Generate random string with ABAP

Use FM : GENERAL_GET_RANDOM_STRING.

Example :


  DATA : lw_guid TYPE string.

  CALL FUNCTION 'GENERAL_GET_RANDOM_STRING'
    EXPORTING
      number_chars  = 32
    IMPORTING
      random_string = lw_guid.

About the author

fjourneau administrator

Hi, I'm Florian Journeau, SAP ABAP R3 Freelance, based in Toulouse, France. You want to know more about me, have a look on my CV : cv.fjourneau.net.

1 Comment so far

AnonymousPosted on1:47 pm - Mar 26, 2025

Nice, except that the 32 char string you get is *not* a GUID as your code implies. Instead, it contains upper and lower case characters (no numbers).

Good code should always use meaningful variable names. (And I saw a lot of badly readable code that misused the term GUID.)

Leave a Reply