<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: csv with leading zero in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269080#M1216474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again single quote is system special character, when you type a single quote, it will start a new hardcode area, next single quote will close that area, and then third single quote will start new hardcode area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Test this sample code first&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zars no standard page heading
        line-size 170
        line-count 65(4).
constants : c_quote type c value ''''.
data : v_text(20) type c.
concatenate c_quote 'test' into v_text.
write : v_text.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Mar 2009 16:41:45 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2009-03-05T16:41:45Z</dc:date>
    <item>
      <title>csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269065#M1216459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My client is requiring a csv file so they can open up in Excel. The issue is.&lt;/P&gt;&lt;P&gt;I have a field value 01234 and it only shows 1234 when open in excel, when opened with notepad or ultra edit, it's 01234. This is because excel hide the leading zero if it's a number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know what should I do to go around this? in program I have the following syntax&lt;/P&gt;&lt;P&gt;concatenate A B C D separated by ",". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I concatenate something before A to keep the first 0 to show up in excel? I think it maybe a sing quote " ' ". But maybe I'm wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:03:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269065#M1216459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T21:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269066#M1216460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can concatenate single quote to the number to prevent leading zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can educate your users to follow the steps mentioned in this document:&lt;/P&gt;&lt;P&gt;[Preserve Downloaded data formatting in Excel|http://help-abap.blogspot.com/2008/09/preserve-downloaded-data-formatting-in.html]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269066#M1216460</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-03-04T21:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269067#M1216461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi check this code, I can see the leading zeros, there is some thing to do with the data type you are using... they need to be of type char or type string as I did..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zj_test LINE-SIZE 162.

TYPES: BEGIN OF itab,
         data TYPE string,
       END OF itab.
DATA: string TYPE STANDARD TABLE OF itab,
      wa_string TYPE itab.

CONCATENATE '0000A' 'DCF932' INTO wa_string-data SEPARATED BY ','.

APPEND wa_string TO string.

CALL METHOD cl_gui_frontend_services=&amp;gt;gui_download
  EXPORTING
*    bin_filesize              =
    filename                  = 'C:\Documents and Settings\jay\test.csv'
*    filetype                  = 'ASC'
*    append                    = SPACE
*    write_field_separator     = SPACE
*    header                    = '00'
*    trunc_trailing_blanks     = SPACE
*    write_lf                  = 'X'
*    col_select                = SPACE
*    col_select_mask           = SPACE
*    dat_mode                  = SPACE
*    confirm_overwrite         = SPACE
*    no_auth_check             = SPACE
*    codepage                  = SPACE
*    ignore_cerr               = ABAP_TRUE
*    replacement               = '#'
*    write_bom                 = SPACE
*    trunc_trailing_blanks_eol = 'X'
*    wk1_n_format              = SPACE
*    wk1_n_size                = SPACE
*    wk1_t_format              = SPACE
*    wk1_t_size                = SPACE
*  IMPORTING
*    filelength                =
  CHANGING
    data_tab                  = string
  EXCEPTIONS
    file_write_error          = 1
    no_batch                  = 2
    gui_refuse_filetransfer   = 3
    invalid_type              = 4
    no_authority              = 5
    unknown_error             = 6
    header_not_allowed        = 7
    separator_not_allowed     = 8
    filesize_not_allowed      = 9
    header_too_long           = 10
    dp_error_create           = 11
    dp_error_send             = 12
    dp_error_write            = 13
    unknown_dp_error          = 14
    access_denied             = 15
    dp_out_of_memory          = 16
    disk_full                 = 17
    dp_timeout                = 18
    file_not_found            = 19
    dataprovider_exception    = 20
    control_flush_error       = 21
    not_supported_by_gui      = 22
    error_no_gui              = 23
    OTHERS                    = 24.
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269067#M1216461</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-03-04T21:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269068#M1216462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naimesh, unfortunately they do not want to change settings in Excel (format cell with fix length). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking about that single quote thing, but try to see if there's more things coming up since they requires fix lenth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269068#M1216462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T22:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269069#M1216463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naimesh, unfortunately they do not want to change settings in Excel (format cell with fix length). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking about that single quote thing, but try to see if there's more things coming up since they requires fix lenth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269069#M1216463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T22:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269070#M1216464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay, I will try type string out. Will let you know how's it going. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269070#M1216464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T22:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269071#M1216465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried string type but it didn't work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Naimesh, I tried concatenate sing quote " ' " before concatenate everything, but single quote is special character in ABAP, it can not be used as a hardcoded value, what should I do now?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 03:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269071#M1216465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T03:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269072#M1216466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: ....
      data(1000) type c.
....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 03:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269072#M1216466</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-03-05T03:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269073#M1216467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ben,&lt;/P&gt;&lt;P&gt;This question is being asked a number of times, even I also asked once...&lt;/P&gt;&lt;P&gt;Please check in forums before wasting your time.&lt;/P&gt;&lt;P&gt;This can't be passible, as you also know its a default property of XL that leading zeros will not be shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishna..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 03:30:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269073#M1216467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T03:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269074#M1216468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I did try type c but didn't work too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, I think I will tell client to format cell and change settings in excel, I know it sounds silly but they have reached technical limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers guys,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 03:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269074#M1216468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T03:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269075#M1216469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using csv format then all cells of excel will be in text format by default.so if you want leading zeros with any numeric value then just convert that value in type of character then pass it into internal table then pass that internal table in to FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 04:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269075#M1216469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T04:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269076#M1216470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the escape sequence for single quotes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate '''' myfield into myfield.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ensure that your field can contain one more character than originally intended to accommodate for the apostrophe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 04:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269076#M1216470</guid>
      <dc:creator>former_member189059</dc:creator>
      <dc:date>2009-03-05T04:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269077#M1216471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had that same problem before and the only solution was to concatenate a ' ' ' in front of the numbers or any other signs. &lt;/P&gt;&lt;P&gt;There is no other solutions to that unless the user format the cells each time the file is downloaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 04:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269077#M1216471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T04:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269078#M1216472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ben,&lt;/P&gt;&lt;P&gt;Use ' ' ' in front of the numbers excel will take it as text instead of numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: concatenate ' ' '  in front of the numbers . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 06:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269078#M1216472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T06:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269079#M1216473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh man, guys, I tried that and failed, did you try concatenate ' ' ' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again single quote is system special character, when you type a single quote, it will start a new hardcode area, next single quote will close that area, and then third single quote will start new hardcode area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it and compile, it won't. Am I wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 16:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269079#M1216473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T16:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269080#M1216474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again single quote is system special character, when you type a single quote, it will start a new hardcode area, next single quote will close that area, and then third single quote will start new hardcode area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Test this sample code first&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zars no standard page heading
        line-size 170
        line-count 65(4).
constants : c_quote type c value ''''.
data : v_text(20) type c.
concatenate c_quote 'test' into v_text.
write : v_text.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 16:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269080#M1216474</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-03-05T16:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269081#M1216475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ARS, to be hornest, That was a GREAT WAY TO CHEAT &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;congratulations, you solved it, I wish I could give you more than 10 points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHEERS,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 17:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269081#M1216475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T17:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269082#M1216476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Who can say this is impossible then? &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; have a great day guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ben Boman on Mar 5, 2009 6:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 17:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269082#M1216476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-05T17:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: csv with leading zero</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269083#M1216477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above is working fine in case of alpha numeric. but&amp;nbsp; i'm concatenating only numeric variables than in that case leading zeros are removed in csv. Zeros removed in case of Numeric...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 13:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-with-leading-zero/m-p/5269083#M1216477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-13T13:07:54Z</dc:date>
    </item>
  </channel>
</rss>

