Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Types declaration

Former Member
0 Likes
670

Hi,

I need to declare a variable in OO envinroment what is a same type like MD5_FIELDS-HASH_RAW8 (RAW 8).

I cannot use "like" reserved word in OO.

Can anybody advice a right type declaration ?

Thanks.

Marian

4 REPLIES 4
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
602

Hi,

Did you tried using <b>'type'</b>?

Read only

athavanraja
Active Contributor
0 Likes
602

data: <variable> type MD5_FIELDS-HASH_RAW8 .

Regards

Raja

Read only

Former Member
0 Likes
602

Hi Marian,

Try this out:

TYPES: type1 TYPE  md5_fields-hash_raw8.

DATA: var1 TYPE type1.

Now you can use var1 of type md5_fields-hash_raw8.

Thanks & Regards,

Kingshuk Dutta.

Read only

0 Likes
602

why do you need the additional <b>types</b> declaration?

Raja