<?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: SELECT PROBLEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012869#M711989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Put DOT instead of COMMA in the below statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: LD_COLOR(1) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Nov 2007 09:27:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-11T09:27:10Z</dc:date>
    <item>
      <title>SELECT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012867#M711987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me with this code. The system give me this message&lt;/P&gt;&lt;P&gt;"Unable to interpret "A~PRODNUM". Possible causes of error: Incorrect		spelling or comma error."		&lt;/P&gt;&lt;P&gt;Hope someone can help with  this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks very much.&lt;/P&gt;&lt;P&gt;gerald&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSAMP_ALV no standard page heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: slis.&lt;/P&gt;&lt;P&gt;tables: zstore_prod, zprod_stan.&lt;/P&gt;&lt;P&gt;types: begin of itab,&lt;/P&gt;&lt;P&gt;            prodnum like zstore_prod-prodnum,&lt;/P&gt;&lt;P&gt;            prodname like zstore_prod-prodname,&lt;/P&gt;&lt;P&gt;            prodmanuf like zstore_prod-prodmanuf,&lt;/P&gt;&lt;P&gt;            class like zstore_prod-class,&lt;/P&gt;&lt;P&gt;            mandat like zprod_stan-mandat,&lt;/P&gt;&lt;P&gt;            typpak like zprod_stan-typpak,&lt;/P&gt;&lt;P&gt;            LINE_COLOR(4) TYPE C,&lt;/P&gt;&lt;P&gt;     end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_tab type standard table of itab initial size 0,&lt;/P&gt;&lt;P&gt;      wa_tab type itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: GD_LAYOUT TYPE SLIS_LAYOUT_ALV,&lt;/P&gt;&lt;P&gt;      GD_REPID TYPE SY-REPID,&lt;/P&gt;&lt;P&gt;      fieldcat type slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      t_fieldcat type slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;  select-options: prodnum for zstore_prod-prodnum.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;PERFORM DATA_RETRIEVAL.&lt;/P&gt;&lt;P&gt;PERFORM BLD_FLDCAT.&lt;/P&gt;&lt;P&gt;PERFORM BDL_LAYOUT.&lt;/P&gt;&lt;P&gt;PERFORM DISPLAY_ALV_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BLD_FLDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODNUM'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Number'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODNAME'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Name'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 2.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODMANUF'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Manufacturer'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 3.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'CLASS'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Class'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 4.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'MANDAT'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Manufacturing Date'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 5.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'TYPPAK'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Type of Packaging'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 6.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDL_LAYOUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GD_LAYOUT-NO_INPUT = 'X'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-CONFIRMATION_PROMPT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM DATA_RETRIEVAL.&lt;/P&gt;&lt;P&gt;data: LD_COLOR(1) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a&lt;SUB&gt;prodnum a&lt;/SUB&gt;prodname a&lt;SUB&gt;prodmanuf a&lt;/SUB&gt;class b&lt;SUB&gt;mandat  b&lt;/SUB&gt;typpak&lt;/P&gt;&lt;P&gt;        from zstore_prod as a left outer join zprod_stan as b on&lt;/P&gt;&lt;P&gt;       a&lt;SUB&gt;prodnum = b&lt;/SUB&gt;prodnum into table t_tab&lt;/P&gt;&lt;P&gt;       where a~prodnum in prodnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_tab INTO wa_tab.&lt;/P&gt;&lt;P&gt;LD_COLOR = LD_COLOR + 1.&lt;/P&gt;&lt;P&gt;IF LD_COLOR = 3.&lt;/P&gt;&lt;P&gt;   LD_COLOR = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE  'C' LD_COLOR '10' INTO wa_tab-LINE_COLOR.&lt;/P&gt;&lt;P&gt;MODIFY t_tab FROM wa_tab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM DISPLAY_ALV_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        GD_REPID = SY-REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;                EXPORTING&lt;/P&gt;&lt;P&gt;                I_CALLBACK_PROGRAM  = GD_REPID&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               I_CALLBACK_TOP_OF_PAGE = slis_ev_top_of_page&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                IS_LAYOUT           = GD_LAYOUT&lt;/P&gt;&lt;P&gt;                IT_FIELDCAT         = t_fieldcat&lt;/P&gt;&lt;P&gt;                TABLES&lt;/P&gt;&lt;P&gt;                   T_OUTTAB            = t_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 07:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012867#M711987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T07:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012868#M711988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZSAMP_ALV no standard page heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: slis.&lt;/P&gt;&lt;P&gt;tables: zstore_prod, zprod_stan.&lt;/P&gt;&lt;P&gt;types: begin of itab,&lt;/P&gt;&lt;P&gt;prodnum like zstore_prod-prodnum,&lt;/P&gt;&lt;P&gt;prodname like zstore_prod-prodname,&lt;/P&gt;&lt;P&gt;prodmanuf like zstore_prod-prodmanuf,&lt;/P&gt;&lt;P&gt;class like zstore_prod-class,&lt;/P&gt;&lt;P&gt;mandat like zprod_stan-mandat,&lt;/P&gt;&lt;P&gt;typpak like zprod_stan-typpak,&lt;/P&gt;&lt;P&gt;LINE_COLOR(4) TYPE C,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_tab type standard table of itab initial size 0,&lt;/P&gt;&lt;P&gt;wa_tab type itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: GD_LAYOUT TYPE SLIS_LAYOUT_ALV,&lt;/P&gt;&lt;P&gt;GD_REPID TYPE SY-REPID,&lt;/P&gt;&lt;P&gt;fieldcat type slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;t_fieldcat type slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;select-options: prodnum for zstore_prod-prodnum.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;PERFORM DATA_RETRIEVAL.&lt;/P&gt;&lt;P&gt;PERFORM BLD_FLDCAT.&lt;/P&gt;&lt;P&gt;PERFORM BDL_LAYOUT.&lt;/P&gt;&lt;P&gt;PERFORM DISPLAY_ALV_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BLD_FLDCAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODNUM'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Number'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODNAME'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Name'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 2.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'PRODMANUF'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Manufacturer'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 3.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'CLASS'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Class'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 4.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'MANDAT'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Manufacturing Date'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 5.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;fieldcat-fieldname = 'TYPPAK'.&lt;/P&gt;&lt;P&gt;fieldcat-seltext_l = 'Product Type of Packaging'.&lt;/P&gt;&lt;P&gt;fieldcat-col_pos = 6.&lt;/P&gt;&lt;P&gt;append fieldcat to t_fieldcat.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDL_LAYOUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GD_LAYOUT-NO_INPUT = 'X'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'.&lt;/P&gt;&lt;P&gt;GD_LAYOUT-CONFIRMATION_PROMPT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM DATA_RETRIEVAL.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: LD_COLOR(1) type c.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;urs was &amp;lt;b&amp;gt;data: LD_COLOR(1) type c,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;** Correct the above data statement and it will solve ur problem.. it should end with dot not with Comma&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a&lt;SUB&gt;prodnum a&lt;/SUB&gt;prodname a&lt;SUB&gt;prodmanuf a&lt;/SUB&gt;class b&lt;SUB&gt;mandat b&lt;/SUB&gt;typpak&lt;/P&gt;&lt;P&gt;from zstore_prod as a left outer join zprod_stan as b on&lt;/P&gt;&lt;P&gt;a&lt;SUB&gt;prodnum = b&lt;/SUB&gt;prodnum into table t_tab&lt;/P&gt;&lt;P&gt;where a~prodnum in prodnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_tab INTO wa_tab.&lt;/P&gt;&lt;P&gt;LD_COLOR = LD_COLOR + 1.&lt;/P&gt;&lt;P&gt;IF LD_COLOR = 3.&lt;/P&gt;&lt;P&gt;LD_COLOR = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE 'C' LD_COLOR '10' INTO wa_tab-LINE_COLOR.&lt;/P&gt;&lt;P&gt;MODIFY t_tab FROM wa_tab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM DISPLAY_ALV_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GD_REPID = SY-REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = GD_REPID&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_CALLBACK_TOP_OF_PAGE = slis_ev_top_of_page&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IS_LAYOUT = GD_LAYOUT&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = t_fieldcat&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;T_OUTTAB = t_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 07:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012868#M711988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T07:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012869#M711989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Put DOT instead of COMMA in the below statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: LD_COLOR(1) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 09:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-problem/m-p/3012869#M711989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T09:27:10Z</dc:date>
    </item>
  </channel>
</rss>

