<?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 Data Dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245713#M774682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi we are facing some problem in QM report we want to convert character field in to numeric as we want the total and average of the field .table name:- qamr- field name:- Original-Input. Waiting for the reply Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Dec 2007 09:55:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-31T09:55:55Z</dc:date>
    <item>
      <title>Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245713#M774682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi we are facing some problem in QM report we want to convert character field in to numeric as we want the total and average of the field .table name:- qamr- field name:- Original-Input. Waiting for the reply Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 09:55:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245713#M774682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T09:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245714#M774683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Try to use FM   'CHAR_NUMC_CONVERSION'...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helpful &lt;/P&gt;&lt;P&gt;Plz Reward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx &lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245714#M774683</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2007-12-31T10:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245715#M774684</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;Please use this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  BEGIN OF i_qamr OCCURS 0,&lt;/P&gt;&lt;P&gt;    original_input LIKE qamr-original_input,&lt;/P&gt;&lt;P&gt;  END OF i_qamr,&lt;/P&gt;&lt;P&gt;  BEGIN OF i_qamr1 OCCURS 0,&lt;/P&gt;&lt;P&gt;    input TYPE N,&lt;/P&gt;&lt;P&gt;  END OF i_qamr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT original_input&lt;/P&gt;&lt;P&gt;  FROM qamr&lt;/P&gt;&lt;P&gt;  INTO TABLE i_qamr&lt;/P&gt;&lt;P&gt; WHERE original_input NE SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;  LOOP AT i_qamr.&lt;/P&gt;&lt;P&gt;    IF i_qamr-original_input CA sy-abcde.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;only numeric values are loaded in this table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      i_qamr1-input = i_qamr-original_input.&lt;/P&gt;&lt;P&gt;      APPEND i_qamr1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  IF i_qamr1[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    LOOP AT i_qamr1.&lt;/P&gt;&lt;P&gt;      WRITE:/ i_qamr1-input.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this serves your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:14:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/3245715#M774684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:14:53Z</dc:date>
    </item>
  </channel>
</rss>

