How to access Record type variable with TMS Script

Dear Sir
I am having record type variable ...as per below detail. I am including this unit in various forms and by using Thisuser.userMasterid able to acces variable.

I want to acces this record using TMS SCRIPT..pls guide me

unit userInfo;

interface

uses
Graphics,SysUtils, Classes, DB, ADODB,Variants
type

userRecord = record
UserMasterId:Integer;
End;
var
thisUser: userRecord;

implementation

end.

Thanks
Syed

Waiting for Reply

Hi @torabi_syed,

The process is described in documentation:

https://doc.tmssoftware.com/biz/scripter/guide/scripter.html#registering-a-record-in-scripter

And there are several examples here in the forums, like below. Have you checked such information and tried it?