Commit 0e666566 authored by ppatro's avatar ppatro

Issue tracker No 110 & 136


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92585 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 48793893
......@@ -20437,7 +20437,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmt2 = conn.prepareStatement(sql1);
pstmt2.setString(1, refId);
rs2 = pstmt2.executeQuery();
if( rs2.next())
//Changed by sumit on 28/01/13 On multiple location status check start
/*if( rs2.next())
{
tempOrder = checkNull(rs2.getString("REPL_ORDER"));
}
......@@ -20490,13 +20491,85 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
else
{
update = pstmt2.executeUpdate();
}*/
Set isReplConfirmed = new HashSet();
while( rs2.next())
{
tempOrder = checkNull(rs2.getString("REPL_ORDER"));
System.out.println(" tempOrder ---**->["+tempOrder+"]");
if(tempOrder.trim().length() > 0)
{
String conf = "";
sql = " SELECT STATUS FROM WAVE_TASK_DET WHERE REF_ID = ?";
pstmt1 = conn.prepareStatement(sql);
pstmt1.setString(1, tempOrder);
rs1 = pstmt1.executeQuery();
if( rs1.next())
{
conf = checkNull(rs1.getString("STATUS"));
System.out.println(" conf -> ["+conf+"]");
if( "Y".equalsIgnoreCase(conf))
{
//update = pstmt3.executeUpdate();
isReplConfirmed.add("true");
}
else
{
isReplConfirmed.add("false");
}
}
if( pstmt1 != null)
{
pstmt1.close();
pstmt1 = null;
}
if( rs1 != null)
{
rs1.close();
rs1 = null;
}
}
else
{
//update = pstmt3.executeUpdate();
isReplConfirmed.add("true");
}
}
System.out.println(" isReplConfirmed "+isReplConfirmed);
if( !isReplConfirmed.contains("false"))
{
sql1 = "UPDATE WAVE_TASK_DET SET WAVE_STATUS = 'C' WHERE REF_ID = ? AND WAVE_ID = ? AND SALE_ORDER = ?";
pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1, refId);
pstmt1.setString(2, waveId);
pstmt1.setString(3, saleOrder);
if( pstmt1.executeUpdate() > 0 )
{
System.out.println(refId +" is updated successfully ");
}
pstmt1.close(); pstmt1 = null;
}
if(rs2 != null)
{
rs2.close();
rs2 = null;
}
if(pstmt2 != null)
{
pstmt2.close();
pstmt2 = null;
}
if(pstmt1 != null)
{
pstmt1.close();
pstmt1 = null;
}
//Changed by sumit on 28/01/13 On multiple location status check end.
}
else if("R-CAPK".equalsIgnoreCase(refSer) )
{
......
......@@ -44,7 +44,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<height>23</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -141,7 +141,13 @@
<name>cancel</name>
<dbname>wave_task.cancel</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;wave_task&quot; ) COLUMN(NAME=&quot;wave_task.wave_id&quot;) COLUMN(NAME=&quot;wave_task.tran_date&quot;) COLUMN(NAME=&quot;wave_task.sale_order__from&quot;) COLUMN(NAME=&quot;wave_task.sale_order__to&quot;) COLUMN(NAME=&quot;wave_task.cust_code__from&quot;) COLUMN(NAME=&quot;wave_task.cust_code__to&quot;) COLUMN(NAME=&quot;wave_task.due_date__from&quot;) COLUMN(NAME=&quot;wave_task.due_date__to&quot;) COLUMN(NAME=&quot;wave_task.chg_user&quot;) COLUMN(NAME=&quot;wave_task.chg_term&quot;) COLUMN(NAME=&quot;wave_task.chg_date&quot;) COLUMN(NAME=&quot;wave_task.hold_status&quot;) COLUMN(NAME=&quot;wave_task.cancel&quot;)WHERE( EXP1 =&quot;~&quot;WAVE_TASK~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:from_date&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;~&quot;WAVE_TASK~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:to_date&quot; ) ) ARG(NAME = &quot;from_date&quot; TYPE = datetime) ARG(NAME = &quot;to_date&quot; TYPE = datetime) </retrieve>
<table_column>
<type size="9">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>status</name>
<dbname>status</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;wave_task&quot; ) COLUMN(NAME=&quot;wave_task.wave_id&quot;) COLUMN(NAME=&quot;wave_task.tran_date&quot;) COLUMN(NAME=&quot;wave_task.sale_order__from&quot;) COLUMN(NAME=&quot;wave_task.sale_order__to&quot;) COLUMN(NAME=&quot;wave_task.cust_code__from&quot;) COLUMN(NAME=&quot;wave_task.cust_code__to&quot;) COLUMN(NAME=&quot;wave_task.due_date__from&quot;) COLUMN(NAME=&quot;wave_task.due_date__to&quot;) COLUMN(NAME=&quot;wave_task.chg_user&quot;) COLUMN(NAME=&quot;wave_task.chg_term&quot;) COLUMN(NAME=&quot;wave_task.chg_date&quot;) COLUMN(NAME=&quot;wave_task.hold_status&quot;) COLUMN(NAME=&quot;wave_task.cancel&quot;) COMPUTE(NAME=&quot;CASE WHEN ( SELECT FN_WAVE_STATUS(WAVE_ID) AS STATUS FROM DUAL) = &apos;Y&apos; THEN &apos;COMPLETED&apos; ELSE &apos;PENDING&apos; END STATUS&quot;)WHERE( EXP1 =&quot;~&quot;WAVE_TASK~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:from_date&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;~&quot;WAVE_TASK~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:to_date&quot; ) ) ARG(NAME = &quot;from_date&quot; TYPE = datetime) ARG(NAME = &quot;to_date&quot; TYPE = datetime) </retrieve>
<update>WAVE_TASK</update>
<updatewhere>1</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -156,14 +162,14 @@
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Wave ID</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>78</width>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -184,14 +190,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Transaction Date</text>
<border>6</border>
<color>0</color>
<x>82</x>
<x>79</x>
<y>2</y>
<height>16</height>
<width>103</width>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -212,14 +218,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Sale Order from</text>
<border>6</border>
<color>0</color>
<x>187</x>
<x>182</x>
<y>2</y>
<height>16</height>
<width>67</width>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -240,14 +246,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Sale Order To</text>
<border>6</border>
<color>0</color>
<x>256</x>
<x>273</x>
<y>2</y>
<height>16</height>
<width>62</width>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -268,14 +274,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Cust Code From</text>
<border>6</border>
<color>0</color>
<x>320</x>
<x>359</x>
<y>2</y>
<height>16</height>
<width>75</width>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -296,11 +302,11 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Cust Code To</text>
<border>6</border>
<color>0</color>
<x>397</x>
<x>456</x>
<y>2</y>
<height>16</height>
<width>80</width>
......@@ -324,14 +330,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Due Date from</text>
<border>6</border>
<color>0</color>
<x>479</x>
<x>538</x>
<y>2</y>
<height>16</height>
<width>95</width>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -352,14 +358,14 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<alignment>2</alignment>
<text>Due Date to </text>
<border>6</border>
<color>0</color>
<x>576</x>
<x>629</x>
<y>2</y>
<height>16</height>
<width>59</width>
<width>73</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -380,18 +386,18 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Changed User</text>
<alignment>2</alignment>
<text>Hold Status</text>
<border>6</border>
<color>0</color>
<x>637</x>
<y>2</y>
<x>704</x>
<y>3</y>
<height>16</height>
<width>59</width>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<name>hold_status_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -408,18 +414,18 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Changed Term</text>
<alignment>2</alignment>
<text>Cancel Status</text>
<border>6</border>
<color>0</color>
<x>698</x>
<x>782</x>
<y>2</y>
<height>16</height>
<width>62</width>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<name>cancel_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -436,18 +442,18 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Change Date</text>
<alignment>2</alignment>
<text>Status</text>
<border>6</border>
<color>0</color>
<x>762</x>
<x>863</x>
<y>2</y>
<height>16</height>
<width>80</width>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<name>status_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -464,24 +470,24 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Hold Status</text>
<alignment>2</alignment>
<text>Changed User</text>
<border>6</border>
<color>0</color>
<x>844</x>
<x>947</x>
<y>2</y>
<height>16</height>
<width>76</width>
<width>59</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_status_t</name>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -492,24 +498,24 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Cancel Status</text>
<alignment>2</alignment>
<text>Changed Term</text>
<border>6</border>
<color>33554432</color>
<x>922</x>
<color>0</color>
<x>1008</x>
<y>2</y>
<height>16</height>
<width>83</width>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cancel_t</name>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -518,46 +524,45 @@
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<border>0</border>
<color>33554432</color>
<x>923</x>
<y>1</y>
<height>19</height>
<width>82</width>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Change Date</text>
<border>6</border>
<color>0</color>
<x>1072</x>
<y>2</y>
<height>16</height>
<width>80</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cancel</name>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>67108864</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>2</alignment>
<tabsequence>10</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2</x>
<y>1</y>
<height>16</height>
<width>78</width>
<y>0</y>
<height>19</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -590,13 +595,13 @@
<band>Detail</band>
<id>2</id>
<alignment>2</alignment>
<tabsequence>20</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>82</x>
<y>1</y>
<height>16</height>
<width>103</width>
<x>79</x>
<y>0</y>
<height>19</height>
<width>101</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -629,13 +634,13 @@
<band>Detail</band>
<id>3</id>
<alignment>2</alignment>
<tabsequence>30</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>187</x>
<y>1</y>
<height>16</height>
<width>67</width>
<x>182</x>
<y>0</y>
<height>19</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -668,13 +673,13 @@
<band>Detail</band>
<id>4</id>
<alignment>2</alignment>
<tabsequence>40</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>256</x>
<y>1</y>
<height>16</height>
<width>62</width>
<x>273</x>
<y>0</y>
<height>19</height>
<width>84</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -707,13 +712,13 @@
<band>Detail</band>
<id>5</id>
<alignment>2</alignment>
<tabsequence>50</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>320</x>
<y>1</y>
<height>16</height>
<width>75</width>
<x>359</x>
<y>0</y>
<height>19</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -746,12 +751,12 @@
<band>Detail</band>
<id>6</id>
<alignment>2</alignment>
<tabsequence>60</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>397</x>
<y>1</y>
<height>16</height>
<x>456</x>
<y>0</y>
<height>19</height>
<width>80</width>
<format>[general]</format>
<html>
......@@ -785,13 +790,13 @@
<band>Detail</band>
<id>7</id>
<alignment>2</alignment>
<tabsequence>70</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>479</x>
<y>1</y>
<height>16</height>
<width>95</width>
<x>538</x>
<y>0</y>
<height>19</height>
<width>89</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -824,13 +829,13 @@
<band>Detail</band>
<id>8</id>
<alignment>2</alignment>
<tabsequence>80</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>576</x>
<y>1</y>
<height>16</height>
<width>59</width>
<x>629</x>
<y>0</y>
<height>19</height>
<width>73</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -861,28 +866,25 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<id>12</id>
<alignment>2</alignment>
<tabsequence>90</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>637</x>
<y>1</y>
<height>16</height>
<width>59</width>
<x>704</x>
<y>0</y>
<height>19</height>
<width>76</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<tag>User who has last modified the transaction internally updated by system</tag>
<name>hold_status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -900,24 +902,97 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>13</id>
<alignment>2</alignment>
<tabsequence>100</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>698</x>
<y>1</y>
<height>16</height>
<width>62</width>
<x>782</x>
<y>0</y>
<height>19</height>
<width>79</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<tag>Terminal from which the transaction has been last modified, internally updated by the system</tag>
<name>cancel</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>2</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>863</x>
<y>0</y>
<height>19</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<required>yes</required>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>2</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>947</x>
<y>0</y>
<height>19</height>
<width>59</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<tag>User who has last modified the transaction internally updated by system</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -939,24 +1014,24 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<id>10</id>
<alignment>2</alignment>
<tabsequence>110</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>762</x>
<y>1</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<x>1008</x>
<y>0</y>
<height>19</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<tag>Date when the transaction has last modified, internally updated by system</tag>
<name>chg_term</name>
<tag>Terminal from which the transaction has been last modified, internally updated by the system</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -978,25 +1053,28 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>11</id>
<alignment>2</alignment>
<tabsequence>120</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>844</x>
<y>1</y>
<x>1072</x>
<y>0</y>
<height>19</height>
<width>76</width>
<format>[general]</format>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_status</name>
<name>chg_date</name>
<tag>Date when the transaction has last modified, internally updated by system</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......
......@@ -43,7 +43,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>376</height>
<height>236</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -149,7 +149,13 @@
<item display="N" data="N"/>
</values>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;wave_task&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_a&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_b&quot; ) COLUMN(NAME=&quot;wave_task.wave_id&quot;) COLUMN(NAME=&quot;wave_task.tran_date&quot;) COLUMN(NAME=&quot;wave_task.sale_order__from&quot;) COLUMN(NAME=&quot;wave_task.sale_order__to&quot;) COLUMN(NAME=&quot;wave_task.cust_code__from&quot;) COLUMN(NAME=&quot;wave_task.cust_code__to&quot;) COLUMN(NAME=&quot;wave_task.due_date__from&quot;) COLUMN(NAME=&quot;wave_task.due_date__to&quot;) COLUMN(NAME=&quot;wave_task.chg_user&quot;) COLUMN(NAME=&quot;wave_task.chg_term&quot;) COLUMN(NAME=&quot;wave_task.chg_date&quot;) COLUMN(NAME=&quot;customer_a.cust_name&quot;) COLUMN(NAME=&quot;customer_b.cust_name&quot;) COLUMN(NAME=&quot;wave_task.hold_status&quot;) JOIN (LEFT=&quot;wave_task.cust_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;customer_a.cust_code&quot; OUTER1 =&quot;wave_task.cust_code__from&quot; ) JOIN (LEFT=&quot;wave_task.cust_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;customer_b.cust_code&quot; OUTER1 =&quot;wave_task.cust_code__to&quot; )WHERE( EXP1 =&quot;wave_task.wave_id&quot; OP =&quot;=&quot; EXP2 =&quot;:id&quot; ) ) ARG(NAME = &quot;id&quot; TYPE = string) </retrieve>
<table_column>
<type size="9">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>status</name>
<dbname>status</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;wave_task&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_a&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_b&quot; ) COLUMN(NAME=&quot;wave_task.wave_id&quot;) COLUMN(NAME=&quot;wave_task.tran_date&quot;) COLUMN(NAME=&quot;wave_task.sale_order__from&quot;) COLUMN(NAME=&quot;wave_task.sale_order__to&quot;) COLUMN(NAME=&quot;wave_task.cust_code__from&quot;) COLUMN(NAME=&quot;wave_task.cust_code__to&quot;) COLUMN(NAME=&quot;wave_task.due_date__from&quot;) COLUMN(NAME=&quot;wave_task.due_date__to&quot;) COLUMN(NAME=&quot;wave_task.chg_user&quot;) COLUMN(NAME=&quot;wave_task.chg_term&quot;) COLUMN(NAME=&quot;wave_task.chg_date&quot;) COLUMN(NAME=&quot;customer_a.cust_name&quot;) COLUMN(NAME=&quot;customer_b.cust_name&quot;) COLUMN(NAME=&quot;wave_task.hold_status&quot;) COMPUTE(NAME=&quot;CASE WHEN ( SELECT FN_WAVE_STATUS(WAVE_ID) AS STATUS FROM DUAL) = &apos;Y&apos; THEN &apos;COMPLETED&apos; ELSE &apos;PENDING&apos; END STATUS&quot;) JOIN (LEFT=&quot;wave_task.cust_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;customer_a.cust_code&quot; OUTER1 =&quot;wave_task.cust_code__from&quot; ) JOIN (LEFT=&quot;wave_task.cust_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;customer_b.cust_code&quot; OUTER1 =&quot;wave_task.cust_code__to&quot; )WHERE( EXP1 =&quot;wave_task.wave_id&quot; OP =&quot;=&quot; EXP2 =&quot;:id&quot; ) ) ARG(NAME = &quot;id&quot; TYPE = string) </retrieve>
<update>WAVE_TASK</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -359,34 +365,6 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed User:</text>
<border>0</border>
<color>0</color>
<x>39</x>
<y>149</y>
<height>16</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_3</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
......@@ -423,34 +401,6 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due date from:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>122</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
......@@ -490,34 +440,6 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer code to:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>95</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
......@@ -838,6 +760,62 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer code to:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>95</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due date from:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>122</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -872,10 +850,10 @@
<text>Changed Date:</text>
<border>0</border>
<color>0</color>
<x>284</x>
<x>299</x>
<y>149</y>
<height>16</height>
<width>95</width>
<width>80</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -894,16 +872,80 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>176</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed User:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>149</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_3</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed Term:</text>
<border>0</border>
<color>0</color>
<x>35</x>
<x>27</x>
<y>176</y>
<height>16</height>
<width>94</width>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -922,22 +964,50 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Satus:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>203</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>176</y>
<y>203</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<name>status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -965,7 +1035,7 @@
<border>0</border>
<color>0</color>
<x>337</x>
<y>176</y>
<y>203</y>
<height>16</height>
<width>95</width>
<html>
......@@ -994,7 +1064,7 @@
<border>5</border>
<color>255</color>
<x>436</x>
<y>176</y>
<y>203</y>
<height>16</height>
<width>28</width>
<format>[general]</format>
......
......@@ -29378,7 +29378,32 @@ INSERT INTO MESSAGES (
'BASE ',
NULL,
NULL);
//sumit 28-01-13
create or replace
function fn_wave_status(SI_WAVE_ID IN CHAR)
return CHAR IS STATUS CHAR;
CNT NUMBER;
CNT1 NUMBER;
BEGIN
BEGIN
SELECT count(*) INTO CNT FROM WAVE_TASK_DET WHERE WAVE_ID = SI_WAVE_ID;
SELECT count(*) INTO CNT1 FROM WAVE_TASK_DET WHERE WAVE_ID = SI_WAVE_ID AND WAVE_STATUS = 'V';
IF (CNT = cnt1 ) THEN
STATUS := 'Y';
ELSE
STATUS := 'N';
END IF;
EXCEPTION
WHEN NO_DATA_FOUND THEN
STATUS :='N';
END;
RETURN STATUS;
END;
COMMIT;
......
......@@ -4,7 +4,7 @@ datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.
header(height=22 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=25 color="536870912" )
detail(height=23 color="536870912" )
table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_id dbname="wave_task.wave_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="wave_task.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=sale_order__from dbname="wave_task.sale_order__from" )
......@@ -17,31 +17,37 @@ table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_i
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="wave_task.chg_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="wave_task.chg_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=hold_status dbname="wave_task.hold_status" initial="N" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"wave_task~" ) COLUMN(NAME=~"wave_task.wave_id~") COLUMN(NAME=~"wave_task.tran_date~") COLUMN(NAME=~"wave_task.sale_order__from~") COLUMN(NAME=~"wave_task.sale_order__to~") COLUMN(NAME=~"wave_task.cust_code__from~") COLUMN(NAME=~"wave_task.cust_code__to~") COLUMN(NAME=~"wave_task.due_date__from~") COLUMN(NAME=~"wave_task.due_date__to~") COLUMN(NAME=~"wave_task.chg_user~") COLUMN(NAME=~"wave_task.chg_term~") COLUMN(NAME=~"wave_task.chg_date~") COLUMN(NAME=~"wave_task.hold_status~")WHERE( EXP1 =~"~~~"WAVE_TASK~~~".~~~"TRAN_DATE~~~"~" OP =~">=~" EXP2 =~":from_date~" LOGIC =~"and~" ) WHERE( EXP1 =~"~~~"WAVE_TASK~~~".~~~"TRAN_DATE~~~"~" OP =~"<=~" EXP2 =~":to_date~" ) ) ARG(NAME = ~"from_date~" TYPE = datetime) ARG(NAME = ~"to_date~" TYPE = datetime) " update="WAVE_TASK" updatewhere=1 updatekeyinplace=no arguments=(("from_date", datetime),("to_date", datetime)) )
text(band=header alignment="0" text="Wave ID" border="6" color="0" x="2" y="2" height="16" width="78" html.valueishtml="0" name=wave_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Transaction Date" border="6" color="0" x="82" y="2" height="16" width="103" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Sale Order from" border="6" color="0" x="187" y="2" height="16" width="67" html.valueishtml="0" name=sale_order__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Sale Order To" border="6" color="0" x="256" y="2" height="16" width="62" html.valueishtml="0" name=sale_order__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Cust Code From" border="6" color="0" x="320" y="2" height="16" width="75" html.valueishtml="0" name=cust_code__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Cust Code To" border="6" color="0" x="397" y="2" height="16" width="80" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Due Date from" border="6" color="0" x="479" y="2" height="16" width="95" html.valueishtml="0" name=due_date__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Due Date to " border="6" color="0" x="576" y="2" height="16" width="59" html.valueishtml="0" name=due_date__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Changed User" border="6" color="0" x="637" y="2" height="16" width="59" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Changed Term" border="6" color="0" x="698" y="2" height="16" width="62" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Change Date" border="6" color="0" x="762" y="2" height="16" width="80" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Hold Status" border="6" color="0" x="844" y="0" height="18" width="76" html.valueishtml="0" name=hold_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="2" tabsequence=10 border="5" color="33554432" x="2" y="0" height="19" width="78" format="[general]" html.valueishtml="0" name=wave_id tag="Ttransaction ID of wave task" visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="2" tabsequence=20 border="5" color="33554432" x="82" y="0" height="19" width="103" format="[shortdate] [time]" html.valueishtml="0" name=tran_date tag="Transaction Date" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="2" tabsequence=30 border="5" color="33554432" x="187" y="0" height="19" width="67" format="[general]" html.valueishtml="0" name=sale_order__from tag="Sales order from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="2" tabsequence=40 border="5" color="33554432" x="256" y="0" height="19" width="62" format="[general]" html.valueishtml="0" name=sale_order__to tag="Sales order to" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="2" tabsequence=50 border="5" color="33554432" x="320" y="0" height="19" width="75" format="[general]" html.valueishtml="0" name=cust_code__from tag="Customer code from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="2" tabsequence=60 border="5" color="33554432" x="397" y="0" height="19" width="80" format="[general]" html.valueishtml="0" name=cust_code__to tag="Customer code to" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="2" tabsequence=70 border="5" color="33554432" x="479" y="0" height="19" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from tag="Due date from" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="2" tabsequence=80 border="5" color="33554432" x="576" y="0" height="19" width="59" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to tag="due date to" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="2" tabsequence=90 border="5" color="33554432" x="637" y="0" height="19" width="59" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="2" tabsequence=100 border="5" color="33554432" x="698" y="0" height="19" width="62" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="2" tabsequence=110 border="5" color="33554432" x="762" y="0" height="19" width="80" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="2" tabsequence=120 border="5" color="33554432" x="844" y="0" height="19" width="76" format="[general]" html.valueishtml="0" name=hold_status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column=(type=char(1) update=yes updatewhereclause=yes name=cancel dbname="wave_task.cancel" )
column=(type=char(9) updatewhereclause=yes name=status dbname="status" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"wave_task~" ) COLUMN(NAME=~"wave_task.wave_id~") COLUMN(NAME=~"wave_task.tran_date~") COLUMN(NAME=~"wave_task.sale_order__from~") COLUMN(NAME=~"wave_task.sale_order__to~") COLUMN(NAME=~"wave_task.cust_code__from~") COLUMN(NAME=~"wave_task.cust_code__to~") COLUMN(NAME=~"wave_task.due_date__from~") COLUMN(NAME=~"wave_task.due_date__to~") COLUMN(NAME=~"wave_task.chg_user~") COLUMN(NAME=~"wave_task.chg_term~") COLUMN(NAME=~"wave_task.chg_date~") COLUMN(NAME=~"wave_task.hold_status~") COLUMN(NAME=~"wave_task.cancel~") COMPUTE(NAME=~"CASE WHEN ( SELECT FN_WAVE_STATUS(WAVE_ID) AS STATUS FROM DUAL) = 'Y' THEN 'COMPLETED' ELSE 'PENDING' END STATUS~")WHERE( EXP1 =~"~~~"WAVE_TASK~~~".~~~"TRAN_DATE~~~"~" OP =~">=~" EXP2 =~":from_date~" LOGIC =~"and~" ) WHERE( EXP1 =~"~~~"WAVE_TASK~~~".~~~"TRAN_DATE~~~"~" OP =~"<=~" EXP2 =~":to_date~" ) ) ARG(NAME = ~"from_date~" TYPE = datetime) ARG(NAME = ~"to_date~" TYPE = datetime) " update="WAVE_TASK" updatewhere=1 updatekeyinplace=no arguments=(("from_date", datetime),("to_date", datetime)) )
text(band=header alignment="2" text="Wave ID" border="6" color="0" x="2" y="2" height="16" width="75" html.valueishtml="0" name=wave_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Transaction Date" border="6" color="0" x="79" y="2" height="16" width="101" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Sale Order from" border="6" color="0" x="182" y="2" height="16" width="89" html.valueishtml="0" name=sale_order__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Sale Order To" border="6" color="0" x="273" y="2" height="16" width="84" html.valueishtml="0" name=sale_order__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Cust Code From" border="6" color="0" x="359" y="2" height="16" width="95" html.valueishtml="0" name=cust_code__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Cust Code To" border="6" color="0" x="456" y="2" height="16" width="80" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Due Date from" border="6" color="0" x="538" y="2" height="16" width="89" html.valueishtml="0" name=due_date__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Due Date to " border="6" color="0" x="629" y="2" height="16" width="73" html.valueishtml="0" name=due_date__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Hold Status" border="6" color="0" x="704" y="3" height="16" width="76" html.valueishtml="0" name=hold_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Cancel Status" border="6" color="0" x="782" y="2" height="16" width="79" html.valueishtml="0" name=cancel_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Status" border="6" color="0" x="863" y="2" height="16" width="82" html.valueishtml="0" name=status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Changed User" border="6" color="0" x="947" y="2" height="16" width="59" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Changed Term" border="6" color="0" x="1008" y="2" height="16" width="62" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Change Date" border="6" color="0" x="1072" y="2" height="16" width="80" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="2" tabsequence=32766 border="5" color="33554432" x="2" y="0" height="19" width="75" format="[general]" html.valueishtml="0" name=wave_id tag="Ttransaction ID of wave task" visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="2" tabsequence=32766 border="5" color="33554432" x="79" y="0" height="19" width="101" format="[shortdate] [time]" html.valueishtml="0" name=tran_date tag="Transaction Date" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="2" tabsequence=32766 border="5" color="33554432" x="182" y="0" height="19" width="89" format="[general]" html.valueishtml="0" name=sale_order__from tag="Sales order from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="2" tabsequence=32766 border="5" color="33554432" x="273" y="0" height="19" width="84" format="[general]" html.valueishtml="0" name=sale_order__to tag="Sales order to" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="2" tabsequence=32766 border="5" color="33554432" x="359" y="0" height="19" width="95" format="[general]" html.valueishtml="0" name=cust_code__from tag="Customer code from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="2" tabsequence=32766 border="5" color="33554432" x="456" y="0" height="19" width="80" format="[general]" html.valueishtml="0" name=cust_code__to tag="Customer code to" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="2" tabsequence=32766 border="5" color="33554432" x="538" y="0" height="19" width="89" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from tag="Due date from" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="2" tabsequence=32766 border="5" color="33554432" x="629" y="0" height="19" width="73" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to tag="due date to" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="2" tabsequence=32766 border="5" color="33554432" x="704" y="0" height="19" width="76" format="[general]" html.valueishtml="0" name=hold_status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="2" tabsequence=32766 border="5" color="33554432" x="782" y="0" height="19" width="79" format="[general]" html.valueishtml="0" name=cancel visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="2" tabsequence=32766 border="5" color="33554432" x="863" y="0" height="19" width="82" format="[general]" html.valueishtml="0" name=status visible="1" edit.limit=15 edit.case=upper edit.autoselect=yes edit.required=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="2" tabsequence=32766 border="5" color="33554432" x="947" y="0" height="19" width="59" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="2" tabsequence=32766 border="5" color="33554432" x="1008" y="0" height="19" width="62" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="2" tabsequence=32766 border="5" color="33554432" x="1072" y="0" height="19" width="80" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
......@@ -4,7 +4,7 @@ datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.
header(height=8 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=376 color="536870912" )
detail(height=236 color="536870912" )
table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_id dbname="wave_task.wave_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="wave_task.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=sale_order__from dbname="wave_task.sale_order__from" )
......@@ -19,18 +19,16 @@ table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_i
column=(type=char(40) updatewhereclause=yes name=cust_name__fr dbname="customer.cust_name" )
column=(type=char(40) updatewhereclause=yes name=cust_name__to dbname="customer.cust_name" )
column=(type=char(1) update=yes updatewhereclause=yes name=hold_status dbname="wave_task.hold_status" initial="N" values="Y Y/N N/" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"wave_task~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_a~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_b~" ) COLUMN(NAME=~"wave_task.wave_id~") COLUMN(NAME=~"wave_task.tran_date~") COLUMN(NAME=~"wave_task.sale_order__from~") COLUMN(NAME=~"wave_task.sale_order__to~") COLUMN(NAME=~"wave_task.cust_code__from~") COLUMN(NAME=~"wave_task.cust_code__to~") COLUMN(NAME=~"wave_task.due_date__from~") COLUMN(NAME=~"wave_task.due_date__to~") COLUMN(NAME=~"wave_task.chg_user~") COLUMN(NAME=~"wave_task.chg_term~") COLUMN(NAME=~"wave_task.chg_date~") COLUMN(NAME=~"customer_a.cust_name~") COLUMN(NAME=~"customer_b.cust_name~") COLUMN(NAME=~"wave_task.hold_status~") JOIN (LEFT=~"wave_task.cust_code__from~" OP =~"=~"RIGHT=~"customer_a.cust_code~" OUTER1 =~"wave_task.cust_code__from~" ) JOIN (LEFT=~"wave_task.cust_code__to~" OP =~"=~"RIGHT=~"customer_b.cust_code~" OUTER1 =~"wave_task.cust_code__to~" )WHERE( EXP1 =~"wave_task.wave_id~" OP =~"=~" EXP2 =~":id~" ) ) ARG(NAME = ~"id~" TYPE = string) " update="WAVE_TASK" updatewhere=0 updatekeyinplace=no arguments=(("id", string)) )
column=(type=char(9) updatewhereclause=yes name=status dbname="status" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"wave_task~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_a~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_b~" ) COLUMN(NAME=~"wave_task.wave_id~") COLUMN(NAME=~"wave_task.tran_date~") COLUMN(NAME=~"wave_task.sale_order__from~") COLUMN(NAME=~"wave_task.sale_order__to~") COLUMN(NAME=~"wave_task.cust_code__from~") COLUMN(NAME=~"wave_task.cust_code__to~") COLUMN(NAME=~"wave_task.due_date__from~") COLUMN(NAME=~"wave_task.due_date__to~") COLUMN(NAME=~"wave_task.chg_user~") COLUMN(NAME=~"wave_task.chg_term~") COLUMN(NAME=~"wave_task.chg_date~") COLUMN(NAME=~"customer_a.cust_name~") COLUMN(NAME=~"customer_b.cust_name~") COLUMN(NAME=~"wave_task.hold_status~") COMPUTE(NAME=~"CASE WHEN ( SELECT FN_WAVE_STATUS(WAVE_ID) AS STATUS FROM DUAL) = 'Y' THEN 'COMPLETED' ELSE 'PENDING' END STATUS~") JOIN (LEFT=~"wave_task.cust_code__from~" OP =~"=~"RIGHT=~"customer_a.cust_code~" OUTER1 =~"wave_task.cust_code__from~" ) JOIN (LEFT=~"wave_task.cust_code__to~" OP =~"=~"RIGHT=~"customer_b.cust_code~" OUTER1 =~"wave_task.cust_code__to~" )WHERE( EXP1 =~"wave_task.wave_id~" OP =~"=~" EXP2 =~":id~" ) ) ARG(NAME = ~"id~" TYPE = string) " update="WAVE_TASK" updatewhere=0 updatekeyinplace=no arguments=(("id", string)) )
text(band=detail alignment="1" text="Wave ID:" border="0" color="0" x="27" y="14" height="16" width="102" html.valueishtml="0" name=wave_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="14" height="16" width="82" format="[general]" html.valueishtml="0" name=wave_id tag="Ttransaction ID of wave task" visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Sale order from:" border="0" color="0" x="27" y="41" height="16" width="102" html.valueishtml="0" name=sale_order__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="41" height="16" width="82" format="[general]" html.valueishtml="0" name=sale_order__from tag="Sales order from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="68" height="16" width="82" format="[general]" html.valueishtml="0" name=cust_code__from tag="Customer code from" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Customer code from:" border="0" color="0" x="12" y="68" height="16" width="117" html.valueishtml="0" name=cust_code__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Changed User:" border="0" color="0" x="39" y="149" height="16" width="90" html.valueishtml="0" name=t_3 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="149" height="16" width="82" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Due date from:" border="0" color="0" x="27" y="122" height="16" width="102" html.valueishtml="0" name=due_date__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="122" height="16" width="82" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from tag="Due date from" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Customer code to:" border="0" color="0" x="27" y="95" height="16" width="102" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="95" height="16" width="82" format="[general]" html.valueishtml="0" name=cust_code__to tag="Customer code to" visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Transaction Date:" border="0" color="0" x="277" y="14" height="16" width="102" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Sale order to:" border="0" color="0" x="277" y="41" height="16" width="102" html.valueishtml="0" name=sale_order__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
......@@ -40,12 +38,17 @@ column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255"
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="220" y="95" height="16" width="245" format="[general]" html.valueishtml="0" name=cust_name__to visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="383" y="122" height="16" width="82" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to tag="due date to" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="383" y="149" height="16" width="82" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Customer code to:" border="0" color="0" x="27" y="95" height="16" width="102" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Due date from:" border="0" color="0" x="27" y="122" height="16" width="102" html.valueishtml="0" name=due_date__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Due date to:" border="0" color="0" x="299" y="122" height="16" width="80" html.valueishtml="0" name=due_date__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Changed Date:" border="0" color="0" x="284" y="149" height="16" width="95" html.valueishtml="0" name=t_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Changed Term:" border="0" color="0" x="35" y="176" height="16" width="94" html.valueishtml="0" name=t_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Changed Date:" border="0" color="0" x="299" y="149" height="16" width="80" html.valueishtml="0" name=t_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="176" height="16" width="82" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Hold Status:" border="0" color="0" x="337" y="176" height="16" width="95" html.valueishtml="0" name=hold_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="436" y="176" height="16" width="28" format="[general]" html.valueishtml="0" name=hold_status visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.showlist=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Changed User:" border="0" color="0" x="27" y="149" height="16" width="102" html.valueishtml="0" name=t_3 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Changed Term:" border="0" color="0" x="27" y="176" height="16" width="102" html.valueishtml="0" name=t_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Satus:" border="0" color="0" x="27" y="203" height="16" width="102" html.valueishtml="0" name=status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="203" height="16" width="82" format="[general]" html.valueishtml="0" name=status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Hold Status:" border="0" color="0" x="337" y="203" height="16" width="95" html.valueishtml="0" name=hold_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="436" y="203" height="16" width="28" format="[general]" html.valueishtml="0" name=hold_status visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.showlist=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_wave_task21" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><wave_id>wave_id</wave_id><tran_date>tran_date</tran_date><sale_order__from>sale_order__from</sale_order__from><sale_order__to>sale_order__to</sale_order__to><cust_code__from>cust_code__from</cust_code__from><cust_code__to>cust_code__to</cust_code__to><due_date__from>due_date__from</due_date__from><due_date__to>due_date__to</due_date__to><chg_user/><chg_term/><chg_date/></untitled_row></untitled>"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment