Reputation: 165
{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......
Upvotes: 0
Views: 975
Reputation: 166326
As I mentioned to you in Concatenate Crystal
you should use
{YourDataSource.Field1} & " " & {YourDataSource.Field2}
Make use of &, not +
Upvotes: 1