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

bdc

Former Member
0 Likes
292

hi ,

this is praveen

what is CONCATNATE and explain how it use in bdc plese give me the answer any one

1 REPLY 1
Read only

Former Member
0 Likes
275

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