<?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: Regading Including Text in Smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369334#M808688</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;This long text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have to pass &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TDID&lt;/P&gt;&lt;P&gt;TDOBJECT&lt;/P&gt;&lt;P&gt;TDNAME&lt;/P&gt;&lt;P&gt;TDSPRAS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to the FM READ_TEXT, then only we will get its content&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Feb 2008 09:17:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-06T09:17:33Z</dc:date>
    <item>
      <title>Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369332#M808686</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; In vf02 they are giving some text . that text is going and saving in STXL table. I want to include this text in smart form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After choosing include text in General attributes. I am giving &lt;/P&gt;&lt;P&gt;text object is vbbk&lt;/P&gt;&lt;P&gt;Text id is time&lt;/P&gt;&lt;P&gt;language en&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i don't know what i want to give in text name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S.Murali Naidu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Murali Sreerama on Feb 6, 2008 10:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369332#M808686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369333#M808687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use FM "read_text".&lt;/P&gt;&lt;P&gt;Here's a sample piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: I_F02LINES LIKE STANDARD TABLE OF TLINE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;data :Lv_name type THEAD-TDNAME.&lt;/P&gt;&lt;P&gt;Lv_name = W_EKKO-EBELN.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   CLIENT                        = SY-MANDT&lt;/P&gt;&lt;P&gt;    ID                            = 'F02'&lt;/P&gt;&lt;P&gt;    LANGUAGE                      = 'E'&lt;/P&gt;&lt;P&gt;    NAME                          = Lv_name&lt;/P&gt;&lt;P&gt;    OBJECT                        = 'EKKO'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    LINES                         = I_F02LINES&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ID                            = 1&lt;/P&gt;&lt;P&gt;   LANGUAGE                      = 2&lt;/P&gt;&lt;P&gt;   NAME                          = 3&lt;/P&gt;&lt;P&gt;   NOT_FOUND                     = 4&lt;/P&gt;&lt;P&gt;   OBJECT                        = 5&lt;/P&gt;&lt;P&gt;   REFERENCE_CHECK               = 6&lt;/P&gt;&lt;P&gt;   WRONG_ACCESS_TO_ARCHIVE       = 7&lt;/P&gt;&lt;P&gt;   OTHERS                        = 8&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;READ TABLE I_F02LINES INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kavitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369333#M808687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369334#M808688</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;This long text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have to pass &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TDID&lt;/P&gt;&lt;P&gt;TDOBJECT&lt;/P&gt;&lt;P&gt;TDNAME&lt;/P&gt;&lt;P&gt;TDSPRAS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to the FM READ_TEXT, then only we will get its content&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369334#M808688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369335#M808689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u need to pass vbeln to the name field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:19:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369335#M808689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369336#M808690</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;Hope this may be helping you,please refer this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to create a text element for this. In the text element type, you have a drop-down where you select include text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are corresponding boxes for OBJECT &amp;amp; ID where you type in TEXT &amp;amp; ADRS respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You gotto define 2 global variables: V_TXKOP &amp;amp; V_SPRAS which you have to populate from T024E &amp;amp; EKKO respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an include text in the header window&lt;/P&gt;&lt;P&gt;and specify&lt;/P&gt;&lt;P&gt;Text Name - &amp;amp;T024E-TXKOP&amp;amp; &lt;/P&gt;&lt;P&gt;Text Object - TEXT&lt;/P&gt;&lt;P&gt;Text ID - ADRS&lt;/P&gt;&lt;P&gt;Language - &amp;amp;EKKO-SPRAS&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369336#M808690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regading Including Text in Smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369337#M808691</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;Please use this code:: (reward pts)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA gt_text LIKE tline OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: gt_lines.&lt;/P&gt;&lt;P&gt;REFRESH gt_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   CLIENT                        = SY-MANDT&lt;/P&gt;&lt;P&gt;    id                            = 'your text id'&lt;/P&gt;&lt;P&gt;    language                      = sy-langu&lt;/P&gt;&lt;P&gt;    name                          = your billing doc no&lt;/P&gt;&lt;P&gt;    object                        = 'your obj id'&lt;/P&gt;&lt;P&gt;   ARCHIVE_HANDLE                = 0&lt;/P&gt;&lt;P&gt;   LOCAL_CAT                     = ' '&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   HEADER                        =&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    lines                         = gt_text&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ID                            = 1&lt;/P&gt;&lt;P&gt;LANGUAGE                      = 2&lt;/P&gt;&lt;P&gt;   NAME                          = 3&lt;/P&gt;&lt;P&gt;   NOT_FOUND                     = 4&lt;/P&gt;&lt;P&gt;   OBJECT                        = 5&lt;/P&gt;&lt;P&gt;   REFERENCE_CHECK               = 6&lt;/P&gt;&lt;P&gt;   WRONG_ACCESS_TO_ARCHIVE       = 7&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;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&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;&lt;/P&gt;&lt;P&gt;CLEAR: gt_line7,&lt;/P&gt;&lt;P&gt;gt_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;then to display that&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT   gt_text.&lt;/P&gt;&lt;P&gt;IF NOT gt_text-tdline IS INITIAL.&lt;/P&gt;&lt;P&gt;CONCATENATE gt_line gt_text-tdline INTO gt_line SEPARATED BY space.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: rohitaash sharma on Feb 6, 2008 10:22 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 09:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regading-including-text-in-smart-forms/m-p/3369337#M808691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T09:22:10Z</dc:date>
    </item>
  </channel>
</rss>

