<?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>Question Re: Dynamic assignment variant for Field-symbols not allowed in Enterprise Resource Planning Q&amp;A</title>
    <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14106544#M4216281</link>
    <description>The warning is about ASSIGN (variable_containing_variable_name) TO &amp;lt;field_symbol&amp;gt;, so technically speaking it's exactly the same case. For this one, the replacement is ASSIGN instance-&amp;gt;(variable_containing_attribute_name) TO &amp;lt;field_symbol&amp;gt;. Note that, for now, abap2xlsx contains code which compiles in all versions since ABAP 7.02, so it cannot contain the latter form, maybe in the future there will be some arbitration if ABAP loses its ascending compatibility.</description>
    <pubDate>Tue, 20 May 2025 10:57:23 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2025-05-20T10:57:23Z</dc:date>
    <item>
      <title>Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaq-p/14028806</link>
      <description>&lt;P&gt;I have a class in which I have defined various Text elements.&lt;BR /&gt;For eg.&lt;BR /&gt;H01=Title1&lt;BR /&gt;H02=Title2&lt;BR /&gt;H03=Title3&lt;BR /&gt;H04=Title4&lt;BR /&gt;etc.&lt;BR /&gt;I am trying to print all the titles in my class. I have a loop in my class and I am building the text element name dynamically.&lt;/P&gt;&lt;LI-CODE lang="abap"&gt;lv_title = `TEXT-H` &amp;amp;&amp;amp; conv ty_n2( sy-tabix ).&lt;/LI-CODE&gt;&lt;P&gt;Now, I use this variable to dynamically access the text element in the program&lt;/P&gt;&lt;LI-CODE lang="abap"&gt;assign (lv_title) to &amp;lt;title&amp;gt;.&lt;/LI-CODE&gt;&lt;P&gt;Class is syntactically correct and executes fine with expected results.&lt;/P&gt;&lt;P&gt;But, I get a warning saying: "The old variant of "&amp;lt;dynamic-object&amp;gt;" should not be used in the current ABAP language version."&lt;/P&gt;&lt;P&gt;If this is considered the "old" variant, what is the equivalent "new" variant to access variables by name?&lt;/P&gt;&lt;P&gt;I am on ABAP Cloud version, so that limits the commands available to me (for eg. READ TEXTPOOL isn't available to me)&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 03:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaq-p/14028806</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-02-27T03:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14028977#M4209398</link>
      <description>&lt;P&gt;You can use left = right&amp;nbsp;&lt;/P&gt;&lt;P&gt;something like this -----&amp;nbsp; &amp;nbsp;&amp;lt;title&amp;gt; = lv_title.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 08:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14028977#M4209398</guid>
      <dc:creator>shantraj6</dc:creator>
      <dc:date>2025-02-27T08:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029052#M4209410</link>
      <description>&lt;P&gt;Read the ABAP Cloud documentation to see the latest dynamic variants available. I currently see: "This syntax is only supported temporarily in the current ABAP language version and must be replaced with valid syntax for that version [...] This variant should not be used any more. Especially for accessing structure components, other variants are preferable." So, it means, use: ASSIGN COMPONENT OF STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/ABENABAP.html" target="_blank"&gt;ABAP Cloud - ABAP Keyword Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 08:02:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029052#M4209410</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-02-27T08:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029306#M4209431</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/145194"&gt;@Sandra_Rossi&lt;/a&gt;&amp;nbsp;&amp;nbsp;I did read the documentation. There is nothing in it suggested as an alternative.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/ABAPASSIGN_MEM_AREA_DYNAMIC_DOBJ.html" target="_blank"&gt;https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/ABAPASSIGN_MEM_AREA_DYNAMIC_DOBJ.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 10:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029306#M4209431</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-02-27T10:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029310#M4209432</link>
      <description>Probably you didn't understand my question. Please read through once more.</description>
      <pubDate>Thu, 27 Feb 2025 10:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029310#M4209432</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-02-27T10:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029337#M4209436</link>
      <description>&lt;P&gt;Ciao Juwin.&lt;/P&gt;&lt;P&gt;The problem is that TEXT is not a structure so these suggested&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;variants cannot be used.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;... &lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;{&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt; struc-(comp) &lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;}&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;|&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;{&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt; dref-&amp;gt;(comp_name) &lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;}&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;|&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;{&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt; COMPONENT comp OF STRUCTURE struc &lt;/SPAN&gt;&lt;SPAN&gt;&lt;I&gt;}&lt;/I&gt;&lt;/SPAN&gt;&lt;SPAN&gt; ...&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I suggest to declare a proper structure like &lt;FONT face="courier new,courier"&gt;my_text&lt;/FONT&gt; and to put or duplicate the text symbol's values there as subcomponents.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 11:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029337#M4209436</guid>
      <dc:creator>SAPlino</dc:creator>
      <dc:date>2025-02-27T11:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029484#M4209450</link>
      <description>I don't want to duplicate the text symbol values. I want to just access the existing values.</description>
      <pubDate>Thu, 27 Feb 2025 13:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029484#M4209450</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-02-27T13:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029556#M4209453</link>
      <description>The documentation is clear on ASSIGN for normal variables, but your issue is about accessing Text Symbols dynamically. Your way of programming is not clean code, you'd better explicitly code the conditions. A condition based on a number should not refer to a text symbol with same number. Instead, use a case condition or whatever is best for legibility.</description>
      <pubDate>Thu, 27 Feb 2025 14:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14029556#M4209453</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-02-27T14:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030038#M4209501</link>
      <description>&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/145194"&gt;@Sandra_Rossi&lt;/a&gt; The code may be oversimplified in the original post and that may be the reason why you think it is coded without conditions. That's not the real case. In any case, since I haven't received any answers, I would have to assume that there isn't an alternative to this dynamic assign option.</description>
      <pubDate>Fri, 28 Feb 2025 03:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030038#M4209501</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-02-28T03:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030249#M4209528</link>
      <description>&lt;P&gt;Why don't you use RS_TEXTPOOL_READ&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="abap"&gt;    lv_classn = iv_class.
    lv_classn+30(2) = 'CP'.
    TRANSLATE lv_classn USING ' ='.
    lv_programm = lv_classn.

    CALL FUNCTION 'RS_TEXTPOOL_READ'
      EXPORTING
        objectname           = lv_programm
        action               = 'SHOW'
        language             = iv_langu
      TABLES
        tpool                = lt_table
      EXCEPTIONS
        object_not_found     = 1
        permission_failure   = 2
        invalid_program_type = 3
        error_occured        = 4
        action_cancelled     = 5.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or you could use the &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapread_textpool.htm" target="_self"&gt;READ TEXTPOOL&lt;/A&gt; statement followed by some clean ASSIGN syntax for the type 'I' (text symbols)&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 09:50:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030249#M4209528</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2025-02-28T09:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030255#M4209529</link>
      <description>&lt;P&gt;No pragma exists to remove the warning but you may rewrite your code to avoid field symbols.&lt;/P&gt;&lt;P&gt;As per the &lt;A href="https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/ABAPASSIGN_MEM_AREA_DYNAMIC_DOBJ.html#ABAP_ALTERNATIVE_1@2@" target="_blank" rel="noopener noreferrer"&gt;ABAP Cloud - ABAP Keyword Documentation&lt;/A&gt;: "&lt;EM&gt;This syntax is only supported temporarily in the current ABAP language version and must be replaced with valid syntax for that version [...] This variant should not be used any more. Especially for accessing structure components, other variants are preferable.&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;If you have a structure, use ASSIGN COMPONENT ... OF STRUCTURE ...&lt;/P&gt;&lt;P&gt;That's not possible for the pseudo structure TEXT of Symbol Texts, but you may&amp;nbsp;rewrite this way which is more clean code (of course, I don't know what your real case is, so I use a dummy example):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sandra_Rossi_0-1740730679507.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/231500i21CA638E0C54A353/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sandra_Rossi_0-1740730679507.png" alt="Sandra_Rossi_0-1740730679507.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="abap"&gt;CLASS zcl_test DEFINITION
  PUBLIC FINAL
  CREATE PUBLIC.

  PUBLIC SECTION.
    INTERFACES if_oo_adt_classrun.
ENDCLASS.

CLASS zcl_test IMPLEMENTATION.
  METHOD if_oo_adt_classrun~main.
    TYPES:
      BEGIN OF ty_month,
        astrological_sign TYPE string,
      END OF ty_month.
    TYPES ty_n2 TYPE n LENGTH 2.

    DATA months   TYPE TABLE OF ty_month.
    DATA lv_title TYPE string.

    " Original code
    DATA(month) = months[ astrological_sign = 'Lion' ].
    lv_title = `TEXT-H` &amp;amp;&amp;amp; CONV ty_n2( sy-tabix ).
    ASSIGN (lv_title) TO FIELD-SYMBOL(&amp;lt;title&amp;gt;).

    " Suggested clean code
    DATA(month_number) = line_index( months[ astrological_sign = 'Lion' ] ).
    DATA(month_name) = SWITCH string( month_number
                                      WHEN 1 THEN 'January'(H01)
                                      WHEN 2 THEN 'February'(H02)
                                      " Etc.
                                    ).
  ENDMETHOD.
ENDCLASS.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 10:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030255#M4209529</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-05-20T10:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030569#M4209564</link>
      <description>It's fine for classic ABAP but it's not accepted in ABAP Cloud, the function module is not released and the ABAP statement is not ported to Cloud. XCO doesn't currently permit working with text pools as far as I can see.</description>
      <pubDate>Fri, 28 Feb 2025 13:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030569#M4209564</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-02-28T13:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030593#M4209568</link>
      <description>Is the utility class CL_FDT_SERVICES available?</description>
      <pubDate>Fri, 28 Feb 2025 13:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030593#M4209568</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2025-02-28T13:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030685#M4209575</link>
      <description>No, CL_FDT_SERVICES is not released either. I checked in BTP ABAP environment trial. I guess it's the same status in S/4HANA Cloud.</description>
      <pubDate>Fri, 28 Feb 2025 14:35:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14030685#M4209575</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-02-28T14:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14106059#M4216228</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/145194"&gt;@Sandra_Rossi&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/185148"&gt;@RaymondGiuseppi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recently came across another use of this dynamic assignment. This syntax is used to access Object Attributes in the well-known &lt;STRONG&gt;ABAP2XLSX&lt;/STRONG&gt;, in zCl_Excel_Common Class and that also throws the same warning.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dynamic Assignment.png" style="width: 975px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/263478iFFB406E4C2163514/image-size/large?v=v2&amp;amp;px=999" role="button" title="Dynamic Assignment.png" alt="Dynamic Assignment.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 01:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14106059#M4216228</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-05-20T01:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14106544#M4216281</link>
      <description>The warning is about ASSIGN (variable_containing_variable_name) TO &amp;lt;field_symbol&amp;gt;, so technically speaking it's exactly the same case. For this one, the replacement is ASSIGN instance-&amp;gt;(variable_containing_attribute_name) TO &amp;lt;field_symbol&amp;gt;. Note that, for now, abap2xlsx contains code which compiles in all versions since ABAP 7.02, so it cannot contain the latter form, maybe in the future there will be some arbitration if ABAP loses its ascending compatibility.</description>
      <pubDate>Tue, 20 May 2025 10:57:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14106544#M4216281</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-05-20T10:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14171337#M4221813</link>
      <description>&lt;P&gt;For anyone reading this in the future: Correct answer for this is in the i18n XCO library (using &lt;SPAN&gt;XCO_CP_TEXT_POOL)&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/docs/btp/sap-business-technology-platform/i18n-apis#text-pools" target="_blank"&gt;https://help.sap.com/docs/btp/sap-business-technology-platform/i18n-apis#text-pools&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 18:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14171337#M4221813</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2025-08-04T18:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic assignment variant for Field-symbols not allowed</title>
      <link>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14171360#M4221816</link>
      <description>Nice finding, thanks for the feedback!</description>
      <pubDate>Mon, 04 Aug 2025 18:50:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/enterprise-resource-planning-q-a/dynamic-assignment-variant-for-field-symbols-not-allowed/qaa-p/14171360#M4221816</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2025-08-04T18:50:38Z</dc:date>
    </item>
  </channel>
</rss>

