<?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: Text table for a DB table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138496#M113860</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;use this FM DDUT_TEXTTABLE_GET to get the text table.&lt;/P&gt;&lt;P&gt;of a dictionary table.pass the table name and get the text table&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>Tue, 14 Feb 2006 07:21:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-14T07:21:39Z</dc:date>
    <item>
      <title>Text table for a DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138495#M113859</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;Is there a FM that can give me the text table of a DB table or how can I find the text table for a DB table programatically?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 07:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138495#M113859</guid>
      <dc:creator>saurabh_chaturvedi</dc:creator>
      <dc:date>2006-02-14T07:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Text table for a DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138496#M113860</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;use this FM DDUT_TEXTTABLE_GET to get the text table.&lt;/P&gt;&lt;P&gt;of a dictionary table.pass the table name and get the text table&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>Tue, 14 Feb 2006 07:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138496#M113860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T07:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Text table for a DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138497#M113861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the sample code for that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztable_find_texttable.

DATA: texttable TYPE dd08v-tabname.
CALL FUNCTION 'DDUT_TEXTTABLE_GET'
  EXPORTING
    tabname   = 'MARA'
  IMPORTING
    texttable = texttable.

IF sy-subrc = 0.

  WRITE: 'text table is ' , texttable.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;out put is MAKT. "this is text table for mara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 07:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138497#M113861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T07:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Text table for a DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138498#M113862</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;If your problem solved, please reward and close the thread.&lt;/P&gt;&lt;P&gt;please let me know if you have any problem.&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>Tue, 14 Feb 2006 08:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-table-for-a-db-table/m-p/1138498#M113862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T08:16:47Z</dc:date>
    </item>
  </channel>
</rss>

