<?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: call job parameter in notebook in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134033#M49994</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;you are a great help.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Oct 2025 09:05:55 GMT</pubDate>
    <dc:creator>Hritik_Moon</dc:creator>
    <dc:date>2025-10-07T09:05:55Z</dc:date>
    <item>
      <title>call job parameter in notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134023#M49988</link>
      <description>&lt;P&gt;Notebook1 as a list output (d_list) and stored in a taskValue&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="N1.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20514iF3A12290FB7CCD05/image-size/large?v=v2&amp;amp;px=999" role="button" title="N1.png" alt="N1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have provided this as input to a loop for notebook 2&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loopInput.png" style="width: 354px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20515i1A3EB13D75BA962A/image-size/large?v=v2&amp;amp;px=999" role="button" title="loopInput.png" alt="loopInput.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;These are the parameters for notebook2&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="N2.png" style="width: 712px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20516i4F834A043AAFCAE9/image-size/large?v=v2&amp;amp;px=999" role="button" title="N2.png" alt="N2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.png" style="width: 744px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20517i2930135CCE946D46/image-size/large?v=v2&amp;amp;px=999" role="button" title="job.png" alt="job.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I get the value of the parameters file_name and file_format inside notebook2?&lt;/P&gt;&lt;P&gt;when I try print(file_name) it gives error file_name is not defined.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 07:56:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134023#M49988</guid>
      <dc:creator>Hritik_Moon</dc:creator>
      <dc:date>2025-10-07T07:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: call job parameter in notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134025#M49989</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In notebook2 define 2 widget parameters that will receive those parameters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dbutils.widgets.&lt;/SPAN&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"file_name"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;file_name&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; dbutils.widgets.&lt;/SPAN&gt;&lt;SPAN&gt;get&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"file_name"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dbutils.widgets.&lt;/SPAN&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"file_format"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;file_format=&lt;/SPAN&gt;&lt;SPAN&gt; dbutils.widgets.&lt;/SPAN&gt;&lt;SPAN&gt;get&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"file_format"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Oct 2025 08:04:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134025#M49989</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-10-07T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: call job parameter in notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134026#M49990</link>
      <description>&lt;P&gt;Let me know if you managed to do it &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/188931"&gt;@Hritik_Moon&lt;/a&gt;&amp;nbsp;in a way I described above. In case of any issues I can prepare for you an end to end example &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 08:06:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134026#M49990</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-10-07T08:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: call job parameter in notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134033#M49994</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;you are a great help.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 09:05:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134033#M49994</guid>
      <dc:creator>Hritik_Moon</dc:creator>
      <dc:date>2025-10-07T09:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: call job parameter in notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134034#M49995</link>
      <description>&lt;P&gt;No problem&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/188931"&gt;@Hritik_Moon&lt;/a&gt;&amp;nbsp;, glad that could help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 09:07:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/call-job-parameter-in-notebook/m-p/134034#M49995</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-10-07T09:07:08Z</dc:date>
    </item>
  </channel>
</rss>

