Commit 919b0442 authored by vhegde's avatar vhegde

changed by sankara on 28/05/14 updated WavegGnerationPrc and ReplIssIC and...

changed by sankara on 28/05/14 updated WavegGnerationPrc and ReplIssIC and wave_task srd and metadata and messages sql


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95139 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 25dbff0d
......@@ -1542,6 +1542,17 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
}
}//else of if ( "D".equalsIgnoreCase(orderType) )
}
//changed by sankara on 08/05/14 for loc code to and suggestion loc code check start.
locCodeSys = checkNull(genericUtility.getColumnValue("loc_code__sys", allFormDataDom, "3" ));
System.out.println("locCodeSys:::::::"+locCodeSys);
System.out.println("locCodeTo::::::::"+locCodeTo);
if( !locCodeSys.trim().equalsIgnoreCase(locCodeTo.trim()))
{
errList.add( "VTSYSLOCCD" );
errFields.add( childNodeName.toLowerCase() );
}
//changed by sankara on 08/05/14 for loc code to and suggestion loc code check end.
//Changed by sumit on 09/10/12 write this code in post save start.
/*if("D".equals(orderType) || "L".equals(orderType))
{
......@@ -3171,6 +3182,17 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
errFields.add( childNodeName.toLowerCase() );
}
}
//changed by sankara on 08/05/14 for check loc code to and suggestion loc code start.
locCodeTo = checkNull(genericUtility.getColumnValue("loc_code__to", allFormDataDom, "4" ));
locCodeSys = checkNull(genericUtility.getColumnValue("loc_code__sys", allFormDataDom, "4" ));
System.out.println("dom4locCodeTo::::::"+locCodeTo);
System.out.println("dom4locCodeSys::::::"+locCodeSys);
if( !locCodeSys.trim().equalsIgnoreCase(locCodeTo.trim()))
{
errList.add( "VTSYSLOCCD" );
errFields.add( childNodeName.toLowerCase() );
}
//changed by sankara on 08/05/14 check loc code to and suggestion loc code end.
}
}
}
......
......@@ -4745,6 +4745,9 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
Statement st = null;
ResultSet rs = null ;
ResultSet rsSItem = null;
//Changed by Pragyan 16-MAY-14 for single lot allow issue.
PreparedStatement pstmtLot = null;
ResultSet rsLot = null;
HashMap tempMap = null;
ArrayList tempList = null;
HashMap strAllocate = null;
......@@ -4759,6 +4762,9 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
double stkAllocQty = 0.0;
String hazardous = "";
//Changed by Pragyan 16-MAY-14 for single lot allow issue.
String sSql = "",allotStkLotNo = "";
try
{
String dbDateFormat = genericUtility.getDBDateFormat();
......@@ -4942,6 +4948,101 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
}
else if ( singleLot.trim().length() > 0 && singleLot.trim().equalsIgnoreCase("Y") )
{
//Changed by Pragyan 16-MAY-14 for single lot allow issue.start
if(maxShelfLife > 0)
{
sSql = "SELECT LOT_NO FROM STOCK WHERE ITEM_CODE =? AND SITE_CODE =? AND (CEIL(MONTHS_BETWEEN(TO_DATE(STOCK.EXP_DATE),SYSDATE)) BETWEEN ? AND ? ) AND STOCK.QUANTITY > 0 " +
" AND STOCK.INV_STAT IN(?,?,?,?,?) GROUP BY LOT_NO,EXP_DATE HAVING SUM(QUANTITY - ALLOC_QTY - (CASE WHEN STOCK.HOLD_QTY IS NULL THEN 0 ELSE STOCK.HOLD_QTY END) ) >= ? " +
" ORDER BY STOCK.EXP_DATE ";
pstmtLot = conn.prepareStatement(sSql);
pstmtLot.setString(1, itemCode);
pstmtLot.setString(2, siteCode);
pstmtLot.setInt(3,minShelfLife);
pstmtLot.setInt(4,maxShelfLife);
pstmtLot.setString(5,resrvLoc);
pstmtLot.setString(6,casePickLoc);
pstmtLot.setString(7,deepStoreLoc);
if( "N".equalsIgnoreCase(isActivePickChecked))
{
pstmtLot.setString(8,"");
}
else
{
pstmtLot.setString(8,activePickLoc);
}
if(isActives)
{
pstmtLot.setString(9,partialResrvLoc);
}
else
{
pstmtLot.setString(9,"");
}
pstmtLot.setDouble(10, pendingQty);
}
else
{
sSql = "SELECT LOT_NO FROM STOCK WHERE ITEM_CODE =? AND SITE_CODE =? AND (CEIL(MONTHS_BETWEEN(TO_DATE(STOCK.EXP_DATE),SYSDATE)) > ? ) AND STOCK.QUANTITY > 0 " +
" AND STOCK.INV_STAT IN(?,?,?,?,?) GROUP BY LOT_NO,EXP_DATE HAVING SUM(QUANTITY - ALLOC_QTY - (CASE WHEN STOCK.HOLD_QTY IS NULL THEN 0 ELSE STOCK.HOLD_QTY END) ) >= ? " +
" ORDER BY STOCK.EXP_DATE ";
pstmtLot = conn.prepareStatement(sSql);
pstmtLot.setString(1, itemCode);
pstmtLot.setString(2, siteCode);
pstmtLot.setInt(3,minShelfLife);
pstmtLot.setString(4,resrvLoc);
pstmtLot.setString(5,casePickLoc);
pstmtLot.setString(6,deepStoreLoc);
if( "N".equalsIgnoreCase(isActivePickChecked))
{
pstmtLot.setString(7,"");
}
else
{
pstmtLot.setString(7,activePickLoc);
}
if(isActives)
{
pstmtLot.setString(8,partialResrvLoc);
}
else
{
pstmtLot.setString(8,"");
}
pstmtLot.setDouble(9, pendingQty);
}
rsLot = pstmtLot.executeQuery();
if(rsLot.next())
{
allotStkLotNo = rsLot.getString("LOT_NO");
}
else
{
return "NO SINGLE LOT STOCK";
}
if(pstmtLot != null)
{
pstmtLot.close();
pstmtLot = null;
}
if(rsLot != null)
{
rsLot.close();
rsLot = null;
}
//Changed by Pragyan 16-MAY-14 for single lot allow issue.end
getDataSql = "SELECT STOCK.LOT_NO,STOCK.LOT_SL,"
+"STOCK.LOC_CODE, "
......@@ -4958,11 +5059,15 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
+"AND (LOCATION.INV_STAT = INVSTAT.INV_STAT) "
+"AND INVSTAT.AVAILABLE = 'Y' "
+"AND STOCK.ITEM_CODE = ? AND STOCK.SITE_CODE = ? "
+"AND STOCK.LOT_NO IN (SELECT LOT_NO FROM STOCK WHERE ITEM_CODE =? AND SITE_CODE =? "
+"GROUP BY LOT_NO HAVING SUM(QUANTITY - ALLOC_QTY - (CASE WHEN STOCK.HOLD_QTY IS NULL THEN 0 ELSE STOCK.HOLD_QTY END) ) >= ?) "
//Changed By Pragyan 19-may-14
// +"AND STOCK.LOT_NO IN (SELECT LOT_NO FROM STOCK WHERE ITEM_CODE =? AND SITE_CODE =? "
// +"GROUP BY LOT_NO HAVING SUM(QUANTITY - ALLOC_QTY - (CASE WHEN STOCK.HOLD_QTY IS NULL THEN 0 ELSE STOCK.HOLD_QTY END) ) >= ?) "
+" AND STOCK.LOT_NO = ?"
//Changed By Pragyan 13-MAY-14 To get the stock only stock quantity > 0
//Changed by Rohan on 27-08-13 for adding condition of min and max self life
//+"AND (MONTHS_BETWEEN(TO_DATE(STOCK.EXP_DATE),SYSDATE) > ? ) "
+"AND NOT EXISTS (SELECT 1 FROM INV_RESTR I WHERE I.INV_STAT = INVSTAT.INV_STAT AND I.REF_SER = 'S-DSP' ) ";
// +"AND NOT EXISTS (SELECT 1 FROM INV_RESTR I WHERE I.INV_STAT = INVSTAT.INV_STAT AND I.REF_SER = 'S-DSP' ) ";
+"AND NOT EXISTS (SELECT 1 FROM INV_RESTR I WHERE I.INV_STAT = INVSTAT.INV_STAT AND I.REF_SER = 'S-DSP' ) AND STOCK.QUANTITY > 0 ";
// +" AND (MONTHS_BETWEEN(TO_DATE(STOCK.EXP_DATE),SYSDATE) BETWEEN ? AND ? ) "
//+"AND LOCATION.INV_STAT IN(?,?,?,?)";
......@@ -4980,10 +5085,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmtStock = conn.prepareStatement(getDataSql + orderByStkStr);
pstmtStock.setString(1,itemCode);
pstmtStock.setString(2,siteCode);
pstmtStock.setString(3,itemCode);
pstmtStock.setString(4,siteCode);
pstmtStock.setDouble(5,pendingQty);
pstmtStock.setInt(6,minShelfLife);
/*pstmtStock.setString(3,itemCode);
pstmtStock.setString(4,siteCode);*/
//Changed By Pragyan to stock transfer.
//pstmtStock.setDouble(5,pendingQty);
pstmtStock.setString(3,allotStkLotNo);
pstmtStock.setInt(4,minShelfLife);
//Changed by Rohan on 27-08-13 for adding condition of min and max self life
/*
pstmtStock.setString(7,resrvLoc);
......@@ -5010,46 +5117,46 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
if(maxShelfLife > 0)
{
pstmtStock.setInt(7,maxShelfLife);
pstmtStock.setString(8,resrvLoc);
pstmtStock.setString(9,casePickLoc);
pstmtStock.setInt(5,maxShelfLife);
pstmtStock.setString(6,resrvLoc);
pstmtStock.setString(7,casePickLoc);
if( "N".equalsIgnoreCase(isActivePickChecked))
{
pstmtStock.setString(10,"");
pstmtStock.setString(8,"");
}
else
{
pstmtStock.setString(10,activePickLoc);
pstmtStock.setString(8,activePickLoc);
}
pstmtStock.setString(11,deepStoreLoc);
pstmtStock.setString(9,deepStoreLoc);
if(isActives)
{
pstmtStock.setString(12,partialResrvLoc);
pstmtStock.setString(10,partialResrvLoc);
}
}
else
{
pstmtStock.setString(7,resrvLoc);
pstmtStock.setString(8,casePickLoc);
pstmtStock.setString(5,resrvLoc);
pstmtStock.setString(6,casePickLoc);
if( "N".equalsIgnoreCase(isActivePickChecked))
{
pstmtStock.setString(9,"");
pstmtStock.setString(7,"");
}
else
{
pstmtStock.setString(9,activePickLoc);
pstmtStock.setString(7,activePickLoc);
}
//Changed by sumit on 29/12/12 hiding active pick if user no need from active end
pstmtStock.setString(10,deepStoreLoc);
pstmtStock.setString(8,deepStoreLoc);
if(isActives)
{
pstmtStock.setString(11,partialResrvLoc);
pstmtStock.setString(9,partialResrvLoc);
}
}
......@@ -6392,7 +6499,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
ArrayList sordkeyList = new ArrayList();
String frmDomMasterPackAllow = "";
String frmDomParcelPackAllow = "";
//Changed By sankara 17/05/14 for added remarks in wave proccess screen
String remarks = "";
try
{
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
......@@ -6415,6 +6523,9 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
frmDomMasterPackAllow = checkNull(genericUtility.getColumnValue("master_pack_allow",headerDom));
frmDomParcelPackAllow = checkNull(genericUtility.getColumnValue("parcelpack_allow",headerDom));
//Changed By sankara 17/05/14 for added remarks in wave proccess screen
remarks = checkNull(genericUtility.getColumnValue("remarks",headerDom));
System.out.println("wavetaskinsert::::::::"+remarks);
/*
if("Y".equalsIgnoreCase(frmDomMasterPackAllow))
{
......@@ -6438,10 +6549,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//Changed By Pragyan 22/08/12 To add Hold Status
//"CUST_CODE__TO, DUE_DATE__FROM, DUE_DATE__TO, CHG_USER, CHG_TERM, CHG_DATE)" +
//"CUST_CODE__TO, DUE_DATE__FROM, DUE_DATE__TO, CHG_USER, CHG_TERM, CHG_DATE,HOLD_STATUS,CANCEL)" +
"CUST_CODE__TO, DUE_DATE__FROM, DUE_DATE__TO, CHG_USER, CHG_TERM, CHG_DATE,HOLD_STATUS,CANCEL,SITE_CODE)" +
//Changed By sankara 17/05/14 for added remarks in wave proccess screen
//"CUST_CODE__TO, DUE_DATE__FROM, DUE_DATE__TO, CHG_USER, CHG_TERM, CHG_DATE,HOLD_STATUS,CANCEL,SITE_CODE)" +
"CUST_CODE__TO, DUE_DATE__FROM, DUE_DATE__TO, CHG_USER, CHG_TERM, CHG_DATE,HOLD_STATUS,CANCEL,SITE_CODE,REMARKS)" +
//"VALUES (?,?,?,?,?,?,?,?,?,?,?)";
//"VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?)";
"VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
//Changed By sankara 17/05/14 for added remarks in wave proccess screen
//"VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
"VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
//Changed by Rohan on 1-12-11 on [WM1ESUN006] to add ptcn into wave_task.end
pstmt = conn.prepareStatement(insertSql);
pstmt.setString(1,waveId);
......@@ -6461,6 +6576,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmt.setString(13,"N");
//Changed By Pragyan 28/feb/13
pstmt.setString(14,sitCodeWave);
//Changed By sankara 17/05/14 for added remarks in wave proccess screen
pstmt.setString(15,remarks);
pstmt.executeUpdate();
System.out.println("Start Wave Genartion.......................");
......@@ -12408,10 +12525,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
{
System.out.println("Inside Normal Block...");
//Changed By Pragyan 21-may-14 to take stock quantity for prsv only
//Changed By Pragyan 21-may-14
//double stkQty = getStockQty(itemCode, siteCode, lotNo, lotSl, locCode);
//System.out.println("Stock Quantity"+stkQty);
//if(locInvStat.equalsIgnoreCase(invDeepReserve) || locInvStat.equalsIgnoreCase(invReserve) || locInvStat.equalsIgnoreCase(casePickInv))
System.out.println("locInvStat::::::>>>>>>>>:::::"+locInvStat);
//Changed By Pragyan 07/03/13 to check Direct pick location
......@@ -12526,9 +12643,6 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
if(locInvStat.equalsIgnoreCase(partialResrvLoc))
{
//Changed By Pragyan 21-may-14 to get stock quantity.start
/*packSizeCase = stkQty;
pstmtRplDet.setDouble(11, stkQty);*/
//double stkQty = getStockQty(itemCode, siteCode, lotNo, lotSl, locCode);
double stkQty = getStockQuantity(itemCode, siteCode, locCode, lotNo, lotSl, 0.0, conn) ;
System.out.println("Stock Quantity for prsv"+stkQty);
......
......@@ -32,11 +32,11 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>22</height>
<height>20</height>
<color>536870912</color>
</Header>
<Summary>
<height>7</height>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
......@@ -147,13 +147,21 @@
<name>status</name>
<dbname>status</dbname>
</table_column>
<table_column>
<type size="70">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>wave_task.remarks</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>wave_task.site_code</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 WAVE_TASK.CANCEL = &apos;Y&apos; then &apos;CANCELED&apos; WHEN FN_WAVE_STATUS(WAVE_ID) = &apos;Y&apos; THEN &apos;COMPLETED&apos; ELSE &apos;PENDING&apos; END STATUS&quot;) COLUMN(NAME=&quot;wave_task.site_code&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>
<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 WAVE_TASK.CANCEL = &apos;Y&apos; then &apos;CANCELED&apos; WHEN FN_WAVE_STATUS(WAVE_ID) = &apos;Y&apos; THEN &apos;COMPLETED&apos; ELSE &apos;PENDING&apos; END STATUS&quot;) COLUMN(NAME=&quot;wave_task.remarks&quot;) COLUMN(NAME=&quot;wave_task.site_code&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>
......@@ -392,12 +400,12 @@
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<alignment>0</alignment>
<text>Hold Status</text>
<border>6</border>
<color>0</color>
<x>704</x>
<y>3</y>
<y>2</y>
<height>16</height>
<width>76</width>
<html>
......@@ -427,7 +435,7 @@
<x>782</x>
<y>2</y>
<height>16</height>
<width>79</width>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -452,10 +460,10 @@
<text>Status</text>
<border>6</border>
<color>0</color>
<x>863</x>
<x>869</x>
<y>2</y>
<height>16</height>
<width>82</width>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -480,10 +488,10 @@
<text>Changed User</text>
<border>6</border>
<color>0</color>
<x>1030</x>
<x>1457</x>
<y>2</y>
<height>16</height>
<width>59</width>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -508,10 +516,10 @@
<text>Changed Term</text>
<border>6</border>
<color>0</color>
<x>1091</x>
<x>1545</x>
<y>2</y>
<height>16</height>
<width>62</width>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -536,7 +544,7 @@
<text>Change Date</text>
<border>6</border>
<color>0</color>
<x>1155</x>
<x>1635</x>
<y>2</y>
<height>16</height>
<width>80</width>
......@@ -558,26 +566,54 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Remarks</text>
<border>6</border>
<color>0</color>
<x>1050</x>
<y>2</y>
<height>16</height>
<width>405</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks_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>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Site Code</text>
<border>6</border>
<color>0</color>
<x>947</x>
<y>1</y>
<height>17</height>
<width>81</width>
<x>961</x>
<y>2</y>
<height>16</height>
<width>87</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_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>
......@@ -944,7 +980,7 @@
<x>782</x>
<y>0</y>
<height>19</height>
<width>79</width>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -977,10 +1013,10 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>863</x>
<x>869</x>
<y>0</y>
<height>19</height>
<width>82</width>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -1014,10 +1050,10 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1030</x>
<x>1457</x>
<y>0</y>
<height>19</height>
<width>59</width>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -1053,10 +1089,10 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1091</x>
<x>1545</x>
<y>0</y>
<height>19</height>
<width>62</width>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -1092,7 +1128,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1155</x>
<x>1635</x>
<y>0</y>
<height>19</height>
<width>80</width>
......@@ -1131,10 +1167,46 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>947</x>
<x>1050</x>
<y>2</y>
<height>17</height>
<width>405</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</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>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>961</x>
<y>2</y>
<height>16</height>
<width>81</width>
<width>87</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......
......@@ -162,7 +162,14 @@
<name>site_code</name>
<dbname>wave_task.site_code</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 WAVE_TASK.CANCEL = &apos;Y&apos; then &apos;CANCEL&apos; 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;) COLUMN(NAME=&quot;wave_task.site_code&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="50">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>wave_task.remarks</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 WAVE_TASK.CANCEL = &apos;Y&apos; then &apos;CANCEL&apos; 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;) COLUMN(NAME=&quot;wave_task.site_code&quot;) COLUMN(NAME=&quot;wave_task.remarks&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>
......@@ -199,37 +206,26 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<alignment>1</alignment>
<text>Transaction Date:</text>
<border>0</border>
<color>0</color>
<x>363</x>
<y>14</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>wave_id</name>
<tag>Ttransaction ID of wave task</tag>
<name>tran_date_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<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>
......@@ -237,7 +233,7 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -245,7 +241,7 @@
<border>0</border>
<color>0</color>
<x>27</x>
<y>41</y>
<y>38</y>
<height>16</height>
<width>102</width>
<html>
......@@ -266,37 +262,26 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>41</y>
<alignment>1</alignment>
<text>Sale order to:</text>
<border>0</border>
<color>0</color>
<x>363</x>
<y>38</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__from</name>
<tag>Sales order from</tag>
<name>sale_order__to_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<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>
......@@ -304,38 +289,27 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>68</y>
<alignment>1</alignment>
<text>Customer code from:</text>
<border>0</border>
<color>0</color>
<x>12</x>
<y>62</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<width>117</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__from</name>
<tag>Customer code from</tag>
<name>cust_code__from_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<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>
......@@ -343,21 +317,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer code from:</text>
<text>Customer code to:</text>
<border>0</border>
<color>0</color>
<x>12</x>
<y>68</y>
<x>27</x>
<y>85</y>
<height>16</height>
<width>117</width>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__from_t</name>
<name>cust_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -372,34 +346,26 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>149</y>
<alignment>1</alignment>
<text>Due date from:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>108</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<name>due_date__from_t</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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -407,38 +373,27 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>122</y>
<alignment>1</alignment>
<text>Due date to:</text>
<border>0</border>
<color>0</color>
<x>385</x>
<y>108</y>
<height>16</height>
<width>82</width>
<format>[shortdate] [time]</format>
<width>80</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from</name>
<tag>Due date from</tag>
<name>due_date__to_t</name>
<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>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -446,38 +401,27 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>95</y>
<alignment>1</alignment>
<text>Changed User:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>132</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__to</name>
<tag>Customer code to</tag>
<name>t_3</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<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>
......@@ -485,21 +429,49 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Date:</text>
<text>Changed Date:</text>
<border>0</border>
<color>0</color>
<x>277</x>
<y>14</y>
<x>385</x>
<y>132</y>
<height>16</height>
<width>80</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_2</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>27</x>
<y>156</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date_t</name>
<name>t_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -517,17 +489,73 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Sale order to:</text>
<text>Site Code:</text>
<border>0</border>
<color>0</color>
<x>277</x>
<y>41</y>
<x>377</x>
<y>156</y>
<height>16</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_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>Satus:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>180</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__to_t</name>
<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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Hold Status:</text>
<border>0</border>
<color>0</color>
<x>420</x>
<y>180</y>
<height>16</height>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_status_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -544,24 +572,24 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>383</x>
<x>133</x>
<y>14</y>
<height>16</height>
<width>82</width>
<format>[shortdate] [time]</format>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date</name>
<tag>Transaction Date</tag>
<name>wave_id</name>
<tag>Ttransaction ID of wave task</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>12</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -583,21 +611,21 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>383</x>
<y>41</y>
<x>133</x>
<y>38</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__to</name>
<tag>Sales order to</tag>
<name>sale_order__from</name>
<tag>Sales order from</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
......@@ -622,25 +650,28 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>220</x>
<y>68</y>
<x>133</x>
<y>62</y>
<height>16</height>
<width>245</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_name__fr</name>
<name>cust_code__from</name>
<tag>Customer code from</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -658,25 +689,28 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>220</x>
<y>95</y>
<x>133</x>
<y>85</y>
<height>16</height>
<width>245</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_name__to</name>
<name>cust_code__to</name>
<tag>Customer code to</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -694,21 +728,21 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>383</x>
<y>122</y>
<x>133</x>
<y>108</y>
<height>16</height>
<width>82</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__to</name>
<tag>due date to</tag>
<name>due_date__from</name>
<tag>Due date from</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -730,55 +764,35 @@
<mode>1</mode>
<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>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due date from:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>122</y>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>132</y>
<height>16</height>
<width>102</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from_t</name>
<name>chg_user</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -786,27 +800,35 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due date to:</text>
<border>0</border>
<color>0</color>
<x>299</x>
<y>122</y>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>156</y>
<height>16</height>
<width>80</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__to_t</name>
<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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -814,27 +836,35 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed User:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>149</y>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>180</y>
<height>16</height>
<width>102</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_3</name>
<name>status</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -842,27 +872,38 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Satus:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>203</y>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>469</x>
<y>14</y>
<height>16</height>
<width>102</width>
<width>82</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<name>tran_date</name>
<tag>Transaction Date</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>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -870,28 +911,31 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>203</y>
<x>469</x>
<y>38</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<name>sale_order__to</name>
<tag>Sales order to</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -907,26 +951,34 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Hold Status:</text>
<border>0</border>
<color>0</color>
<x>337</x>
<y>203</y>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>220</x>
<y>62</y>
<height>16</height>
<width>95</width>
<width>331</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_status_t</name>
<name>cust_name__fr</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -934,29 +986,28 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>436</x>
<y>203</y>
<x>221</x>
<y>85</y>
<height>16</height>
<width>28</width>
<width>330</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_status</name>
<name>cust_name__to</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<showlist>yes</showlist>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -969,30 +1020,33 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>383</x>
<y>149</y>
<x>469</x>
<y>108</y>
<height>16</height>
<width>82</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<name>due_date__to</name>
<tag>due date to</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>
......@@ -1008,26 +1062,34 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed Date:</text>
<border>0</border>
<color>0</color>
<x>299</x>
<y>149</y>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>469</x>
<y>132</y>
<height>16</height>
<width>80</width>
<width>82</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_2</name>
<name>chg_date</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -1035,27 +1097,35 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed Term:</text>
<border>0</border>
<color>0</color>
<x>27</x>
<y>176</y>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>469</x>
<y>156</y>
<height>16</height>
<width>102</width>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_1</name>
<name>site_code</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -1063,28 +1133,29 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>176</y>
<x>519</x>
<y>180</y>
<height>16</height>
<width>82</width>
<width>28</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<name>hold_status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<autoselect>yes</autoselect>
<showlist>yes</showlist>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1097,23 +1168,23 @@
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<color>553648127</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code:</text>
<text>Remarks:</text>
<border>0</border>
<color>0</color>
<x>291</x>
<y>176</y>
<x>28</x>
<y>204</y>
<height>16</height>
<width>88</width>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<name>remarks_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1130,20 +1201,27 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>383</x>
<y>176</y>
<x>134</x>
<y>204</y>
<height>16</height>
<width>82</width>
<width>417</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<name>remarks</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>
......@@ -1153,8 +1231,8 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<HtmlTable>
......
......@@ -45302,3 +45302,35 @@ VALUES (
NULL,
NULL);
commit;
-- changed by sankara on 28/05/14 updated alter and messages sql
alter table wave_task add remarks char(70);
INSERT INTO messages (
msg_no,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
msg_time ,
alarm ,
err_source ,
chg_date ,
chg_user ,
chg_term ,
override_input ,
mail_option)
VALUES (
'VTSYSLOCCD',
'Location Code mismatch',
'Location Code To and Suggested Location are not same',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'Base ',
'Base ',
NULL,
NULL);
commit;
\ No newline at end of file
$PBExportHeader$d_wave_task11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=22 color="536870912" )
summary(height=7 color="536870912" )
header(height=20 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_id dbname="wave_task.wave_id" )
......@@ -19,8 +19,9 @@ table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_i
column=(type=char(1) update=yes updatewhereclause=yes name=hold_status dbname="wave_task.hold_status" initial="N" )
column=(type=char(1) update=yes updatewhereclause=yes name=cancel dbname="wave_task.cancel" )
column=(type=char(9) updatewhereclause=yes name=status dbname="status" )
column=(type=char(70) update=yes updatewhereclause=yes name=remarks dbname="wave_task.remarks" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="wave_task.site_code" )
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 WAVE_TASK.CANCEL = 'Y' then 'CANCELED' WHEN FN_WAVE_STATUS(WAVE_ID) = 'Y' THEN 'COMPLETED' ELSE 'PENDING' END STATUS~") COLUMN(NAME=~"wave_task.site_code~")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)) )
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 WAVE_TASK.CANCEL = 'Y' then 'CANCELED' WHEN FN_WAVE_STATUS(WAVE_ID) = 'Y' THEN 'COMPLETED' ELSE 'PENDING' END STATUS~") COLUMN(NAME=~"wave_task.remarks~") COLUMN(NAME=~"wave_task.site_code~")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" )
......@@ -29,13 +30,14 @@ text(band=header alignment="2" text="Cust Code From" border="6" color="0" x="359
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="1030" 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="1091" 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="1155" 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="Site Code" border="6" color="0" x="947" y="1" height="17" width="81" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=header alignment="0" text="Hold Status" border="6" color="0" x="704" y="2" 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="85" 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="869" y="2" height="16" width="90" 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="1457" y="2" height="16" width="86" 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="1545" y="2" height="16" width="88" 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="1635" 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="Remarks" border="6" color="0" x="1050" y="2" height="16" width="405" html.valueishtml="0" name=remarks_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="553648127" )
text(band=header alignment="0" text="Site Code" border="6" color="0" x="961" y="2" height="16" width="87" html.valueishtml="0" name=site_code_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="553648127" )
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" )
......@@ -45,12 +47,13 @@ column(band=detail id=6 alignment="2" tabsequence=32766 border="5" color="335544
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="1030" 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="1091" 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="1155" 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=15 alignment="0" tabsequence=32766 border="5" color="33554432" x="947" y="2" height="16" width="81" format="[general]" html.valueishtml="0" name=site_code 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="85" 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="869" y="0" height="19" width="90" 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="1457" y="0" height="19" width="86" 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="1545" y="0" height="19" width="88" 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="1635" 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=15 alignment="0" tabsequence=32766 border="5" color="33554432" x="1050" y="2" height="17" width="405" format="[general]" html.valueishtml="0" name=remarks 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=16 alignment="0" tabsequence=32766 border="5" color="33554432" x="961" y="2" height="16" width="87" format="[general]" html.valueishtml="0" name=site_code 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" )
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 )
......
......@@ -3,8 +3,8 @@ release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
header(height=8 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=236 color="536870912" )
footer(height=3 color="536870912" )
detail(height=291 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" )
......@@ -20,35 +20,41 @@ table(column=(type=char(12) update=yes updatewhereclause=yes key=yes name=wave_i
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/" )
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 WAVE_TASK.CANCEL = 'Y' then 'CANCELED' 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)) )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="wave_task.site_code" )
column=(type=char(50) update=yes updatewhereclause=yes name=remarks dbname="wave_task.remarks" )
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 WAVE_TASK.CANCEL = 'Y' then 'CANCEL' WHEN ( SELECT FN_WAVE_STATUS(WAVE_ID) AS STATUS FROM DUAL) = 'Y' THEN 'COMPLETED' ELSE 'PENDING' END STATUS~") COLUMN(NAME=~"wave_task.site_code~") COLUMN(NAME=~"wave_task.remarks~") 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" )
text(band=detail alignment="1" text="Transaction Date:" border="0" color="0" x="363" 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 from:" border="0" color="0" x="27" y="38" 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" )
text(band=detail alignment="1" text="Sale order to:" border="0" color="0" x="363" y="38" 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" )
text(band=detail alignment="1" text="Customer code from:" border="0" color="0" x="12" y="62" 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="Customer code to:" border="0" color="0" x="27" y="85" 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="108" 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="385" y="108" 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 User:" border="0" color="0" x="27" y="132" 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 Date:" border="0" color="0" x="385" y="132" 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" )
text(band=detail alignment="1" text="Changed Term:" border="0" color="0" x="27" y="156" 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="Site Code:" border="0" color="0" x="377" y="156" height="16" width="88" html.valueishtml="0" name=site_code_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="Satus:" border="0" color="0" x="27" y="180" 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" )
text(band=detail alignment="1" text="Hold Status:" border="0" color="0" x="420" y="180" 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=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" )
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" )
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" )
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" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="383" y="14" height="16" width="82" 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="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="383" y="41" height="16" width="82" 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="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="220" y="68" height="16" width="245" format="[general]" html.valueishtml="0" name=cust_name__fr 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=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="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="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" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="38" 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="62" 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" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="85" 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" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="108" 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" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="132" 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" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="156" 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" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="180" 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" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="469" y="14" height="16" width="82" 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="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="469" y="38" height="16" width="82" 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="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="220" y="62" height="16" width="331" format="[general]" html.valueishtml="0" name=cust_name__fr 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=13 alignment="0" tabsequence=32766 border="5" color="255" x="221" y="85" height="16" width="330" 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="469" y="108" 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="469" y="132" 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" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="469" y="156" height="16" width="82" format="[general]" html.valueishtml="0" name=site_code 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=14 alignment="0" tabsequence=32766 border="5" color="255" x="519" y="180" 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="Remarks:" border="0" color="0" x="28" y="204" height="16" width="102" html.valueishtml="0" name=remarks_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=17 alignment="0" tabsequence=32766 border="5" color="255" x="134" y="204" height="16" width="417" format="[general]" html.valueishtml="0" name=remarks 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="67108864" )
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