how to concatenate two string into the same field?

Hi everybody,

i have two fields. after storing the record in the second field, it should join into the first field.both r strings.

ex: 1field = hai

2 field= everybody

after saving the records.it ll change into 1field= hai everybody.

is there any possibilities ?

Regards,

smiley

i think

its not possible

check u r validate write method once

Hi Ven,

public boolean validateWrite()
{
RF_IssueTracker issueTracker;
boolean ret;

ret = super();

if(issueTracker.Remarks != “”)
{
issueTracker.PreviewsRemarks = issueTracker.PreviewsRemarks + issueTracker.Remarks;
}

return ret;
}

i wrote like this

i think

issueTracker.PreviewsRemarks = issueTracker.PreviewsRemarks + issueTracker.Remarks;

above line

“issueTracker.PreviewsRemarks + issueTracker.Remarks” value is stored in again

issueTracker.PreviewsRemarks

check it once

HI Smiley,

In the table level – override the validatewrite method() as follows

public boolean validateWrite()
{
boolean ret;

ret = super();
this.PreviewsRemarks = (this.Remarks != “” ? this.PreviewsRemarks + " " + this.Remarks : this.PreviewsRemarks );

return ret;
}

Naresh kolli

All Remarks value storing into the PreviewRemark. this is my functionality