Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem with error display

former_member189596
Active Participant
0 Likes
403

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
377

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.

2 REPLIES 2
Read only

Former Member
0 Likes
378

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.

Read only

Former Member
0 Likes
377

Hi,

You can concatenate the text with the value and pass that value in the final Table.

Thanks,

Chidanand