cancel
Showing results for 
Search instead for 
Did you mean: 

In XI Mapping multiple fields mapping to single target field.

Former Member
0 Kudos

Hi Friends,

In XI Mapping multiple fields mapping to single target field.

For example my requirement is :

Source Fields:(This RFC BAPI Structure)

Empno 0-1

EmpName 0-1

Address 0-1

Taget Field is:

Details 0-1

The above three fields passed to the Details Field. Here i am using Concat function

But i have one query on that on,Every field having "line Break" required.

Can you please help me out above this requirement.

Thanks in Advance,

Sateesh N.

Accepted Solutions (1)

Accepted Solutions (1)

rajasekhar_reddy14
Active Contributor
0 Kudos

Hi Sateesh,

try to write simple userdefined function,pass three arguments and append all three fileds and add /n in udf,it will do the line break.

Regards,

Raj

Former Member
0 Kudos

Hi Rajasekhar,

Can you please expand your answer with UDF.

Thanks ,

Sateesh

Former Member
0 Kudos

If you want a line break between the three fields, then try

passing a,b,c to the udf and in the udf you would have

return a+"\n"+b+"\n"+c;

Answers (0)