<?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: Using Web Activity's output as a source of Copy Data Activity. in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802047#M8352</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1330787" data-lia-user-login="younghoon_kim" class="lia-mention lia-mention-user"&gt;younghoon_kim&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Web Activity in ADF is a control flow component and&amp;nbsp;cannot directly feed data into a copy data activity. It’s designed to trigger HTTP endpoints and return metadata or control values (lURLs), but not to stream or pass data into a sink.&amp;nbsp;&lt;SPAN&gt;You would need to first write the web activity output to a blob (eg. Azure Function), and then use that blob as the source for Copy Activity.&lt;BR /&gt;&lt;A href="https://stackoverflow.com/questions/66493930/how-to-use-output-of-azure-data-factory-web-activity-in-next-copy-activity" target="_blank"&gt;How to use output of Azure Data Factory Web Activity in next copy activity? - Stack Overflow&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Or use the method provided by Aala Ali.&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/data-factory/connector-rest?tabs=data-factory" target="_blank"&gt;Copy and transform data from and to a REST endpoint - Azure Data Factory &amp;amp; Azure Synapse | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if this helps!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Aug 2025 09:09:22 GMT</pubDate>
    <dc:creator>v-sdhruv</dc:creator>
    <dc:date>2025-08-20T09:09:22Z</dc:date>
    <item>
      <title>Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4789717#M8299</link>
      <description>&lt;P&gt;Pipeline I try to build is one that pulls data by calling external API, and save the response into Lakehouse table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this has to be done recursively because response from API uses pagination, so it gives next URL to call to keep on collecting rest of the data.&amp;nbsp; Response from API looks like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
	"subscriptions": [
		{
			(SOME ELEMENTS)
		}
	],
	"next": "(NEXT URL TO CALL)",
	"size": 50,
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I setup Until Activity on condition of "next' is empty. Inside, Copy Activity calls API using a variable "nextUrl", and then using same "nextUrl", Web Activity calls API to get "next", then Set Variable Activity sets variable "nextUrl" to "next".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This seeme&lt;SPAN&gt;d to be a good solution, except that API server doesn't allow calling the same URL appearing in "next" twice. URL appearing in "next" seems to be called only once. So my question is,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. Can I use Web Activity's reponse as a source of Copy Data (So I only have to call API in Web Activity)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. Any other solution for fetch paginated URL data?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 06:44:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4789717#M8299</guid>
      <dc:creator>younghoon_kim</dc:creator>
      <dc:date>2025-08-07T06:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4799480#M8342</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1330787" data-lia-user-login="younghoon_kim" class="lia-mention lia-mention-user"&gt;younghoon_kim&lt;/a&gt;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You don't need a Web activity here. Let Copy activity (REST source) call the API and follow the nextlink automatically. Here's how:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Create the REST connection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In Data Factory → top bar Settings → Manage connections &amp;amp; gateways → New .&lt;/P&gt;&lt;P&gt;Choose Web / REST , give it a name, set the Base URL , and pick your Auth (API key header, OAuth2 Client Credentials, Managed Identity, etc.). Test &amp;amp; Save.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;2) Add a Copy activity&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Open (or create) your Data pipeline .&lt;/P&gt;&lt;P&gt;Add pipeline activity → Copy activity (or use Copy assistant ).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3) Configure the Source (REST)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Data store type: External&lt;/P&gt;&lt;P&gt;Connection type: REST (pick the connection you just made)&lt;/P&gt;&lt;P&gt;Relative URL: first page endpoint (eg, /v1/items?limit=100)&lt;/P&gt;&lt;P&gt;Advanced → Request method: GET (or POSTif your API needs it)&lt;/P&gt;&lt;P&gt;Advanced → Pagination rules:&lt;/P&gt;&lt;P&gt;If your response body has a next link at paging.next:&lt;/P&gt;&lt;P&gt;Key: AbsoluteUrl&lt;/P&gt;&lt;P&gt;Value: $.paging.next&lt;/P&gt;&lt;P&gt;If it's an OData API with @odata.nextLink:&lt;/P&gt;&lt;P&gt;Key: AbsoluteUrl&lt;/P&gt;&lt;P&gt;Value: $['@odata.nextLink']&lt;/P&gt;&lt;P&gt;(Optional) Request interval (ms): add a small delay (eg, 300–500) if the API rate-limits.&lt;BR /&gt;These are native pagination options in Copy (REST).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Note: Copy stops when the JSONPath returns null/empty. If your API sometimes repeats the last URL, add an EndCondition or a MaxRequestNumber in Pagination rules to prevent endless loops.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;4) Configure the Destination (Lakehouse)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Connection: your Lakehouse .&lt;/P&gt;&lt;P&gt;Root folder: Tables → pick an existing table or type a new name.&lt;/P&gt;&lt;P&gt;Choose Table action (Append/Overwrite) under Advanced as needed.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;5) (Optional) Mapping&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you want tabular columns instead of raw JSON, open mapping , import schemas , and map source → destination columns. If you want to land the JSON as-is, skip mapping.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;6) Run &amp;amp; verify&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Save → Run the pipeline → Check Monitor for page count, written rows, and any pagination or throttle messages.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Why not “Web output → Copy source”?&lt;/P&gt;&lt;P&gt;Web activity is control flow only; it doesn't feed data directly into Copy as a source. Copy's REST connector is built to issue the requests and handle pagination itself, so you avoid re-calling the same page twice.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Handy JSONPath examples for the pagination box&lt;/P&gt;&lt;P&gt;Body next link:$.paging.next&lt;/P&gt;&lt;P&gt;OData next link: $['@odata.nextLink'](the bracket syntax handles the @)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If this solved it, please &lt;STRONG&gt;mark as Solution&lt;/STRONG&gt; and &lt;STRONG&gt;give Kudos&lt;/STRONG&gt; so others can find it faster &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 07:44:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4799480#M8342</guid>
      <dc:creator>Aala_Ali</dc:creator>
      <dc:date>2025-08-18T07:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4800261#M8346</link>
      <description>&lt;P&gt;Thanks for your reply.My first option was the way you described, but failed to do so I posted another question :&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Data-Pipeline/REST-API-connection-pagination-inside-Copy-Activity-Source/m-p/4798115#M8333" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Data-Pipeline/REST-API-connection-pagination-inside-Copy-Activity-Source/m-p/4798115#M8333&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if there's any other way.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 22:39:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4800261#M8346</guid>
      <dc:creator>younghoon_kim</dc:creator>
      <dc:date>2025-08-18T22:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802033#M8351</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1330787" data-lia-user-login="younghoon_kim" class="lia-mention lia-mention-user"&gt;younghoon_kim&lt;/a&gt;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for the extra details in your follow-up thread. I can see the API returns:&lt;/P&gt;&lt;P&gt;"next": "/details?q=..."&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;…and when you use AbsoluteUrl = $.next, the next call is sent to:&lt;/P&gt;&lt;P&gt;&lt;A href="https://serviceportal.telenorconnexion.com/details" target="_blank"&gt;https://serviceportal.telenorconnexion.com/details&lt;/A&gt;?... (&lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; base path dropped)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;instead of:&lt;/P&gt;&lt;P&gt;&lt;A href="https://serviceportal.telenorconnexion.com/iot/api/subscriptions/details" target="_blank"&gt;https://serviceportal.telenorconnexion.com/iot/api/subscriptions/details&lt;/A&gt;?... (&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; expected)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;That &lt;STRONG&gt;explains the failure you saw&lt;/STRONG&gt;. When the API gives a root-relative path (starts with “/”), the Copy activity treats it as domain-root and ignores the base path segment (/iot/api/subscriptions).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Below are &lt;EM&gt;&lt;STRONG&gt;three clean ways&lt;/STRONG&gt;&lt;/EM&gt; to get you unblocked—start with Option A if you can make the API return a full link.&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;A) Easiest (if API can return a full link)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Ask the API (or toggle an option, if it has one) to return an absolute next link:&lt;/P&gt;&lt;P&gt;"next": "&lt;A href="https://serviceportal.telenorconnexion.com/iot/api/subscriptions/details?q=" target="_blank"&gt;https://serviceportal.telenorconnexion.com/iot/api/subscriptions/details?q=&lt;/A&gt;..."&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Then set Source ▸ Advanced ▸ Pagination rules:&lt;/P&gt;&lt;P&gt;Key: AbsoluteUrl&lt;/P&gt;&lt;P&gt;Value: $.next&lt;/P&gt;&lt;P&gt;That’s the officially supported pattern: AbsoluteUrl can point to the next absolute or relative URL in the response body; JSONPath is used to read it. Also add an EndCondition or MaxRequestNumber to avoid endless loops if the API echoes back the last URL.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;B) When the API only returns a root-relative /details?...&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Copy activity can’t “prepend” /iot/api/subscriptions/ to a root-relative value in the pagination rules (the value must be a header reference or a JSONPath result—no string concat). That’s why the dynamic @concat(...) you tried errors (“not an ancestor” — pagination rules can’t reference other activities).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Two reliable workarounds:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;B1) Dataflow Gen2 (Power Query) paging&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Power Query lets you stitch the base path with the relative ‘next’ easily.&lt;/P&gt;&lt;P&gt;Dataflow Gen2 ▸ Blank query ▸ Advanced Editor, paste a template like:&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Base = "&lt;A href="https://serviceportal.telenorconnexion.com/iot/api/subscriptions" target="_blank"&gt;https://serviceportal.telenorconnexion.com/iot/api/subscriptions&lt;/A&gt;",&lt;BR /&gt;First = "/details?{your params}",&lt;BR /&gt;GetPage = (rel as text) =&amp;gt;&lt;BR /&gt;let&lt;BR /&gt;url = Base &amp;amp; rel,&lt;BR /&gt;json = Json.Document(Web.Contents(url)),&lt;BR /&gt;rows = json[data],&lt;BR /&gt;next = try json[next] otherwise null&lt;BR /&gt;in [Rows = rows, Next = next],&lt;/P&gt;&lt;P&gt;Source = Table.GenerateByPage((prev) =&amp;gt;&lt;BR /&gt;let rel = if prev = null then First else prev[Next]&lt;BR /&gt;in if rel = null then null else GetPage(rel)&lt;BR /&gt;),&lt;/P&gt;&lt;P&gt;Result = Table.ExpandListColumn(Source, "Rows")&lt;BR /&gt;in&lt;BR /&gt;Result&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Output to your Lakehouse table.&lt;BR /&gt;Docs: Handling paging with Table.GenerateByPage().&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;B2) Notebook (Python) — full control&lt;/U&gt;&lt;/P&gt;&lt;P&gt;If you prefer code, resolve the relative next with urljoin:&lt;/P&gt;&lt;P&gt;import requests, pandas as pd&lt;BR /&gt;from urllib.parse import urljoin&lt;/P&gt;&lt;P&gt;base = "&lt;A href="https://serviceportal.telenorconnexion.com/iot/api/subscriptions/" target="_blank"&gt;https://serviceportal.telenorconnexion.com/iot/api/subscriptions/&lt;/A&gt;"&lt;BR /&gt;url = urljoin(base, "details?{your params}")&lt;BR /&gt;rows = []&lt;/P&gt;&lt;P&gt;while url:&lt;BR /&gt;r = requests.get(url, headers={"Authorization": f"Bearer {token}"}, timeout=60)&lt;BR /&gt;r.raise_for_status()&lt;BR /&gt;js = r.json()&lt;BR /&gt;rows.extend(js.get("data", []))&lt;BR /&gt;next_rel = js.get("next")&lt;BR /&gt;url = urljoin(base, next_rel) if next_rel else None&lt;/P&gt;&lt;P&gt;df = pd.DataFrame(rows)&lt;BR /&gt;# write to Lakehouse table/files as you prefer&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This &lt;EM&gt;&lt;STRONG&gt;precisely fixes the root-relative next issue&lt;/STRONG&gt;&lt;/EM&gt; by always combining it with the correct base path. (General REST + pagination guidance for Copy/REST is here.)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;C) Small safety knobs (whichever route you take)&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;EndCondition / MaxRequestNumber in pagination to prevent endless loops.&lt;/P&gt;&lt;P&gt;Request interval (ms) (e.g., 300–500) if the API rate-limits.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this solved it, please&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;mark as Solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;give Kudos&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;so others can find it faster&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 08:55:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802033#M8351</guid>
      <dc:creator>Aala_Ali</dc:creator>
      <dc:date>2025-08-20T08:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802047#M8352</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1330787" data-lia-user-login="younghoon_kim" class="lia-mention lia-mention-user"&gt;younghoon_kim&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Web Activity in ADF is a control flow component and&amp;nbsp;cannot directly feed data into a copy data activity. It’s designed to trigger HTTP endpoints and return metadata or control values (lURLs), but not to stream or pass data into a sink.&amp;nbsp;&lt;SPAN&gt;You would need to first write the web activity output to a blob (eg. Azure Function), and then use that blob as the source for Copy Activity.&lt;BR /&gt;&lt;A href="https://stackoverflow.com/questions/66493930/how-to-use-output-of-azure-data-factory-web-activity-in-next-copy-activity" target="_blank"&gt;How to use output of Azure Data Factory Web Activity in next copy activity? - Stack Overflow&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Or use the method provided by Aala Ali.&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/data-factory/connector-rest?tabs=data-factory" target="_blank"&gt;Copy and transform data from and to a REST endpoint - Azure Data Factory &amp;amp; Azure Synapse | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if this helps!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 09:09:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802047#M8352</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-08-20T09:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802886#M8354</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="877908" data-lia-user-login="Aala_Ali" class="lia-mention lia-mention-user"&gt;Aala_Ali&lt;/a&gt;&amp;nbsp; , Thanks for your descriptive answer. I knew Notebook always an option but was just curious if what I want is feasible in Copy Activity. Also great to know that Dataflow Gen2 can do this too. I'm not used to using it, but will reference you answer when I decide to use it. Thanks. FYI, now I'm focusing ELT jobs on Data Pipeline, so I configured using Copy Activity, Variables, and Until Activity, and it works&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 00:28:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4802886#M8354</guid>
      <dc:creator>younghoon_kim</dc:creator>
      <dc:date>2025-08-21T00:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web Activity's output as a source of Copy Data Activity.</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4803488#M8357</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1330787" data-lia-user-login="younghoon_kim" class="lia-mention lia-mention-user"&gt;younghoon_kim&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Awesome, I’m really happy to hear you got it working with &lt;STRONG&gt;Copy activity + Variables + Until&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 09:54:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Using-Web-Activity-s-output-as-a-source-of-Copy-Data-Activity/m-p/4803488#M8357</guid>
      <dc:creator>Aala_Ali</dc:creator>
      <dc:date>2025-08-21T09:54:35Z</dc:date>
    </item>
  </channel>
</rss>

