‎2008 Mar 15 8:17 AM
hi ,
this is praveen
what is CONCATNATE and explain how it use in bdc plese give me the answer any one
‎2008 Mar 15 8:28 AM
Hi,
CONCATENATE is just joining two strings.
In BDC it is useful when u are populating a Date Field.
if u have a variable.
example.
data : d1 type sy-datum,
d2(10) type c.
If u are populating the date in the following sample code.
d1 = sy-datum.
perform bdc_field using 'EORD-VDATU(01)'
d1.
The system will display error message.
instead u should do.
concatenate d16(2) '.' d14(2) '.' d1+0(4) into d2.
perform bdc_field using 'EORD-VDATU(01)'
d2.
Now BDC will Run.
in general Concatenate is to join two or more data varibale of type Char,Numc,Date and Time.
Regards,
Balakumar.G.
Reward Points if useful.
concate