SAP ABAP VARIOS

From SapWiki
Revision as of 19:38, 26 March 2020 by WikiSysop (talk | contribs) (Created page with "==UUID ver nota 935047 - Creating and using GUIDs (UUIDs)== FORM generar_iddocumento_2 CHANGING p_resultado. DATA lcl_request_id TYPE guid_32. TRY. lcl_request...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UUID ver nota 935047 - Creating and using GUIDs (UUIDs)

FORM generar_iddocumento_2 CHANGING p_resultado.
  DATA lcl_request_id TYPE guid_32.

  TRY.
      lcl_request_id = cl_system_uuid=>create_uuid_c32_static( ).
    CATCH cx_uuid_error.
      ASSERT 1 = 0.
  ENDTRY.

  MOVE lcl_request_id TO p_resultado.
ENDFORM.