0% found this document useful (0 votes)
28 views1 page

Zak User Defined Types

The document defines two user-defined data types T_VAR and NAME1_GP and declares two variables V_VAR and V_NAME1 of those types, assigns values to the variables, and writes the values out.

Uploaded by

naveen441
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Zak User Defined Types

The document defines two user-defined data types T_VAR and NAME1_GP and declares two variables V_VAR and V_NAME1 of those types, assigns values to the variables, and writes the values out.

Uploaded by

naveen441
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

*&---------------------------------------------------------------------*

*& Report ZAK_USER_DEFINED_TYPES


*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

REPORT ZAK_USER_DEFINED_TYPES.

*TYPES: T_VAR TYPE I.


*DATA : V_VAR TYPE T_VAR.
*
*V_VAR = 10.
*WRITE : / V_VAR.
**break user3.
*
data : v_kunnr type kunnr. "Customer number

data : v_name1 type NAME1_GP.

v_kunnr = '1234'.
v_name1 = 'KING'.

WRITE : / V_KUNNR , V_NAME1.

You might also like