<?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: Copy activity dynamically populated additional columns error when using Expression values in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4875206#M8764</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for the update. The behavior you’re seeing is expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Copy Data activity currently does not support evaluating expression objects that use the "type": "Expression" structure when they are provided through external metadata. When this JSON is passed into the activity, it is treated as a standard object rather than a pipeline expression, which leads to the conversion error you are encountering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Fabric Data Factory, additional column values must be provided as string-based expressions in the @{...} format (for example, @{formatDateTime(utcNow())}), as these are the only expressions the activity can evaluate at runtime. This is why it works when authored directly in a Set Variable activity but fails when the same expression is nested inside metadata using "type": "Expression".&lt;/P&gt;
&lt;P&gt;If you need to maintain a metadata-driven pattern, you have two options:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Pre-process the metadata before assigning it to the Copy activity and convert any "type": "Expression" entries into Fabric-compatible string expressions (for example, "@{formatDateTime(utcNow())}").&lt;/LI&gt;
&lt;LI&gt;Update the metadata format so engineers store expressions directly in the pipeline-ready expression format rather than using the “typed expression” structure.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Currently, the service does not evaluate typed expressions coming from external JSON automatically, so one of the above approaches will be required to ensure compatibility with the Copy activity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Fri, 14 Nov 2025 05:22:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-11-14T05:22:09Z</dc:date>
    <item>
      <title>Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867051#M8708</link>
      <description>&lt;P&gt;I'm trying to build out a metadata driven pipeline using copy activities. Everything works fine when I attempt to pass in a dynamically generated array for the set of additional columns, such as:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
  ...
  "additional_columns": [
    {
      "name": "new_column_name",
      "value": "demo"
    }
  ]
  ...
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I attempt to pass through an Expression (as defined&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/data-factory/copy-activity-overview#add-additional-columns-during-copy" target="_self"&gt;here&lt;/A&gt;) :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
  ...
  "additional_columns": [
    {
      "name": "dsp_last_modified",
      "value": {
        "value": "@formatDateTime(utcNow())",
        "type": "Expression"
      }
    }
  ],
  ...
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I get the following error message:&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier" size="2" color="#800000"&gt;&lt;SPAN&gt;Operation on target Copy data to Delta table failed: ErrorCode=UserErrorInvalidValueInPayload,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Failed to convert the value in 'value' property to 'System.String' type. Please make sure the payload structure and value are correct.,Source=Microsoft.DataTransfer.DataContracts,''Type=System.InvalidCastException,Message=Object must implement IConvertible.,Source=mscorlib,''&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I've validated that the dynamic parameter generates exactly the same input as when I hardcode the expression into the activity via the UI. Not sure if I am missing something obvious here?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:10:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867051#M8708</guid>
      <dc:creator>patto_uon</dc:creator>
      <dc:date>2025-11-05T14:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867418#M8711</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;, you might try and use &lt;SPAN&gt;string interpolation to dynamically generate&lt;/SPAN&gt;&amp;nbsp;the json. See the example below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  ...
  "additional_columns": [
    {
      "name": "dsp_last_modified",
      "value": "@{formatDateTime(utcNow())}"
    }
  ],
  ...
}&lt;/LI-CODE&gt;&lt;P&gt;More on this can be found here&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/expression-language#dynamic-content-editor" target="_blank"&gt;Expressions and functions - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps. If so, please give a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark as Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 00:25:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867418#M8711</guid>
      <dc:creator>nielsvdc</dc:creator>
      <dc:date>2025-11-06T00:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867541#M8712</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;- thanks for the suggestion. Unfortunately, no luck - it just gets treated as a regular string:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 04:57:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867541#M8712</guid>
      <dc:creator>patto_uon</dc:creator>
      <dc:date>2025-11-06T04:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867753#M8714</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;, are you using the [Set variable] activity for creating the additional columns json? If not, do the following.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create a pipeline variable named "AdditionalCols".&lt;/LI&gt;&lt;LI&gt;Add a [Set variable] activity and link it to the "AdditionalCols" variable.&lt;/LI&gt;&lt;LI&gt;Edit the dynamic content for the [Set variable] activity and add the additional columns json array as something like below.&lt;PRE&gt;[&lt;BR /&gt;  {&lt;BR /&gt;    "name": "dsp_last_modified",&lt;BR /&gt;    "value": "@{formatDateTime(utcNow())}"&lt;BR /&gt;  },&lt;BR /&gt;  {&lt;BR /&gt;     "name": "run_id",&lt;BR /&gt;     "value": "@{pipeline().RunId}"&lt;BR /&gt;  }&lt;BR /&gt;]​&lt;/PRE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;In the [Copy data] activity assign the variable to the additional columns dynamics content and converting it to a json object.&lt;PRE&gt;@json(variables('AdditionalCols'))​&lt;/PRE&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps. If so, please give a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark as Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 22:42:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4867753#M8714</guid>
      <dc:creator>nielsvdc</dc:creator>
      <dc:date>2025-11-06T22:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4868497#M8719</link>
      <description>&lt;P&gt;Yes, I'm using a Set Variable activity for this particular field, and that is the workaround that I have used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I'm trying to make this a generic setup for data engineers to provide additional column definitions as part of the metadata included in JSON files, so this approach won't work for that scenario.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 22:35:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4868497#M8719</guid>
      <dc:creator>patto_uon</dc:creator>
      <dc:date>2025-11-06T22:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4868500#M8720</link>
      <description>&lt;P&gt;Your initial json is from the pipeline json (with "type": "Expression"). When you want to generate a the pipeline json from metadata, you can generate the json in this format.&lt;/P&gt;&lt;P&gt;But if you want to input a dynamic json for additional columns in an existing pipeline, you should use the sample json code I showed you. When you edit a pipeline, have a look in the menu at View &amp;gt; Edit Json code. You will see the complete pipeline json code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps. If so, please give a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and mark as Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 22:52:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4868500#M8720</guid>
      <dc:creator>nielsvdc</dc:creator>
      <dc:date>2025-11-06T22:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4869750#M8728</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please let us know if the issue has been resolved?&amp;nbsp;I wanted to check if you had the opportunity to review the information provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290706" data-lia-user-login="nielsvdc" class="lia-mention lia-mention-user"&gt;nielsvdc&lt;/a&gt;&amp;nbsp;. If you still require support, please let us know, we are happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Nov 2025 07:51:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4869750#M8728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-11-08T07:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4871527#M8739</link>
      <description>&lt;P&gt;Hey&amp;nbsp;Anonymous&lt;/a&gt;, no unfortunately I still have the same issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If I load metadata from a file that contains the "type": "Expression" terminology into a variable and then pass that into the copy activity, then I receive the original error message ("&lt;SPAN&gt;Failed to convert the value in 'value' property to 'System.String' type"&lt;/SPAN&gt;)&lt;/LI&gt;&lt;LI&gt;If I write the expression directly into the set variable activity, it all works. However, that doesn't allow my engineers to write expressions in their metadata.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 11 Nov 2025 00:22:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4871527#M8739</guid>
      <dc:creator>patto_uon</dc:creator>
      <dc:date>2025-11-11T00:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4875206#M8764</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for the update. The behavior you’re seeing is expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Copy Data activity currently does not support evaluating expression objects that use the "type": "Expression" structure when they are provided through external metadata. When this JSON is passed into the activity, it is treated as a standard object rather than a pipeline expression, which leads to the conversion error you are encountering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Fabric Data Factory, additional column values must be provided as string-based expressions in the @{...} format (for example, @{formatDateTime(utcNow())}), as these are the only expressions the activity can evaluate at runtime. This is why it works when authored directly in a Set Variable activity but fails when the same expression is nested inside metadata using "type": "Expression".&lt;/P&gt;
