2006 Feb 24 8:51 PM
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.
2006 Feb 24 8:53 PM
Hi Girish,
Can you explain it more??Why are you using / in the flat file & for what field..
2006 Feb 26 12:33 PM
Just append a '/' after every field to the final string which is downloaded onto the flat file.
2006 Feb 27 2:43 AM
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'.
2006 Feb 27 2:49 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |