views:

69

answers:

1
 {GLAS_GL_TRANSACTIONS.GLTR_PSTNG_TYPE} + {GLAS_GL_TRANSACTIONS.GLTR_PSTNG_NO} 

I JUST invoke these two fields from database and concatenate(+) by usin string(concatenate)

when i save this i got error like

string is required....... what should i do? provide info......

+1  A: 

As I mentioned to you in Concatenate Crystal

you should use

{YourDataSource.Field1} & " " & {YourDataSource.Field2}

Make use of &, not +

astander