Table of Content
HAL Forum
procedure HTSAddUUID (
area AreaForUUID,uuid RecordUUID)
Description:
Adds the unique fingerprint of a record to an area in character encoded format. The length of the fingerprint is 20 characters.
Parameters:
AreaForUUID Area that will be used to store the UUID in character encoded format
RecordUUID The UUID field of a record
global
procedure OnApplicationStartup() 
begin
  record INVc INr;
  area a;
  
  SetCompany(1,true);
  LoopMain(INr,1,true);
  HTSAddUUID(a,INr.UUID);  
  stopalert(INr.UUID & chr(13) & HTSGetUUID(a,0));
  
  return;
end;
Related topics:
««