<?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: Read text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079598#M97377</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess I forgot to tell you the table name, huh?  Sorry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text in VL03n, we have to find out the object and id.  So here is a little tip.   Get a delivery note that does not have the text in question.  Go into Vl02n and put some text in the text editor for the specific text, you mentioned "internal note".  Save it.  Now go to SE16, enter STXH as the table.  This table holds all of the text headers.  Enter your user name in the selection screen and today's date as the date.  You should get the header record for the text that you just created.  This will give you the object, id, and name.  Name is probably going to be the delivery note number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it clear?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Oct 2005 19:02:43 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2005-10-13T19:02:43Z</dc:date>
    <item>
      <title>Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079594#M97373</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;In VL03N I could see the text for internal note at the header level. I want to retrieve that text. How should i know the Id, Object &amp;amp; Name to pass in read_text FM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 18:33:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079594#M97373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T18:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079595#M97374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Enter some text in VL02N for that text in question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE16, enter STXH as your table name, now  enter your name is the create by field and maybe even the date.  Take a look at the entry that you see.  This is probably the text that you just created, here you will find the object and id and even how the name is built.  Probably the delivery note number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See SE75.  Take a look at the text objects and the ids behind the objects.  This is just for your information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can now use the object id and name to send to the function module READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  call function 'READ_TEXT'
       exporting
            client                  = sy-mandt
            id                      = id
            language                = sy-langu
            name                    = name
            object                  = object
       tables
            lines                   = xtext
       exceptions
            id                      = 1
            language                = 2
            name                    = 3
            not_found               = 4
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            others                  = 8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 18:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079595#M97374</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T18:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079596#M97375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not get you clearly. In se16 it will ask me the table name. where from will i get the text id, text object and name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. be more clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 18:58:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079596#M97375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T18:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079597#M97376</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;Object - VBBK&lt;/P&gt;&lt;P&gt;Name - Delivery Number&lt;/P&gt;&lt;P&gt;ID - ( Either find from TTXID for Object = VBBK and see &lt;/P&gt;&lt;P&gt;       if there is match to "Internal Note" in &lt;/P&gt;&lt;P&gt;        description cloumn.&lt;/P&gt;&lt;P&gt;       or simply goto table STXH , object = VBBK,&lt;/P&gt;&lt;P&gt;        name = deliv number with correct input in 10 &lt;/P&gt;&lt;P&gt;        digits , pad it with leading 0s to make it 10 &lt;/P&gt;&lt;P&gt;         digits. Here you can see the text id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:00:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079597#M97376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T19:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079598#M97377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess I forgot to tell you the table name, huh?  Sorry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text in VL03n, we have to find out the object and id.  So here is a little tip.   Get a delivery note that does not have the text in question.  Go into Vl02n and put some text in the text editor for the specific text, you mentioned "internal note".  Save it.  Now go to SE16, enter STXH as the table.  This table holds all of the text headers.  Enter your user name in the selection screen and today's date as the date.  You should get the header record for the text that you just created.  This will give you the object, id, and name.  Name is probably going to be the delivery note number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it clear?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079598#M97377</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T19:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079599#M97378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response. I got the msg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079599#M97378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T19:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079600#M97379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want this text to be included in the SAP Script. Can I write an include statement to do this. If so, pls. give me the syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079600#M97379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T19:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079601#M97380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

/:  INCLUDE &amp;amp;NAME&amp;amp; OBJECT THE_OBJECT ID THE_ID PARAGRAPH ZT   


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please remember to award points for helpful answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079601#M97380</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T19:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079602#M97381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;/: INCLUDE STXH-TDNAME OBJECT STXH-TDOBJECT ID STXH-TDID LANGUAGE EN PARAGRAPH P1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;In your program define STXH as TABLES STXH and fill it with correct values. The paragrapgh P1 can be replaced with the one which exists on your script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Dont forget to reward if answers were helpful )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079602#M97381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T19:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079603#M97382</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;Another way to get all the text ids is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In transaction VL03N, in second screen use menu:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Goto-&amp;gt;Header-&amp;gt;Texts"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the next screen, there should be a button for &lt;/P&gt;&lt;P&gt;"Display Log" (Icon looks like a scroll).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click that and you should see all relevant Text OBJECTs and IDs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079603#M97382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T19:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079604#M97383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great tip, Ramesh.  I never knew that you could do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 19:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079604#M97383</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-13T19:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079605#M97384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Subbu,&lt;/P&gt;&lt;P&gt;Text Maintenance and determination is specific to implementation. The Internal Note you specified in your mail may be specific to your implimentation and at other projects, they might be calling it with another name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would advise you to do one thing. Open the Delivery Document using VL03N and from the menu bar option GOTO-HEADER-TEXTS..&lt;/P&gt;&lt;P&gt;From the resulting window, you will see the Text Object and associated long text box. Under Long text box you will see an Icon for CALL LOG. Hit the Call Log Push Botton which will take you to "Text Determination Analysis:Basic View". Hit on the Text + Icon attached to Internal Note. You will see the Text Object ID etc.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this answers your query and there are at least two more ways I know this can be done and could many other. But this most preferred way to know the text determination at the Document level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you are looking for anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 20:19:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079605#M97384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T20:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Read text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079606#M97385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks srini, my problem is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 22:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/1079606#M97385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T22:38:29Z</dc:date>
    </item>
  </channel>
</rss>

