<?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 use rowStruct in routines in Data Movement &amp; Streaming</title>
    <link>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458548#M2372</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;When I try to import my row strutues in my routines, I have an error "import projectName cannot be solved"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;package routines;&lt;/P&gt;
&lt;P&gt;import projectName.JobName_0_1.jobName.row1Struct;&lt;/P&gt;
&lt;P&gt;public class myClass {&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;can someone help me ?&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2025 21:58:43 GMT</pubDate>
    <dc:creator>abarim</dc:creator>
    <dc:date>2025-03-19T21:58:43Z</dc:date>
    <item>
      <title>use rowStruct in routines</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458548#M2372</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;When I try to import my row strutues in my routines, I have an error "import projectName cannot be solved"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;package routines;&lt;/P&gt;
&lt;P&gt;import projectName.JobName_0_1.jobName.row1Struct;&lt;/P&gt;
&lt;P&gt;public class myClass {&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;can someone help me ?&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 21:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458548#M2372</guid>
      <dc:creator>abarim</dc:creator>
      <dc:date>2025-03-19T21:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: use rowStruct in routines</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458782#M2374</link>
      <description>&lt;P data-unlink="true"&gt;&lt;SPAN&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/291088"&gt;@abarim&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;SPAN&gt;consider sharing more details about your project structure, the location of the class, and any relevant logs or error messages,&lt;/SPAN&gt;&amp;nbsp;this will help narrow down the problem and provide more targeted assistance.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 14:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458782#M2374</guid>
      <dc:creator>F_B</dc:creator>
      <dc:date>2024-06-03T14:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: use rowStruct in routines</title>
      <link>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458804#M2375</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;The structure is very simple. I create a local project (local repository) on my C: drive. The name is:&lt;/P&gt;
&lt;P&gt;"myproject"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this project i have a job called "test". The code of this job has below declarations.&lt;/P&gt;
&lt;P&gt;package myproject.test_0_1;&lt;/P&gt;
&lt;P&gt;public class test implements TalendJob&lt;/P&gt;
&lt;P&gt;public static class row1Struct implements routines.system.IPersistableRow&amp;lt;row1Struct&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I create a routines in which i want to import the&amp;nbsp;row1Struct .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;package routines;&lt;/P&gt;
&lt;P&gt;import myproject.test_0_1.test.row1Struct;&lt;/P&gt;
&lt;P&gt;public class test &lt;BR /&gt;{&lt;BR /&gt;public static void helloExample(String message) &lt;BR /&gt;{&lt;BR /&gt;if(message == null)&lt;BR /&gt;{&lt;BR /&gt;message = "World";&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;System.out.println("Hello " + message + " !");&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the line when i import the row1Struct, I have the below error:&lt;/P&gt;
&lt;P&gt;The import myproject cannot be resolved&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope it is enough clear and detailed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reagrds,&lt;/P&gt;
&lt;P&gt;Ali&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 14:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Movement-Streaming/use-rowStruct-in-routines/m-p/2458804#M2375</guid>
      <dc:creator>abarim</dc:creator>
      <dc:date>2024-06-03T14:48:09Z</dc:date>
    </item>
  </channel>
</rss>