&lt;P&gt;If you need to maintain a metadata-driven pattern, you have two options:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Pre-process the metadata before assigning it to the Copy activity and convert any "type": "Expression" entries into Fabric-compatible string expressions (for example, "@{formatDateTime(utcNow())}").&lt;/LI&gt;
&lt;LI&gt;Update the metadata format so engineers store expressions directly in the pipeline-ready expression format rather than using the “typed expression” structure.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Currently, the service does not evaluate typed expressions coming from external JSON automatically, so one of the above approaches will be required to ensure compatibility with the Copy activity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 05:22:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4875206#M8764</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-11-14T05:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4882060#M8789</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 12:11:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4882060#M8789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-11-21T12:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4889287#M8835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We haven’t received an update from you in some time. Could you please let us know if the issue has been resolved?&lt;BR /&gt;If you still require support, please let us know, we are happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 05:15:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4889287#M8835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-12-01T05:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4889331#M8836</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your response below, you mentioned two available options to achieve this goal:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Pre-process the metadata before assigning it to the Copy activity and convert any "type": "Expression" entries into Fabric-compatible string expressions (for example, "@{formatDateTime(utcNow())}").&lt;/LI&gt;&lt;LI&gt;Update the metadata format so engineers store expressions directly in the pipeline-ready expression format rather than using the “typed expression” structure.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I am not quite sure I understand what you mean in option (2). What is a "pipeline-ready expression format"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume this is not the interpolated string format "@{...}". As I mentioned in an earlier response, when I attempt to provide a metadata parameter in the following format:&lt;/P&gt;&lt;PRE&gt;[&lt;BR /&gt;  {&lt;BR /&gt;    "name": "dsp_last_modified",&lt;BR /&gt;    "value": "@{formatDateTime(utcNow())}"&lt;BR /&gt;  }&lt;BR /&gt;]​&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Then I see the expression string, rather than the interpolated value:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 05:48:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4889331#M8836</guid>
      <dc:creator>patto_uon</dc:creator>
      <dc:date>2025-12-01T05:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4895565#M8863</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the clarification. To confirm, expressions such as @{formatDateTime(utcNow())} are only evaluated when they are authored directly inside the pipeline. When the same string comes from external metadata, Fabric treats it as normal text, which is why you see the expression printed instead of the evaluated value.&lt;/P&gt;
&lt;P&gt;So when I mentioned a “pipeline-ready expression format,” it meant that your metadata should contain the information needed to build a valid expression, but the pipeline still needs to convert that metadata into an actual expression before passing it to the Copy activity. Currently, the service cannot execute expressions coming directly from metadata files.&lt;/P&gt;
&lt;P&gt;To achieve a metadata-driven approach, a small preprocessing step in the pipeline is required to translate metadata into real expressions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 07:02:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4895565#M8863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-12-08T07:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Copy activity dynamically populated additional columns error when using Expression values</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4900565#M8887</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1390988" data-lia-user-login="patto_uon" class="lia-mention lia-mention-user"&gt;patto_uon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We haven’t received an update from you in some time. Could you please let us know if the issue has been resolved?&lt;BR /&gt;If you still require support, please let us know, we are happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 11:39:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Copy-activity-dynamically-populated-additional-columns-error/m-p/4900565#M8887</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-12-12T11:39:11Z</dc:date>
    </item>
  </channel>
</rss>

