meta data for this page
  •  

ibec_CRLF

Inserts Carriage Return and Linefeed.

Description

No additional description…

Syntax

 function ibec_CRLF(); No Parameters Expected

Example

execute ibeblock 
returns (FullName varchar(255))
as
begin
  for
   select firstname, lastname
   from customer
   into :fn,:ln
   do
   begin
      FullName = fn || ibec_crlf() || ln;
      suspend;
   end
end