<?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 Help with code for Selection Box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267317#M780858</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the below code in the Data Section of the infoset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF IT_TYP-SALE OCCURS 0,&lt;/P&gt;&lt;P&gt;  LTEXT TYPE TVKOT-VTEXT,&lt;/P&gt;&lt;P&gt;END OF IT_TYP-SALE.&lt;/P&gt;&lt;P&gt;DATA: IT_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code works fine, but when the user presses F4 in the box which opens the header displayed is &lt;STRONG&gt;'Name'&lt;/STRONG&gt; which is the header for TVKOT-VTEXT. I would like to know how i can define a custom header Eg: &lt;STRONG&gt;'Company Name'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my problem is clear, await assitance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 09:39:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T09:39:16Z</dc:date>
    <item>
      <title>Help with code for Selection Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267317#M780858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the below code in the Data Section of the infoset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF IT_TYP-SALE OCCURS 0,&lt;/P&gt;&lt;P&gt;  LTEXT TYPE TVKOT-VTEXT,&lt;/P&gt;&lt;P&gt;END OF IT_TYP-SALE.&lt;/P&gt;&lt;P&gt;DATA: IT_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code works fine, but when the user presses F4 in the box which opens the header displayed is &lt;STRONG&gt;'Name'&lt;/STRONG&gt; which is the header for TVKOT-VTEXT. I would like to know how i can define a custom header Eg: &lt;STRONG&gt;'Company Name'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my problem is clear, await assitance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 09:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267317#M780858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T09:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with code for Selection Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267318#M780859</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;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of TVKOT-VTEXT use T001-BUTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;awrd points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bhupal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 09:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267318#M780859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T09:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help with code for Selection Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267319#M780860</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;Thanks for the inputs, what i really need is how i can define a custom text. As the header i want to display is not a standard field header. So in that case how should i declare?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; The Company Name was only a example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion on how i can have a custom name appearing as the header instead of the table field header?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vivek on Jan 8, 2008 9:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 09:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-code-for-selection-box/m-p/3267319#M780860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T09:52:31Z</dc:date>
    </item>
  </channel>
</rss>

