Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concatenation Operator in ACE Reports

Status
Not open for further replies.

ufobaby

MIS
Sep 25, 2001
238
US
hi all,

am using the concatenation operator || in ace reports

============
Database cpcprd END

Define ....
Input ....
Output ....

select
a.txt_idcode[12,13]||'/'||a.txt_idcode[10,11]||'/20'||a.txt_idcode[8,9],
a.txt_idcode[12,13]||a.txt_idcode[10,11]||a.txt_idcode[8,9]
,a.txt_idcode[14,19]
from acctents a
where
a.nbr_account = "4010056492"
and typ_drcr = "D" and typ_idtype = "S"
and a.cod_product = "CCHK" and
a.dat_acentry = "090902"
into temp act;

select * from act
End

Format .....
=====================
This gives a typographical error (at the pipe)????? works fine with query module in informix

Pls help , am really stuck with this problem :-(

[cheers]
Niraj [noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top