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

GUID_32

Former Member
0 Likes
2,191

Hello,

there is a transparent table and one of its column hast the type of

GUID_32. How can fill this field. What has to be taken into consideration.

Regards

ilhan

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
1,820

Hi,

GUID_CREATE return number but you need this number in character representation (GUID_32 is "GUID in 'CHAR' format in uppercase"). There is a FM GUID_CONVERT but it is marked as obsolete. So you can try to use function SYSTEM_UUID_C_CREATE.

Cheers

Hello,

there is a transparent table and one of its column hast the type of

GUID_32. How can fill this field. What has to be taken into consideration.

Regards

ilhan

2 REPLIES 2
Read only

Former Member
0 Likes
1,820

yes pls use

CALL FUNCTION 'GUID_CREATE'

IMPORTING

ev_guid_32 = guid.

lv_contact_guid = guid.

Read only

mvoros
Active Contributor
0 Likes
1,821

Hi,

GUID_CREATE return number but you need this number in character representation (GUID_32 is "GUID in 'CHAR' format in uppercase"). There is a FM GUID_CONVERT but it is marked as obsolete. So you can try to use function SYSTEM_UUID_C_CREATE.

Cheers