<?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: READ DATASET populating some blank values in a numc variable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532045#M1561586</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manuish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this just came to my mind: Try ABAP command UNPACK &amp;lt;field&amp;gt; TO &amp;lt;field&amp;gt;  on the field in question. Honestly spoken I never fully understood the necessity and function of statement -&amp;gt;[UNPACK|http://help.sap.com/abapdocu_702/en/index.htm] but I'm convinced it would do exactly what you need: If no digit is present, you get all zeros,  if leading zeros are missing, they will be created, if digits with leading zeros are already there, nothing changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jan 2011 23:23:20 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2011-01-07T23:23:20Z</dc:date>
    <item>
      <title>READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532040#M1561581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing an issue with one of the very complex programs running in Production System of my Client. The Issue goes like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program is reading a file on application server using READ DATASET and then splitting the records and assigning it to particular itab's field. The structure of a record of the file is as below(arranged horizontally)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Record type (NUMC)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID (CHAR (26)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date (SY-DATUM)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sequence Number (NUMC)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now for some of the files we receive a number in the sequence number field and for some files we dont. Now when the program is reading the record, for the files with sequence number it is updating the particular number with leading zeroes in the variable where we are assigning the value. But for the files where we dont have any sequence number it is updating the variable with some blank. In debug mode if I clear the values of the field, then automatically it becomes 00000000, the default value of any NUMC field. Now this data is updated again in a database table where the field is of type NUMC and the table is also getting populated with spaces. If I try maintaining the database table via SM30 then even if I keep the sequence number field blank it picks up 00000000 on its own which is quite normal for any NUMV field.   As far I know in ABAP editor if we try populating a NUMC variable with 8 spaces or any other value it gives us a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybosy had faced such kind of issues in the past with NUMC variables and read dataset please provide some inputs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Being a banking client I am not able to post the code in this open forum. i will try to provide you guys a sample code how this problem is occuring in next couple of days. I have checked all the variable and the related field's data type and they are all NUMC. There is abolutely no data type mismatch with any of the fields wherever this Sequence Number field is passed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 18:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532040#M1561581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-05T18:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532041#M1561582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you need zeros in that particular field when there is no sequence numbers. currently its saving as space in db ... is this the problem ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 21:10:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532041#M1561582</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-01-05T21:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532042#M1561583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manuish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you are not yet on ECC 600 unicode. Anyway, just try to detect the missing data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF &amp;lt;struc&amp;gt;-sequence_Number = space.         " Check
