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

Help on BDC

Former Member
0 Likes
580

Hi all,

I have a doubt on BDC's.While creating flat file iam taking forward slash (/) for this i need to write a code

how? can any one please help me.

Hi all,

I have a doubt on BDC's.While creating flat file iam taking forward slash (/) for this i need to write a code

how? can any one please help me.

4 REPLIES 4
Read only

Former Member
0 Likes
561

Hi Girish,

Can you explain it more??Why are you using / in the flat file & for what field..

Read only

Former Member
0 Likes
561

Just append a '/' after every field to the final string which is downloaded onto the flat file.

Read only

former_member186741
Active Contributor
0 Likes
561

i don't understand your question but the forward slash is sometimes used in BDCs to indicate that a particular field should not be updated, i.e it means 'leave the value in this field unchanged'.

Read only

Former Member
0 Likes
561

Hi saripalli

while uploading the flat file through the BDC you will storing the contents to a internal table,,

you have loop at the internal table then concatenate the contenets the of the internal table with the '/'.

call function 'GUI_UPLOAD'

......

Tables

outtab = records

...

loop at itab.

concatenate records-field1 '/' into records-field1.

concatenate records-field2 '/' into records-field2.

concatenate records-field3 '/' into records-field3.

modify itab.

endloop.

regards

kishore

Message was edited by: Harikishore Sreenivasulu