<?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: Character Size and space problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882766#M677122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For each record, you can concatenate with Carraige return character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use CL_ABAP_CHAR_UTILITIES-&amp;gt;NEWLINE for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2007 22:54:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-03T22:54:09Z</dc:date>
    <item>
      <title>Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882765#M677121</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;Iam trying to output a comma delimited file in Application Server with a line feed (CRLF) at the end of each record. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared my workarea as one long string which can hold all the output data along with the CRLF field as mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF WA_DATA,&lt;/P&gt;&lt;P&gt;               data(200) type c,&lt;/P&gt;&lt;P&gt;               crlf type DTADNZ1-crlf,  (Data type: RAW, Lenght: 2)&lt;/P&gt;&lt;P&gt;           END OF WA_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam passing the string data to WA_DATA-data. Since it is a comma delimited it may not occupy all the 200 char size and the size will vary depedning on the data but will not exceed 200 char. This is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could even pass the line feed by saying:&lt;/P&gt;&lt;P&gt;WA_DATA-crlf = gv_crlf(2) TYPE c VALUE cl_abap_char_utilities=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But  the PROBLEM is:&lt;/P&gt;&lt;P&gt;It takes the line feed as '#' after 200 characters. But I wanna print this immdly after the end of the record/data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried below options:&lt;/P&gt;&lt;P&gt;1) CONCATENATE (This does not support as CRLF is not of char type)&lt;/P&gt;&lt;P&gt;2) CONDENSE on WA_DATA-data to see whether it removes the trailing spaces. This also does'nt work and prints the line feed '#' after 200 char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please help if you have come across the similar situation. It is very urgent to fix. Appreciate your early response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points for sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Smitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 22:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882765#M677121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T22:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882766#M677122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For each record, you can concatenate with Carraige return character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use CL_ABAP_CHAR_UTILITIES-&amp;gt;NEWLINE for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 22:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882766#M677122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T22:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882767#M677123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the option you have given. It shows &amp;lt;LF&amp;gt; at the end of the string. It was showing the same for CRLF as &amp;lt;CR/LF&amp;gt; when I forced to place the CRLF in a string by giving offsetting (WA_DATA+54. I got 54 after reading the string length. It could be a wierd logic). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, Iam wondering whether we are correct. But the PROBLEM is I dont know how to test whether it really give a Newline/CarriageReturnLineFeed at the end of the record. Appreciate if you could tell me how to test this whether they really work.. Now they show as a contineous string with # some where in the middile of the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Simtha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 23:22:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882767#M677123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T23:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882768#M677124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you run the program and download the file to application server? Later you can see file content using AL11 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way to test the same is write a temporary program which will upload this file and you can display the content on the screen and see if it is working as expected. Can you try this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 23:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882768#M677124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T23:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882769#M677125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried downloading the data. On the application Server it shows at the end of records as &amp;lt;LF&amp;gt;. Even when you download that it goes to the next line (Used NEWLINE as given by u) . But the problem is it still occupy the length of 200 by displaying the data that it has has and padds with spaces for the rest and then it goes to the new line. &amp;lt;It appears as the data is downloaded correctly but the spaces still exist in the file which we dont want&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we have the size of the field (200 char) generate dynamically as the length of the text or if you have any other solution for this. Please do let me know. I think Iam close to solution. Please do help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Smitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 00:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882769#M677125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T00:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882770#M677126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just thought of this logic. You can try this if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will loop at internal table to pass data to the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the loop, get the concatenated value of the data. Assign the exact value (you will have to check with STRLEN to find exact value) to a field symbol. And pass this to the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is something you will have to try out. Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 00:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882770#M677126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T00:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882771#M677127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oops! field symbols are scary for me &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any small test program..??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 00:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882771#M677127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T00:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882772#M677128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I saw the help in TRANSFER statement, you can specify desired length. In this way, you can find exact length of each record and pass the same variable at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please read this. It will help you to finish this assignment. Please reward point if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSFER &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;TRANSFER dobj TO dset [LENGTH len] &lt;/P&gt;&lt;P&gt;                      [NO END OF LINE]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... LENGTH len &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... NO END OF LINE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement passes the content of data object dobj to the file specified in dset. For dobj, you can specify data objects with elementary data types and flat structures. In Unicode programs, dobj must be character-type if the file was opened as a text file (this restriction does not apply to legacy text files). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dset is expected to be a character-type data object that contains the platform-specific name of the file. The content is written to the file from the current file pointer. After the transfer, the file pointer is positioned after the data that was added. You can use addition LENGTH to restrict the number of characters or bytes transferred &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a Unicode program, the file for writing, appending, or changing must be open. Otherwise, a treatable exception occurs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file was not yet opened in a non-Unicode programm, it is implicitly opened using the statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET dset FOR OUTPUT IN BINARY MODE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as a binary file for writing. If the system accesses an invalid file, a treatable exception is raised. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Influence of Access Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The access type defined in statement OPEN DATASET has the following effect on the transfer: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A file opened for reading using FOR INPUT cannot be written in Unicode programs. In non-Unicode programs, TRANSFER writes in a file opened for reading using FOR INPUT in exactly the same way as a file openedfor changing using FOR UPDATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a file opened for writing using FOROUTPUT, the system writes to the file from the current file pointer. If the file pointer is positioned after the current start of the file, the file is pre-filled with hexadecimal 0 from the start of the file to the file pointer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a file opened for appending using FOR APPENDING, the system writes to the file from the current file pointer, which is always at the end of the file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a file opened for changing using FOR UPDATE, the system writes to the file from the current file pointer. If the file pointer is positioned after the end of the file, the file is pre-filled with hexadecimal 0 between the end of the file and the file pointer position. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Prior to release 6.10: If parts of a file were to be overwritten, it was only possible to write to a file opened for reading. This is not allowed in Unicode programs. As of release 6.10 and later, you can open a file for changing which is the recommended procedure also for non-Unicode programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Influence of Storage Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The transfer depends on the storage type used when the file is opened using the statement OPEN DATASET. If the specified storage type requires conversion, it is carried out before the write process. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file was opened as a text file or a legacy text file, the trailing blank characters are deleted for all data objects, except for those of data type string. The line end marker defined when the file was opened is then added to the remaining content of the data object or to the result of the conversion, and the final result is written byte-by-byte to the file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of release 6.40, the appending of the end of line separator can be prevented using NO END OF LINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file was opened as a binary file or a legacy binary file, the content of the data object or the result of the conversion is written byte-by-byte to the file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Only character-type data objects should be written to text files. Only byte-type data objects should be written to binary files. To store numerical data objects or mixed structures, we recommend that you assign them to character-type or byte-type typed field symbols using the CASTING addition of the statement ASSIGN and save these field symbols. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... LENGTH len &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This addition determines how many characters or how many bytes of data object dobj are written to the file. len is expected to be a data object of type i that contains the number of characters or bytes. In text files, the content of len specifies the number of characters that are written from the storage. For binary files, legacy text file, and legacy binary files, len specifies the number of bytes that are written to the file. The first len characters or bytes are transferred and alignment gaps are included in the structures. If the addition LENGTH is not specified, all characters or bytes are transferred. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the value of len is less than or equal to 0, no characters or bytes are transferred. If the file is opened as a (legacy) text file, however, a line end marker is inserted into the file by default. If the value of len is greater than the number of characters or bytes in dobj, hexadecimal 0 or blank characters are transferred to the file instead of the missing bytes or characters, depending on whether the file was opened as a (legacy) text file or a (legacy) binary file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 00:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882772#M677128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T00:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882773#M677129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for searching the answer me. unfortunately Iam not using TRANSFER statement to write the data into application server. Iam populating the workarea and passing it to buffer in the Std.prog and the Std.program take care of writing it to app server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please send me some sample code on fieldsymbols if you have. I will try the option you said on field-symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Smitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 02:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882773#M677129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T02:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882774#M677130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the confusion with field symbols. I tried working on that option but felt it will not be of any use. So i gave you this another idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not get your point - you said you are writing to a buffer and it is passed to standard program, can you explain in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ashish Gundawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 02:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882774#M677130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T02:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882775#M677131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh is it &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; No issues&lt;/P&gt;&lt;P&gt;Thanks for spending time in answering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please answer me with this issue. Its a kind of urgent. Please!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Smitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 02:26:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882775#M677131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T02:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882776#M677132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Smitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use MOVE statement to transfer data.&lt;/P&gt;&lt;P&gt;This will occupy only the actual length of data in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE WA_DATA to p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 03:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882776#M677132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T03:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882777#M677133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This also did not work. Can we define the size of the character field dynamically??&lt;/P&gt;&lt;P&gt;Actually the spaces are not getting removed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please respond.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Smitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 03:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882777#M677133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T03:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Character Size and space problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882778#M677134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem resolved!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 02:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-size-and-space-problem/m-p/2882778#M677134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T02:17:38Z</dc:date>
    </item>
  </channel>
</rss>

