‎2008 Oct 31 5:54 AM
Hi all,
I am uploading data from TXT file to database.
i created result layout for success and faliure records.
My final result table has three fields like icon and text and record
menas if it is success ...the resule table like
ICON = green
text = result successfully uploaded
record = the partcular reord.
if is not success
iCON = red
text = problem in the record
record = that paricular record.
Upto this point . my program is working fine.
But , now clients want error record text with varible values.
Now , i am populating text field with text-001 , text-002...
is it possible populate Text-001 with varaible .
Ext : 00 108030 579222 SPM 1/1/2008 1/1/2008 10 GBP
Here second column from text file is customer . i did validation for that customer number.
it is not existing in the system
Presently it is showing text like ' Customer does not exit in the system '
now we want like Customer 108030 does not exit in the system.
is there aby point to know soultions
thanks in advance,
regards,
JBR
‎2008 Oct 31 5:57 AM
Hello,
Better you use concatenate statement.
Concatenate 'Customer' 'Variable name' 'does not exit in the system'
into variable.
Move: variable to text. Try this way you it will work,
If not past your code.
‎2008 Oct 31 5:57 AM
Hello,
Better you use concatenate statement.
Concatenate 'Customer' 'Variable name' 'does not exit in the system'
into variable.
Move: variable to text. Try this way you it will work,
If not past your code.
‎2008 Oct 31 6:01 AM
Hi,
You can concatenate the text with the value and pass that value in the final Table.
Thanks,
Chidanand