<?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: Row Generator condition on Date in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212226#M9937</link>
    <description>I hope i explained it well.</description>
    <pubDate>Thu, 21 Aug 2008 10:56:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-08-21T10:56:16Z</dc:date>
    <item>
      <title>Row Generator condition on Date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212224#M9935</link>
      <description>I give an input date which is prior to current date,&lt;BR /&gt;The row generator has to generate rows dynamically from the inputDate to the currentDate.&lt;BR /&gt;&lt;BR /&gt;Please help..</description>
      <pubDate>Sat, 16 Nov 2024 14:15:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212224#M9935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Row Generator condition on Date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212225#M9936</link>
      <description>Hello
&lt;BR /&gt;Can you show an example to explain your requirement?
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 21 Aug 2008 10:45:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212225#M9936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-21T10:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Row Generator condition on Date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212226#M9937</link>
      <description>I hope i explained it well.</description>
      <pubDate>Thu, 21 Aug 2008 10:56:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212226#M9937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-21T10:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Row Generator condition on Date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212227#M9938</link>
      <description>I think you should be using the TalendDat.getRandomDate(minDate,maxDate) function
&lt;BR /&gt;Where minDate &amp;amp; maxDate are both strings, in this format: YYYY-MM-dd
&lt;BR /&gt;
&lt;U&gt;&lt;B&gt;if context.inputDate2 is a string in the YYYY-MM-dd form&lt;/B&gt;&lt;/U&gt;
&lt;BR /&gt;Schema: Value_YYYY_MM_DD
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getRandomDate("2007-01-01",TalendDate.getDate("YYYY-MM-DD"))&lt;/PRE&gt;
&lt;BR /&gt;Schema: Context_YYYY_MM_DD
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getRandomDate(context.inputDate2,TalendDate.getDate("YYYY-MM-DD"))&lt;/PRE&gt;
&lt;BR /&gt;
&lt;U&gt;&lt;B&gt;if context.inputDate is a string in the YYYYMMdd form&lt;/B&gt;&lt;/U&gt;
&lt;BR /&gt;Schema: Value_YYYYMMDD
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getRandomDate(TalendDate.formatDate("yyyy-MM-dd",TalendDate.parseDate("yyyymmdd","20080101")),TalendDate.getDate("CCYY-MM-DD"))&lt;/PRE&gt;
&lt;BR /&gt;Schema: Context_YYYYMMDD
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getRandomDate(TalendDate.formatDate("yyyy-MM-dd",TalendDate.parseDate("yyyymmdd",context.inputDate)),TalendDate.getDate("CCYY-MM-DD"))&lt;/PRE&gt;
&lt;BR /&gt;
&lt;B&gt;*Note: You will get an error (like in picture 5) in tRowGenerator Preview if you use one of the formulas that references the context.inputDate. &lt;BR /&gt;*Note: The function works when you run the job (see pic 6, or quoted output below)&lt;/B&gt;
&lt;BR /&gt;(I've posted this bug on the bug tracker: 
&lt;A href="http://www.talendforge.org/bugs/view.php?id=4928)" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/bugs/view.php?id=4928)&lt;/A&gt;
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Starting job Test at 18:08 27/08/2008.&lt;BR /&gt; connecting to socket on port 3487&lt;BR /&gt; connected&lt;BR /&gt;.----------------+--------------+------------------+----------------.&lt;BR /&gt;| tLogRow_1 |&lt;BR /&gt;|=---------------+--------------+------------------+---------------=|&lt;BR /&gt;|Value_YYYY_MM_DD|Value_YYYYMMDD|Context_YYYY_MM_DD|Context_YYYYMMDD|&lt;BR /&gt;|=---------------+--------------+------------------+---------------=|&lt;BR /&gt;|07-02-2008 |01-31-2008 |06-24-2008 |03-27-2008 |&lt;BR /&gt;|01-08-2008 |05-06-2008 |05-03-2008 |08-14-2008 |&lt;BR /&gt;|04-27-2008 |03-20-2008 |08-12-2008 |03-09-2008 |&lt;BR /&gt;|03-01-2007 |01-09-2008 |06-30-2008 |02-05-2008 |&lt;BR /&gt;|08-23-2007 |05-13-2008 |03-02-2008 |01-16-2008 |&lt;BR /&gt;|03-29-2007 |08-16-2008 |04-25-2008 |07-06-2008 |&lt;BR /&gt;|07-14-2007 |03-17-2008 |06-22-2008 |04-28-2008 |&lt;BR /&gt;|07-20-2007 |04-11-2008 |05-06-2008 |05-28-2008 |&lt;BR /&gt;|05-01-2007 |01-22-2008 |07-24-2008 |02-29-2008 |&lt;BR /&gt;|05-15-2008 |04-19-2008 |03-05-2008 |06-24-2008 |&lt;BR /&gt;|05-16-2008 |03-30-2008 |03-30-2008 |07-11-2008 |&lt;BR /&gt;|07-23-2007 |07-27-2008 |07-19-2008 |04-17-2008 |&lt;BR /&gt;|03-15-2008 |03-08-2008 |06-18-2008 |03-29-2008 |&lt;BR /&gt;|06-24-2007 |07-28-2008 |07-14-2008 |02-18-2008 |&lt;BR /&gt;|09-01-2007 |01-10-2008 |03-23-2008 |06-27-2008 |&lt;BR /&gt;|07-27-2008 |08-11-2008 |06-21-2008 |05-03-2008 |&lt;BR /&gt;|06-28-2007 |02-14-2008 |05-12-2008 |04-26-2008 |&lt;BR /&gt;|09-10-2007 |07-06-2008 |04-27-2008 |04-24-2008 |&lt;BR /&gt;|08-17-2007 |04-09-2008 |06-17-2008 |07-26-2008 |&lt;BR /&gt;|02-17-2008 |06-12-2008 |06-23-2008 |03-31-2008 |&lt;BR /&gt;|04-07-2008 |03-16-2008 |06-04-2008 |04-16-2008 |&lt;BR /&gt;|04-18-2007 |02-22-2008 |05-09-2008 |04-17-2008 |&lt;BR /&gt;|06-29-2008 |04-11-2008 |07-29-2008 |02-28-2008 |&lt;BR /&gt;|11-29-2007 |03-18-2008 |06-29-2008 |07-21-2008 |&lt;BR /&gt;|03-26-2007 |03-29-2008 |04-11-2008 |07-26-2008 |&lt;BR /&gt;|12-01-2007 |03-05-2008 |05-28-2008 |02-27-2008 |&lt;BR /&gt;|03-29-2008 |01-13-2008 |07-07-2008 |01-08-2008 |&lt;BR /&gt;|06-21-2007 |07-21-2008 |07-14-2008 |07-01-2008 |&lt;BR /&gt;|03-18-2008 |01-23-2008 |04-19-2008 |03-30-2008 |&lt;BR /&gt;|04-16-2007 |08-14-2008 |04-21-2008 |02-11-2008 |&lt;BR /&gt;|07-19-2008 |01-04-2008 |06-29-2008 |04-27-2008 |&lt;BR /&gt;|10-10-2007 |03-05-2008 |06-19-2008 |03-25-2008 |&lt;BR /&gt;|07-31-2007 |07-28-2008 |04-01-2008 |05-13-2008 |&lt;BR /&gt;|02-21-2007 |08-02-2008 |05-23-2008 |06-08-2008 |&lt;BR /&gt;|01-01-2008 |03-27-2008 |05-10-2008 |01-09-2008 |&lt;BR /&gt;|02-23-2007 |08-09-2008 |04-09-2008 |06-20-2008 |&lt;BR /&gt;|01-12-2007 |04-29-2008 |06-06-2008 |02-24-2008 |&lt;BR /&gt;|04-26-2007 |04-09-2008 |08-19-2008 |04-23-2008 |&lt;BR /&gt;|03-14-2008 |05-07-2008 |08-04-2008 |07-07-2008 |&lt;BR /&gt;|08-19-2008 |03-22-2008 |07-03-2008 |08-17-2008 |&lt;BR /&gt;|03-29-2008 |05-26-2008 |08-24-2008 |04-01-2008 |&lt;BR /&gt;|05-30-2008 |03-10-2008 |08-01-2008 |07-12-2008 |&lt;BR /&gt;|01-26-2007 |03-23-2008 |04-30-2008 |01-29-2008 |&lt;BR /&gt;|03-11-2008 |02-04-2008 |04-30-2008 |04-20-2008 |&lt;BR /&gt;|05-16-2008 |03-28-2008 |03-28-2008 |04-20-2008 |&lt;BR /&gt;|03-27-2007 |08-10-2008 |05-29-2008 |07-22-2008 |&lt;BR /&gt;|05-18-2008 |04-13-2008 |05-29-2008 |06-20-2008 |&lt;BR /&gt;|07-30-2007 |05-20-2008 |08-27-2008 |06-26-2008 |&lt;BR /&gt;|04-05-2007 |07-04-2008 |04-29-2008 |03-21-2008 |&lt;BR /&gt;|06-06-2007 |03-29-2008 |05-03-2008 |02-05-2008 |&lt;BR /&gt;|07-24-2008 |05-29-2008 |06-26-2008 |05-29-2008 |&lt;BR /&gt;|12-30-2007 |01-24-2008 |06-02-2008 |04-26-2008 |&lt;BR /&gt;|03-01-2007 |02-26-2008 |04-05-2008 |05-14-2008 |&lt;BR /&gt;|01-07-2008 |05-03-2008 |03-12-2008 |03-27-2008 |&lt;BR /&gt;|01-08-2008 |06-28-2008 |03-30-2008 |07-18-2008 |&lt;BR /&gt;|08-26-2008 |04-07-2008 |06-08-2008 |02-13-2008 |&lt;BR /&gt;|09-02-2007 |06-29-2008 |03-17-2008 |03-29-2008 |&lt;BR /&gt;|02-13-2007 |03-07-2008 |04-17-2008 |08-10-2008 |&lt;BR /&gt;|12-17-2007 |04-06-2008 |07-08-2008 |07-17-2008 |&lt;BR /&gt;|07-20-2007 |06-29-2008 |05-19-2008 |07-31-2008 |&lt;BR /&gt;|01-18-2008 |03-30-2008 |05-26-2008 |08-13-2008 |&lt;BR /&gt;|05-16-2008 |08-20-2008 |06-12-2008 |01-18-2008 |&lt;BR /&gt;|08-03-2008 |02-03-2008 |03-07-2008 |06-06-2008 |&lt;BR /&gt;|02-27-2007 |06-02-2008 |06-02-2008 |06-04-2008 |&lt;BR /&gt;|01-18-2008 |03-03-2008 |08-12-2008 |04-07-2008 |&lt;BR /&gt;|10-30-2007 |05-11-2008 |05-05-2008 |06-17-2008 |&lt;BR /&gt;|09-24-2007 |05-31-2008 |04-21-2008 |01-06-2008 |&lt;BR /&gt;|07-06-2007 |06-09-2008 |05-13-2008 |01-03-2008 |&lt;BR /&gt;|11-21-2007 |01-06-2008 |04-04-2008 |01-26-2008 |&lt;BR /&gt;|05-05-2008 |02-08-2008 |06-30-2008 |06-21-2008 |&lt;BR /&gt;|05-25-2007 |02-25-2008 |03-06-2008 |07-22-2008 |&lt;BR /&gt;|06-02-2007 |08-09-2008 |07-15-2008 |02-10-2008 |&lt;BR /&gt;|05-09-2008 |06-15-2008 |03-03-2008 |05-29-2008 |&lt;BR /&gt;|10-28-2007 |05-02-2008 |08-19-2008 |02-03-2008 |&lt;BR /&gt;|07-25-2007 |04-28-2008 |07-28-2008 |07-26-2008 |&lt;BR /&gt;|01-06-2008 |04-20-2008 |03-02-2008 |03-10-2008 |&lt;BR /&gt;|06-01-2008 |08-08-2008 |07-26-2008 |01-10-2008 |&lt;BR /&gt;|05-17-2008 |05-09-2008 |08-12-2008 |06-07-2008 |&lt;BR /&gt;|11-22-2007 |02-10-2008 |05-02-2008 |06-15-2008 |&lt;BR /&gt;|11-26-2007 |03-13-2008 |06-11-2008 |04-03-2008 |&lt;BR /&gt;|12-01-2007 |07-13-2008 |04-05-2008 |08-19-2008 |&lt;BR /&gt;|07-18-2007 |08-14-2008 |04-08-2008 |01-18-2008 |&lt;BR /&gt;|03-31-2008 |01-17-2008 |04-04-2008 |08-16-2008 |&lt;BR /&gt;|03-19-2007 |05-11-2008 |03-04-2008 |04-06-2008 |&lt;BR /&gt;|10-22-2007 |01-11-2008 |05-01-2008 |07-21-2008 |&lt;BR /&gt;|03-03-2007 |08-19-2008 |04-13-2008 |01-11-2008 |&lt;BR /&gt;|03-19-2007 |04-18-2008 |04-02-2008 |07-15-2008 |&lt;BR /&gt;|04-02-2008 |01-13-2008 |07-09-2008 |07-19-2008 |&lt;BR /&gt;|02-21-2007 |05-17-2008 |04-04-2008 |08-13-2008 |&lt;BR /&gt;|08-21-2007 |01-09-2008 |07-14-2008 |07-12-2008 |&lt;BR /&gt;|09-11-2007 |03-11-2008 |05-13-2008 |06-08-2008 |&lt;BR /&gt;|07-07-2008 |01-29-2008 |06-01-2008 |05-23-2008 |&lt;BR /&gt;|07-27-2007 |05-28-2008 |06-18-2008 |06-10-2008 |&lt;BR /&gt;|03-03-2008 |06-20-2008 |06-25-2008 |02-24-2008 |&lt;BR /&gt;|04-16-2007 |01-03-2008 |07-04-2008 |02-01-2008 |&lt;BR /&gt;|06-19-2008 |07-16-2008 |07-08-2008 |04-06-2008 |&lt;BR /&gt;|12-21-2007 |03-11-2008 |04-01-2008 |05-28-2008 |&lt;BR /&gt;|05-29-2007 |04-26-2008 |05-26-2008 |06-16-2008 |&lt;BR /&gt;|04-21-2007 |02-07-2008 |07-30-2008 |03-01-2008 |&lt;BR /&gt;|05-26-2008 |03-26-2008 |04-22-2008 |03-24-2008 |&lt;BR /&gt;'----------------+--------------+------------------+----------------'&lt;BR /&gt;531 milliseconds&lt;BR /&gt; disconnected&lt;BR /&gt;Job Test ended at 18:08 27/08/2008. &lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 27 Aug 2008 23:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212227#M9938</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-27T23:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Row Generator condition on Date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212228#M9939</link>
      <description>Note: if you want the randomness to include random times, you would need to update the date pattern in your tRowGenerator schema
&lt;BR /&gt;You can find a table of information about pattern elements here: 
&lt;A href="http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html" rel="nofollow noopener noreferrer"&gt;http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html&lt;/A&gt;</description>
      <pubDate>Wed, 27 Aug 2008 23:18:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Row-Generator-condition-on-Date/m-p/2212228#M9939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-27T23:18:12Z</dc:date>
    </item>
  </channel>
</rss>

