<?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: SO10 text in function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583858#M2009501</link>
    <description>&lt;P&gt;If you use an ITF text without framework (SAPScript, Smart Form, etc.) then you must use the &lt;STRONG&gt;SAPScript API&lt;/STRONG&gt; to replace the symbols. Look at help in SAP Library or forum to see how to replace the symbols.&lt;/P&gt;&lt;P&gt;(EDIT: the link given by Frederic provides an example of the SAPScript API)&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jun 2022 07:14:16 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2022-06-14T07:14:16Z</dc:date>
    <item>
      <title>SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583855#M2009498</link>
      <description>&lt;P&gt;Here is the line of code i have written &lt;/P&gt; PR_ID = SENDER-INSTID. 
  &lt;BR /&gt;
  &lt;BR /&gt; SELECT SINGLE ERNAM,
  &lt;BR /&gt; ERDAT
  &lt;BR /&gt; FROM EBAN
  &lt;BR /&gt; INTO @DATA(LS_EBAN)
  &lt;BR /&gt; WHERE BANFN EQ @PR_ID.
  &lt;BR /&gt;
  &lt;BR /&gt;IF not LS_EBAN is initial.
  &lt;BR /&gt; CALL FUNCTION 'ISR_GET_USER_DETAILS'
  &lt;BR /&gt; EXPORTING
  &lt;BR /&gt; ID_USER_ID = LS_EBAN-ERNAM
  &lt;BR /&gt; CHANGING
  &lt;BR /&gt; IS_USER_DATA = LT_USER_NAME
  &lt;BR /&gt; EXCEPTIONS
  &lt;BR /&gt; USER_NOT_FOUND = 1
  &lt;BR /&gt; OTHERS = 2.
  &lt;BR /&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.
  &lt;BR /&gt;* Implement suitable error handling here
  &lt;BR /&gt; ENDIF.
  &lt;BR /&gt;ENDIF.
  &lt;BR /&gt;
  &lt;BR /&gt; CALL FUNCTION 'READ_TEXT'
  &lt;BR /&gt; EXPORTING
  &lt;BR /&gt; ID = GC_ID
  &lt;BR /&gt; LANGUAGE = SY-LANGU
  &lt;BR /&gt; NAME = GC_DME_REFUS
  &lt;BR /&gt; OBJECT = GC_OBJ
  &lt;BR /&gt; TABLES
  &lt;BR /&gt; LINES = GT_LINES
  &lt;BR /&gt; EXCEPTIONS
  &lt;BR /&gt; ID = 1
  &lt;BR /&gt; LANGUAGE = 2
  &lt;BR /&gt; NAME = 3
  &lt;BR /&gt; NOT_FOUND = 4
  &lt;BR /&gt; OBJECT = 5
  &lt;BR /&gt; REFERENCE_CHECK = 6
  &lt;BR /&gt; WRONG_ACCESS_TO_ARCHIVE = 7
  &lt;BR /&gt;
  &lt;P&gt; OTHERS = 8.&lt;/P&gt;
  &lt;P&gt;And actually i am not getting any sy-subrc errors in this code.&lt;/P&gt;
  &lt;P&gt;However when i am displaying this text i am not getting the variables updated.&lt;/P&gt;
  &lt;P&gt;Below is the text i have made in so10&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2057847-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 07:08:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583855#M2009498</guid>
      <dc:creator>former_member806481</dc:creator>
      <dc:date>2022-06-14T07:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583856#M2009499</link>
      <description>&lt;P&gt;Why do you want the system update the variable ? did you see any part of your code doing this task ? &lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 07:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583856#M2009499</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-06-14T07:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583857#M2009500</link>
      <description>&lt;P&gt;&lt;A href="https://blogs.sap.com/2021/05/11/new-way-of-dynamic-variable-replacement-in-a-standard-text/" target="test_blank"&gt;https://blogs.sap.com/2021/05/11/new-way-of-dynamic-variable-replacement-in-a-standard-text/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 07:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583857#M2009500</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-06-14T07:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583858#M2009501</link>
      <description>&lt;P&gt;If you use an ITF text without framework (SAPScript, Smart Form, etc.) then you must use the &lt;STRONG&gt;SAPScript API&lt;/STRONG&gt; to replace the symbols. Look at help in SAP Library or forum to see how to replace the symbols.&lt;/P&gt;&lt;P&gt;(EDIT: the link given by Frederic provides an example of the SAPScript API)&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 07:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583858#M2009501</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-14T07:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583859#M2009502</link>
      <description>&lt;P&gt;thank you for your answers i was able to search more efficiently i should say. &lt;/P&gt;&lt;P&gt;FOR ANSWER i refered the below mentioned blog&lt;/P&gt;&lt;P&gt;&lt;A href="https://abapinho.com/en/2012/04/mete-variaveis-dentro-de-textos-standard/" target="test_blank"&gt;https://abapinho.com/en/2012/04/mete-variaveis-dentro-de-textos-standard/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 07:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583859#M2009502</guid>
      <dc:creator>former_member806481</dc:creator>
      <dc:date>2022-06-14T07:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: SO10 text in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583860#M2009503</link>
      <description>&lt;P&gt;thank you for your answers i was able to search more efficiently i should say.&lt;/P&gt;&lt;P&gt;FOR ANSWER i refered the below mentioned blog&lt;/P&gt;&lt;P&gt;&lt;A rel="nofollow" href="https://abapinho.com/en/2012/04/mete-variaveis-dentro-de-textos-standard" target="_blank"&gt;https://abapinho.com/en/2012/04/mete-variaveis-dentro-de-textos-standard&lt;/A&gt;/&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 08:04:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so10-text-in-function-module/m-p/12583860#M2009503</guid>
      <dc:creator>former_member806481</dc:creator>
      <dc:date>2022-06-14T08:04:41Z</dc:date>
    </item>
  </channel>
</rss>

