Home
  Add-Ons for
SAP® systems
  CT-Assist_Module
  Software Assistants
  User comments
  Costs/benefit analysis
  R/3® Integration
  PDF / Download
  CT-Debug & Trace_Module
  R/3® Integration
  PDF / Download
  CT-Codeview & Analyzer
  CT-Test & Optimizer
  eLearning for ABAP™
  CT-Professsional_100+Help
  CT-Professsional_100
  CT-Understanding_100
  CT-Help_Workbench
  ABAP™ Programs
  Shop [SSL]
  Downloads
 


Home > ABAP™-Programs > Y9030024

ABAP™-Programs

Report Y9030024

This reports does generate a worldwide unique id.

[for Download or 'cut and paste']


REPORT Y9030024 LINE-SIZE 35.
*
**********************         HEADER                    **************
*
* Copyright (c) 1999 by Stefan Riedel-Seifert,
*               71034 Boeblingen
*
*     You can use or modify this report for your own work as long
*               as you don't try to sell or republish it.
*      In no event will the author be liable for indirect, special,
*        Incidental, or consequental damages (if any) arising out of
*                       the use of this report.
*//////////////////////////////////////////////////////////////////////*
*
* Data.
  data:
    lv_unique_id    like sys_uid.

* Start of selection.
  start-of-selection.

* Init.
  clear:
    lv_unique_id.

* Get id.
  call function 'SYSTEM_GET_UNIQUE_ID'
       importing
            unique_id = lv_unique_id
       exceptions
            others    = 1.

* Print id.
  write lv_unique_id.