IF &amp;lt;struc&amp;gt;-sequence_Number = 0.             " which condition
IF &amp;lt;struc&amp;gt;-sequence_Number na '0123456789'. " is met
  CLEAR &amp;lt;struc&amp;gt;-sequence_Number.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 23:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532042#M1561583</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-05T23:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532043#M1561584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manuish ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also faced the same problem. It's really peculiar that in NUMC field you can put char value. Just run the below code. You will get the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF x_struct,&lt;/P&gt;&lt;P&gt;        f1_c  TYPE char10,&lt;/P&gt;&lt;P&gt;        f2_n  TYPE n LENGTH 10,&lt;/P&gt;&lt;P&gt;        f3_c  TYPE char10,&lt;/P&gt;&lt;P&gt;        f4_n  TYPE n LENGTH 10,&lt;/P&gt;&lt;P&gt;       END OF x_struct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_struct TYPE x_struct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT 'abcd, , hgsafd,a' AT ',' INTO wa_struct-f1_c wa_struct-f2_n wa_struct-f3_c wa_struct-f4_n.&lt;/P&gt;&lt;P&gt;BREAK-POINT. " Check wa_struct-f2_n wa_struct-f4_n&lt;/P&gt;&lt;P&gt;IF wa_struct-f2_n CO '0123456789'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  CLEAR wa_struct-f2_n.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF wa_struct-f4_n CO '0123456789'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  CLEAR wa_struct-f4_n.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK-POINT. " Check wa_struct-f2_n wa_struct-f4_n&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Subhankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 01:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532043#M1561584</guid>
      <dc:creator>Subhankar</dc:creator>
      <dc:date>2011-01-06T01:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532044#M1561585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yup....that i can do by clearing the field by ....but the problem is that if i put a check like if var1 is initiasl or var1 &amp;gt;0 it doesnt work.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 16:53:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532044#M1561585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T16:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532045#M1561586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manuish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this just came to my mind: Try ABAP command UNPACK &amp;lt;field&amp;gt; TO &amp;lt;field&amp;gt;  on the field in question. Honestly spoken I never fully understood the necessity and function of statement -&amp;gt;[UNPACK|http://help.sap.com/abapdocu_702/en/index.htm] but I'm convinced it would do exactly what you need: If no digit is present, you get all zeros,  if leading zeros are missing, they will be created, if digits with leading zeros are already there, nothing changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 23:23:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532045#M1561586</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-07T23:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532046#M1561587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For UNPACK the value should be TYPE p, we can't use a NUMC field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@OP: What exactly is your problem? You want the Sequence Number field to be populated with zeroes or space?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jan 2011 03:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532046#M1561587</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-01-08T03:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532047#M1561588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please try the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
    lv_numc(26) TYPE n.
  FIELD-SYMBOLS:
    &amp;lt;any&amp;gt; TYPE c.
  ASSIGN lv_numc TO &amp;lt;any&amp;gt; CASTING. "Look at lv_numc as a character field
  &amp;lt;any&amp;gt; = '                          '. "This way put spaces into NUMC field (&amp;gt;=ECC600)
  UNPACK   lv_numc TO lv_numc."Now we 'convert' spaces to all Zeros
  &amp;lt;any&amp;gt; = '                       abc'."What happens with invalid non-numeric value?
  TRY.
      UNPACK   lv_numc TO lv_numc.
    CATCH cx_root."Conversion error is raised
      CLEAR lv_numc. "Fills with zeros
  ENDTRY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have come to the same conclusion if you folowed my link to UNPACK documentation (see above).&lt;/P&gt;&lt;P&gt;The statement &lt;EM&gt;"For UNPACK the value should be TYPE p, we can't use a NUMC field."&lt;/EM&gt; is just &lt;STRONG&gt;incorrect&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do not help anyone by issuing false statements without reading documentation and without verifying in an ABAP AS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jan 2011 12:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532047#M1561588</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-08T12:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532048#M1561589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately this is what SAP documentation on [UNPACK|http://help.sap.com/abapdocu_70/en/ABAPUNPACK_SHORTREF.htm] has to say: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;UNPACK &lt;STRONG&gt;source&lt;/STRONG&gt; TO destination.&lt;/P&gt;&lt;P&gt;Assigns the digits of a packed number &lt;STRONG&gt;source&lt;/STRONG&gt; to the character-type variables destination. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jan 2011 15:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532048#M1561589</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-01-08T15:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532049#M1561590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the link on [Short reference documentation|http://help.sap.com/abapdocu_70/en/ABAPUNPACK_SHORTREF.htm]. If you click on the [Reference|http://help.sap.com/abapdocu_70/en/ABAPUNPACK.htm], you can read the full documentation and see what SAP unfortunately has to say here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For source, the data type p of length 16 without decimal places is expected&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;and in 702 documentation continued &lt;EM&gt;and an operand of data type decfloat16 or decfloat34 must not be specified.&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;If the data type of source is not of the type p with length 16 and without decimal places, then the content of source is converted to this data type.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The digits of the interim result are assigned to data object destination right-aligned and without&lt;/EM&gt; +/- &lt;EM&gt;sign. Any additional places in destination are filled with leading zeros. If the length of destination is not sufficient, the assigned variable is truncated from the left.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use UNPACK statement if you read not only the short reference, excuse me for assaulting you without reason &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you will soon have the chance to try my sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jan 2011 22:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532049#M1561590</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-08T22:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532050#M1561591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we want to replace the zeroes in the NUMC field with space we can use NO-ZERO addition. Why ASSIGN to a CHAR variable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: lv_numc(26) TYPE n.

CLEAR lv_numc. WRITE: lv_numc.

* You can suppress the zeroes with NO-ZERO adddition
IF lv_numc IS INITIAL.
  WRITE lv_numc TO lv_numc NO-ZERO.
  WRITE: / lv_numc.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frankly i didn't understand the OP's requirement. Does he want to replace the zeroes in NUMC field with blanks or otherwise?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 04:45:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532050#M1561591</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-01-10T04:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: READ DATASET populating some blank values in a numc variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532051#M1561592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yess. I'm out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 11:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-dataset-populating-some-blank-values-in-a-numc-variable/m-p/7532051#M1561592</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-10T11:01:34Z</dc:date>
    </item>
  </channel>
</rss>

