In the following example, a message is created, the byte properties mybyteproperty1 and mybyteproperty2 are set, and the message
is sent to the address clientid\queuename:
begin
declare @msgid varchar(128);
set @msgid = ml_qa_createmessage();
call ml_qa_setbyteproperty( @msgid, 'mybyteproperty1', 0 );
call ml_qa_setbyteproperty( @msgid, 'mybyteproperty2', 255 );
call ml_qa_putmessage( @msgid, 'clientid\queuename' );
commit;
end