<?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: ALV issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246959#M143844</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hopu u understood my answer previous answer!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the names which u specify in the fieldcatalog and the internal table should be same so that the fieldcatalog will recognize which value to pick and put in that field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Mar 2006 11:26:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-27T11:26:08Z</dc:date>
    <item>
      <title>ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246953#M143838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guy's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am working on M&amp;amp;S issue,i change existing ALV to add&lt;/P&gt;&lt;P&gt;new field ,but it's displaying filed and no value for&lt;/P&gt;&lt;P&gt;that field,when i check in debugging mode,value exist&lt;/P&gt;&lt;P&gt;for particular field,pls let me know what's the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guy's for your reference following is the code:&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       = W_REPID&lt;/P&gt;&lt;P&gt;*MOD01{&lt;/P&gt;&lt;P&gt;      I_CALLBACK_PF_STATUS_SET = 'SET_STATUS'               "MOD01&lt;/P&gt;&lt;P&gt;      I_SAVE                   = 'X'&lt;/P&gt;&lt;P&gt;*MOD01}&lt;/P&gt;&lt;P&gt;      I_GRID_TITLE             = TEXT-T01&lt;/P&gt;&lt;P&gt;      IS_LAYOUT                = W_LAYOUT&lt;/P&gt;&lt;P&gt;      IT_FIELDCAT              = T_FIELDCAT_ALV&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      T_OUTTAB                 = T_FINAL&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      PROGRAM_ERROR            = 1&lt;/P&gt;&lt;P&gt;      OTHERS                   = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE S999(ZK) WITH TEXT-E04.    "No Valid data found&lt;/P&gt;&lt;P&gt;    STOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM FIELDCAT_BUILD USING FP_FIELDNAME&lt;/P&gt;&lt;P&gt;                          FP_SELTEXT_M&lt;/P&gt;&lt;P&gt;                          FP_OUTPUTLEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_INDEX = W_INDEX + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_FIELDCAT_ALV-FIELDNAME   = FP_FIELDNAME.&lt;/P&gt;&lt;P&gt;  W_FIELDCAT_ALV-TABNAME     = C_TAB_NAME.&lt;/P&gt;&lt;P&gt;  W_FIELDCAT_ALV-SELTEXT_M   = FP_SELTEXT_M.&lt;/P&gt;&lt;P&gt;  W_FIELDCAT_ALV-OUTPUTLEN   = FP_OUTPUTLEN.&lt;/P&gt;&lt;P&gt;  W_FIELDCAT_ALV-COL_POS     = W_INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND W_FIELDCAT_ALV TO T_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;  CLEAR  W_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " fieldcat_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM FIELDCAT_BUILD USING : 'WERKS'      TEXT-H01 5,&lt;/P&gt;&lt;P&gt;                               'AUART'      TEXT-H02 10,&lt;/P&gt;&lt;P&gt;                               'AUFNR'      TEXT-H03 12,&lt;/P&gt;&lt;P&gt;                               'GAMNG'      TEXT-H04 16,&lt;/P&gt;&lt;P&gt;                               'MAINM'      TEXT-H05 18,&lt;/P&gt;&lt;P&gt;                               'MAKTX'      TEXT-H06 35,&lt;/P&gt;&lt;P&gt;                               'MATNR'      TEXT-H07 18,&lt;/P&gt;&lt;P&gt;                               'MTEXT'      TEXT-H08 35,&lt;/P&gt;&lt;P&gt;                               'STPRS'      TEXT-H09 16,&lt;/P&gt;&lt;P&gt;                               'MNGKO'      TEXT-H19 16,&lt;/P&gt;&lt;P&gt;                               'BOMRQ'      TEXT-H10 16,&lt;/P&gt;&lt;P&gt;                               'REQ_QUAN'   TEXT-H11 16,&lt;/P&gt;&lt;P&gt;                               'WITHD_QUAN' TEXT-H12 16,&lt;/P&gt;&lt;P&gt;                               'REM_QTY'    TEXT-H13 16,&lt;/P&gt;&lt;P&gt;                               'REM_AMT'    TEXT-H14 16,&lt;/P&gt;&lt;P&gt;                               'BOM_IND'    TEXT-H15 17,&lt;/P&gt;&lt;P&gt;                               'REL_IND'    TEXT-H16 8,&lt;/P&gt;&lt;P&gt;                               'DEL_IND'    TEXT-H17 9,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;'BOM_MAT'  TEXT-H17 9,]&amp;lt;/b&amp;gt;                              &lt;/P&gt;&lt;P&gt;'POSIT'      TEXT-H18 17.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 10:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246953#M143838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T10:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246954#M143839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see that you changed the field catalog because of which its showing up in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you modified the table T_FINAL to add the new column and also are you updating the column with the data you want to display? Couldn't see that in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 10:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246954#M143839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T10:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246955#M143840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt; if the field is displayed in the output then the fieldcatalogue is not the problem..&lt;/P&gt;&lt;P&gt; there shud be no value present in T_FINAL table fro thet field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 10:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246955#M143840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T10:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246956#M143841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Have u declared the added field in your internal table with same name as in ur fieldcatalog i.e BOM_MAT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 10:33:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246956#M143841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T10:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246957#M143842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;show your T_FINAL declaration. is there a field BOM_MAT in your internal table check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 10:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246957#M143842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T10:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246958#M143843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guy's &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;issue is solved m i didn't declare that in my internal&lt;/P&gt;&lt;P&gt;table,i declared that with some other name,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me why that happen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 11:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246958#M143843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T11:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246959#M143844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hopu u understood my answer previous answer!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the names which u specify in the fieldcatalog and the internal table should be same so that the fieldcatalog will recognize which value to pick and put in that field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 11:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246959#M143844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T11:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: ALV issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246960#M143845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you give wrong name it will look for that field in internal table, if it is not there then it will not display any value. that is what happened in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2006 11:34:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue/m-p/1246960#M143845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-27T11:34:52Z</dc:date>
    </item>
  </channel>
</rss>

