<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4254106428060406436</id><updated>2011-11-28T08:53:02.268+09:00</updated><category term='install'/><category term='Acceptance_Testing Administration accounting data'/><category term='Acceptance_Testing Application Dictionary'/><category term='install v2.50'/><category term='Acceptance_Testing Sales Management'/><category term='error'/><category term='Acceptance_Testing'/><category term='Acceptance_Testing Administration master data'/><category term='Acceptance_Testing Administration Financial data'/><category term='MRP'/><category term='Acceptance_Testing Procurement Management'/><category term='Acceptance_Testing Production management'/><title type='text'>Open Source ERP Openbravo</title><subtitle type='html'>インストール、動作確認</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>79</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1935482794903784981</id><published>2009-06-11T16:55:00.006+09:00</published><updated>2009-06-11T17:02:41.644+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>M_Transaction / 在庫状況</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/SjC4txT2GWI/AAAAAAAAB_M/m_CYZsXWi8Y/s1600-h/StockReport.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 248px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/SjC4txT2GWI/AAAAAAAAB_M/m_CYZsXWi8Y/s400/StockReport.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345975854158977378" /&gt;&lt;/a&gt;&lt;br /&gt;Stck Report&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;-- SQL --&lt;/div&gt;&lt;font size=-2&gt;&lt;pre&gt;SELECT&lt;br /&gt;M_PRODUCT_CATEGORY.NAME                                                         AS CATEGORYNAME,&lt;br /&gt;M_PRODUCT.VALUE||'-'||M_PRODUCT.NAME                                        AS NAME,&lt;br /&gt;SUM(MOVEMENTQTY)                            AS MOVEMENTQTY,&lt;br /&gt;             M_LOCATOR.X,&lt;br /&gt;             M_LOCATOR.Y,&lt;br /&gt;AD_COLUMN_IDENTIFIER('M_WAREHOUSE', to_char(M_LOCATOR.M_WAREHOUSE_ID), :1)   AS WAREHOUSE,&lt;br /&gt;M_LOCATOR.Z, C1.NAME                        AS UOMMOVEMENTQTY,&lt;br /&gt;M_ATTRIBUTESETINSTANCE.M_ATTRIBUTESETINSTANCE_ID,&lt;br /&gt;M_ATTRIBUTESETINSTANCE.DESCRIPTION,&lt;br /&gt;(CASE WHEN M_TRANSACTION.M_PRODUCT_UOM_ID IS NULL THEN (CASE M_PRODUCT.WEIGHT*SUM(M_TRANSACTION.MOVEMENTQTY)&lt;br /&gt;     WHEN 0 THEN NULL ELSE M_PRODUCT.WEIGHT*SUM(M_TRANSACTION.MOVEMENTQTY) END) ELSE SUM(M_TRANSACTION.QUANTITYORDER) END  )                     AS WEIGHT,&lt;br /&gt;(CASE WHEN M_TRANSACTION.M_PRODUCT_UOM_ID IS NULL   THEN (CASE WHEN M_PRODUCT.WEIGHT = 0 THEN ''  WHEN M_PRODUCT.WEIGHT IS NULL THEN '' ELSE 'Kgs' END) ELSE TO_CHAR(C2.NAME) END) AS UOMWEIGHT,&lt;br /&gt;           '' as id&lt;br /&gt;FROM M_PRODUCT&lt;br /&gt;left  join M_PRODUCT_CATEGORY on M_PRODUCT.M_PRODUCT_CATEGORY_ID = M_PRODUCT_CATEGORY.M_PRODUCT_CATEGORY_ID,&lt;br /&gt;     M_PRODUCT_UOM&lt;br /&gt;right join M_TRANSACTION      on M_TRANSACTION.M_PRODUCT_UOM_ID  = M_PRODUCT_UOM.M_PRODUCT_UOM_ID                       &lt;br /&gt;left  join C_UOM C2           on M_PRODUCT_UOM.C_UOM_ID          = C2.C_UOM_ID,&lt;br /&gt;     M_LOCATOR, C_UOM C1,&lt;br /&gt;     M_ATTRIBUTESETINSTANCE&lt;br /&gt;WHERE M_TRANSACTION.M_PRODUCT_ID              = M_PRODUCT.M_PRODUCT_ID    &lt;br /&gt;AND  M_TRANSACTION.M_ATTRIBUTESETINSTANCE_ID = M_ATTRIBUTESETINSTANCE.M_ATTRIBUTESETINSTANCE_ID&lt;br /&gt;AND  M_TRANSACTION.M_LOCATOR_ID              = M_LOCATOR.M_LOCATOR_ID     &lt;br /&gt;AND  M_TRANSACTION.C_UOM_ID                  = C1.C_UOM_ID    &lt;br /&gt;AND  M_TRANSACTION.AD_CLIENT_ID IN (0,1000000)        AND  M_TRANSACTION.AD_ORG_ID IN (0,1000000)       AND  1=1&lt;br /&gt;AND  M_TRANSACTION.MOVEMENTDATE &lt;&gt; 0    &lt;br /&gt;ORDER BY  M_PRODUCT_CATEGORY.NAME,M_PRODUCT.VALUE, M_PRODUCT.NAME,     M_ATTRIBUTESETINSTANCE.DESCRIPTION,M_LOCATOR.X, M_LOCATOR.Y,&lt;br /&gt;  M_LOCATOR.ZSELECT M_PRODUCT_CATEGORY.NAME AS CATEGORYNAME, M_PRODUCT.VALUE||'-'||M_PRODUCT.NAME AS NAME,&lt;br /&gt;  SUM(MOVEMENTQTY) AS MOVEMENTQTY,&lt;br /&gt;  M_LOCATOR.X,     M_LOCATOR.Y,     &lt;br /&gt;  AD_COLUMN_IDENTIFIER('M_WAREHOUSE', to_char(M_LOCATOR.M_WAREHOUSE_ID), :1) AS WAREHOUSE,&lt;br /&gt;  M_LOCATOR.Z, C1.NAME AS UOMMOVEMENTQTY,&lt;br /&gt;  M_ATTRIBUTESETINSTANCE.M_ATTRIBUTESETINSTANCE_ID,&lt;br /&gt;  M_ATTRIBUTESETINSTANCE.DESCRIPTION,&lt;br /&gt;  (CASE WHEN M_TRANSACTION.M_PRODUCT_UOM_ID IS NULL THEN (CASE M_PRODUCT.WEIGHT*SUM(M_TRANSACTION.MOVEMENTQTY)&lt;br /&gt;    WHEN 0 THEN NULL ELSE M_PRODUCT.WEIGHT*SUM(M_TRANSACTION.MOVEMENTQTY) END) ELSE SUM(M_TRANSACTION.QUANTITYORDER) END) AS WEIGHT,     &lt;br /&gt;  (CASE WHEN M_TRANSACTION.M_PRODUCT_UOM_ID IS NULL THEN (CASE WHEN M_PRODUCT.WEIGHT = 0 THEN '' WHEN M_PRODUCT.WEIGHT IS NULL THEN '' ELSE 'Kgs' END) ELSE TO_CHAR(C2.NAME) END) AS UOMWEIGHT, '' as id&lt;br /&gt;    FROM M_PRODUCT&lt;br /&gt;    left join M_PRODUCT_CATEGORY on M_PRODUCT.M_PRODUCT_CATEGORY_ID = M_PRODUCT_CATEGORY.M_PRODUCT_CATEGORY_ID,&lt;br /&gt;         M_PRODUCT_UOM&lt;br /&gt;    right join M_TRANSACTION     on M_TRANSACTION.M_PRODUCT_UOM_ID  = M_PRODUCT_UOM.M_PRODUCT_UOM_ID    &lt;br /&gt;    left join C_UOM C2           on M_PRODUCT_UOM.C_UOM_ID          = C2.C_UOM_ID,&lt;br /&gt;         M_LOCATOR, C_UOM C1,&lt;br /&gt;         M_ATTRIBUTESETINSTANCE    &lt;br /&gt;           WHERE M_TRANSACTION.M_PRODUCT_ID = M_PRODUCT.M_PRODUCT_ID&lt;br /&gt;           AND M_TRANSACTION.M_ATTRIBUTESETINSTANCE_ID = M_ATTRIBUTESETINSTANCE.M_ATTRIBUTESETINSTANCE_ID&lt;br /&gt;           AND M_TRANSACTION.M_LOCATOR_ID = M_LOCATOR.M_LOCATOR_ID&lt;br /&gt;           AND M_TRANSACTION.C_UOM_ID = C1.C_UOM_ID &lt;br /&gt;           AND M_TRANSACTION.AD_CLIENT_ID IN (0,1000000)   AND M_TRANSACTION.AD_ORG_ID IN (0,1000000)                   AND 1=1&lt;br /&gt;           AND M_TRANSACTION.MOVEMENTDATE &lt;&gt; 0    &lt;br /&gt; ORDER BY  M_PRODUCT_CATEGORY.NAME,M_PRODUCT.VALUE, M_PRODUCT.NAME, M_ATTRIBUTESETINSTANCE.DESCRIPTION,M_LOCATOR.X, M_LOCATOR.Y, M_LOCATOR.Z&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/font&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1935482794903784981?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1935482794903784981/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/mtransaction.html#comment-form' title='36 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1935482794903784981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1935482794903784981'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/mtransaction.html' title='M_Transaction / 在庫状況'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/SjC4txT2GWI/AAAAAAAAB_M/m_CYZsXWi8Y/s72-c/StockReport.jpg' height='72' width='72'/><thr:total>36</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3619246904231416643</id><published>2009-06-10T16:54:00.009+09:00</published><updated>2009-06-10T17:33:57.411+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP / Create Requisitions and Work Requirements</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;h3 style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 896px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;Create Requisitions and Work Requirements&lt;/h3&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Once the results are checked it is possible to Create the Material Requirements (or Requisitions) and the Work Requirement with the correspondent buttons of the header.&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Si9m3uSiB5I/AAAAAAAAB-0/G-mxaeAlTEw/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/Si9m3uSiB5I/AAAAAAAAB-0/G-mxaeAlTEw/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345604390216664978" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 128px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Si9o0kDhsOI/AAAAAAAAB-8/Mp_u6om099M/s1600-h/1.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/Si9o0kDhsOI/AAAAAAAAB-8/Mp_u6om099M/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345606534953021666" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 264px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Si9p1e79DLI/AAAAAAAAB_E/Qcz8Q5jpxF8/s1600-h/1.jpg"&gt;&lt;img src="http://4.bp.blogspot.com/_GRrE56uLdI8/Si9p1e79DLI/AAAAAAAAB_E/Qcz8Q5jpxF8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345607650270579890" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 299px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 896px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Purchasing Plan&lt;/span&gt;&lt;/h3&gt;&lt;a name="Create_Purchase_Orders" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3 style="font-size: 15px; font-weight: bold; margin-bottom: 8px; clear: right; width: 896px; font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); "&gt;&lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/Procurement_Management"&gt;http://wiki.openbravo.com/wiki/Functional_Documentation/Procurement_Management&lt;/a&gt;&lt;/h3&gt;&lt;h3 style="font-size: 15px; font-weight: bold; margin-bottom: 8px; clear: right; width: 896px; font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); "&gt;&lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/Procurement_Management"&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-size: 11px; font-weight: normal; "&gt;&lt;h2 style="font-size: 17px; font-weight: bold; margin-bottom: 8px; clear: right; width: 941px; font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); "&gt;&lt;span class="mw-headline"&gt;Requisition&lt;/span&gt;&lt;/h2&gt;&lt;table border="0" cellpadding="2"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;div class="t" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/dot.jpg); background-repeat: repeat-x; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; width: 235px; background-position: 0px 0px; "&gt;&lt;div class="b" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/dot.jpg); background-repeat: repeat-x; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 0px 100%; "&gt;&lt;div class="l" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/dot.jpg); background-repeat: repeat-y; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 0px 0px; "&gt;&lt;div class="r" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/dot.jpg); background-repeat: repeat-y; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 100% 0px; "&gt;&lt;div class="bl" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/3.jpg); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 0px 100%; "&gt;&lt;div class="br" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/4.jpg); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 100% 100%; "&gt;&lt;div class="tl" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/1.jpg); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; background-position: 0px 0px; "&gt;&lt;div class="tr" style="background-image: url(http://wiki.openbravo.com/wiki/skins/openbravo/images/2.jpg); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; background-position: 100% 0px; "&gt;&lt;div class="showbox"&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Functionality available in version 2.40&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Users can initiate the procurement flow by entering requisitions rather than purchase orders. This enables a clear separation of roles and duties between:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;The Requestor&lt;/b&gt; who expresses a demand for goods or services through a requisition.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;The Purchasing Specialist&lt;/b&gt; who selects the most appropriate supplier based on the organization strategic procurement objectives and generates the purchase order, either manually or automatically based on rules.&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Create Purchase Orders&lt;/h3&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/User_Manual_2.40/Procurement_Management"&gt;http://wiki.openbravo.com/wiki/User_Manual_2.40/Procurement_Management&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3619246904231416643?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3619246904231416643/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-create-requisitions-and-work.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3619246904231416643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3619246904231416643'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-create-requisitions-and-work.html' title='How-to MRP / Create Requisitions and Work Requirements'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Si9m3uSiB5I/AAAAAAAAB-0/G-mxaeAlTEw/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4626000176593881100</id><published>2009-06-10T15:13:00.008+09:00</published><updated>2009-06-10T16:13:21.715+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP / After processing the plan</title><content type='html'>&lt;h3    style="font-weight: bold; margin-bottom: 8px; clear: right; width: 759px; color: #000000; margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-  font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;color:#d2d2d2;"&gt;&lt;span class="mw-headline"&gt;Manufacturing Plan&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Create a new Manufacturing Plan.&lt;/p&gt;&lt;ul&gt; &lt;li style="line-height: 12pt; "&gt;Name: &lt;em&gt;Manufacturing Plan 1&lt;/em&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="line-height: 12pt; "&gt;Document Date: &lt;em&gt;2008-06-15&lt;/em&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="line-height: 12pt; "&gt;Time Horizon: &lt;em&gt;60&lt;/em&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="line-height: 12pt; "&gt;Lead Time: &lt;em&gt;1&lt;/em&gt;&lt;/li&gt;&lt;br /&gt;&lt;li style="line-height: 12pt; "&gt;Planner: &lt;em&gt;Planner 1&lt;/em&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;After processing the plan 10 lines are inserted in the &lt;em&gt;Lines&lt;/em&gt; tab.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="color:#660000;"&gt;実行後、Lines に１０行データが作成されている。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;We can see how it has considered the Sales Order,&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="color:#660000;"&gt;Salse Order が考慮されているのがわかるが、&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;but not the Work Requirement because its &lt;em&gt;Launch WR Date (2008-08-05)&lt;/em&gt; is later than the 30 days limit set in the Planning Method.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="color:#660000;"&gt;Work Requirement は実行日が Plan で設定したの３０日以降なので考慮されていない。&lt;/span&gt;&lt;/p&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;a class="image" style="color: #489c06; " title="Image:ManufacturingPlanResult.png" href="http://wiki.openbravo.com/wiki/Image:ManufacturingPlanResult.png"&gt;&lt;img style="border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-width: initial; border-color: initial; " src="http://wiki.openbravo.com/wiki/images/3/3b/ManufacturingPlanResult.png" border="0" alt="Image:ManufacturingPlanResult.png" width="964" height="232" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;On the Document Date we can see the 2 lines related to the stock of the products that are being planned,&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style=" line-height: 19px; font-size:13px;"&gt;&lt;span style="color:#660000;"&gt;Document Date: &lt;/span&gt;&lt;em&gt;&lt;span style="color:#660000;"&gt;2008-06-15 &lt;/span&gt;&lt;span style="font-style: normal; "&gt;&lt;span style="color:#660000;"&gt;に製造品の在庫設定により２レコードのデータが作成されているのがわかる&lt;/span&gt;&lt;/span&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;in this case only the Usb Cable, as the Raw Materials are purchased.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style=" line-height: 19px; font-size:13px;"&gt;&lt;span style="color:#660000;"&gt;今回の場合　Usb Cable のみ、なので原材料関係だけが購入される。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;If the USB Cable had an intermediate product that was produced in a different Process plan it would have appeared here with its own Work Requirement suggestion if necessary.&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span style=" line-height: 19px;  font-size:13px;color:#660000;"&gt;仮に　USB Cable が仕掛品をもっていた場合、別の Process Plan がその Work Requirement suggestion ともに必要に応じて表示される。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;The remaining lines are related to the sales order.&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span style=" line-height: 19px;  font-size:13px;color:#660000;"&gt;残りの行は Sales order 関連のものである。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;As the order is promised for July 7th and the Lead Time is 1 the MRP suggest a Work Requirement that would finish on July 6th.&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span style=" line-height: 19px;  font-size:13px;color:#660000;"&gt;７月７日が出荷予定でリードタイムが１日なのでMRPは７月６日に製造完了するように指示している。&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;This Work Requirement is of 600 units because it is considering also the Minimum stock of 100 units.&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span style=" line-height: 19px;  font-size:13px;color:#660000;"&gt;今回の Work Requirement の数　600 unit には最小在庫数１００が考慮されている。&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;This Work Requirement consumes some raw materials at June 30th that is when is expected to start the production.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="line-height: 19px; font-size:13px;"&gt;&lt;span&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;今回の製造で原材料が６月３０日に消費されるが、これは製造開始時に考慮されている。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;This leads to material requirements suggestions for the day before.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="line-height: 19px; font-size:13px;"&gt;&lt;span&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;原材料のリードタイムについては事前に指示。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;In the requirements in the Planned Order date is also calculated when should be ordered this products to arrive on time.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span style="line-height: 19px; font-size:13px;"&gt;&lt;span&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;Planned Order Date も製造品の order に従い算出される。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4626000176593881100?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4626000176593881100/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-after-processing-plan.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4626000176593881100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4626000176593881100'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-after-processing-plan.html' title='How-to MRP / After processing the plan'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-774983242366539631</id><published>2009-06-09T16:05:00.017+09:00</published><updated>2009-06-10T14:52:52.629+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>MRP Run</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Si9DptUaijI/AAAAAAAAB-s/8O9oUzC4xf8/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;ようやく MRP を実行することができた。&lt;br /&gt;&lt;a href="http://www.museum-in-cloud.com/index.php?imglink=http://museum.cloudapp.net/AzureStorages/MRP_Run01.jpg&amp;option=tipmage&amp;Itemid=1"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 269px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Si4NIJce34I/AAAAAAAAB-E/hm9tGPcm34I/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345224241360854914" /&gt;&lt;/a&gt;&lt;br /&gt;以下のSQLの検索結果がえら得るように画面を操作したが、一度動作すると、M_Product_ID = 100000 関連のデータを元に戻しても問題なく動作する。&lt;div&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span class="Apple-style-span"   style="  white-space: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Si4QT6lrywI/AAAAAAAAB-M/wCca-TdWh1k/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/Si4QT6lrywI/AAAAAAAAB-M/wCca-TdWh1k/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345227742066232066" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 309px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;span style="font-size:-2;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;pre&gt;&lt;span style="font-size:-2;"&gt;SELECT&lt;br /&gt;P.M_PRODUCT_ID,&lt;br /&gt;M_PRODUCT_CATEGORY_ID,&lt;br /&gt;COALESCE(SD.QTYONHAND,0) AS QTYONHAND,&lt;br /&gt;COALESCE(PO.STOCKMIN, P.STOCKMIN, 0) AS STOCKMIN,&lt;br /&gt;COALESCE(PO.MRP_PLANNINGMETHOD_ID, P.MRP_PLANNINGMETHOD_ID) AS MRP_PLANNINGMETHOD_ID&lt;br /&gt;FROM M_PRODUCT P&lt;br /&gt;LEFT JOIN M_PRODUCT_ORG PO ON P.M_PRODUCT_ID = PO.M_PRODUCT_ID&lt;br /&gt;AND PO.AD_ORG_ID = 1000000&lt;br /&gt;LEFT JOIN ( SELECT M_PRODUCT_ID, SUM(QTYONHAND) AS QTYONHAND&lt;br /&gt;FROM M_STORAGE_DETAIL GROUP BY M_PRODUCT_ID) SD ON P.M_PRODUCT_ID = SD.M_PRODUCT_ID&lt;br /&gt;WHERE (1000014  IS NULL OR P.M_PRODUCT_ID = 1000000   )&lt;br /&gt;AND (1000004  IS NULL OR P.M_PRODUCT_CATEGORY_ID = 1000004  )&lt;br /&gt;AND COALESCE(PO.MRP_PLANNER_ID, P.MRP_PLANNER_ID) = 1000000&lt;br /&gt;/&lt;/span&gt;&lt;/pre&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Si4Ju4nY1wI/AAAAAAAAB90/tCfesjDfjk8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 185px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Si4Ju4nY1wI/AAAAAAAAB90/tCfesjDfjk8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345220508811581186" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Si4KVLJBvbI/AAAAAAAAB98/K_w3znonuRw/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/Si4KVLJBvbI/AAAAAAAAB98/K_w3znonuRw/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345221166619540914" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 40px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Si5b_p8CviI/AAAAAAAAB-c/_zR1wIx9tP8/s1600-h/1.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/Si5b_p8CviI/AAAAAAAAB-c/_zR1wIx9tP8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345310956882935330" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 186px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Si5f5CYhu5I/AAAAAAAAB-k/ZyiyKdQ7vRQ/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/Si5f5CYhu5I/AAAAAAAAB-k/ZyiyKdQ7vRQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345315241232284562" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 185px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Si9DptUaijI/AAAAAAAAB-s/8O9oUzC4xf8/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/Si9DptUaijI/AAAAAAAAB-s/8O9oUzC4xf8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345565666530986546" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 306px; height: 400px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-774983242366539631?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/774983242366539631/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/mrp-run.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/774983242366539631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/774983242366539631'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/mrp-run.html' title='MRP Run'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Si4NIJce34I/AAAAAAAAB-E/hm9tGPcm34I/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7557250814255229576</id><published>2009-06-08T14:45:00.006+09:00</published><updated>2009-06-10T16:19:56.199+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>F_Doc/Process Manufacturing Plan Logic</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h4 style="font-weight: bolder; margin-bottom: 0px; clear: right; "&gt;&lt;span class="mw-headline"&gt;Process Manufacturing Plan Logic&lt;/span&gt;&lt;/h4&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The manufacturing plan process is structured in three different steps.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;製造計画は３つのステップからなる。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt; Before starting these steps the manufacturing plan lines that are not fixed are deleted, normally these lines are the proposals created in previous execution of the process.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;ステップ開始時、fix していない製造計画詳細(MRP_Run_Productionlines)のデータは削除される。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt; And all the remaining lines are set as not exploded except the lines of products that are manufactured in a work requirement in progress as the lines of the products that are consumed in that work requirements will already exist.&lt;/p&gt;&lt;a name="Initialization" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h5  style=" font-weight: bolder; margin-bottom: 0px; clear: right; font-size:0.83em;"&gt;&lt;span class="mw-headline"&gt;Initialization&lt;/span&gt;&lt;/h5&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Once the lines are prepared begins the process, the first step is the initialization. &lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;まず初期化。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The initialization consists on including in the process all the transactions expected to happen during the defined time period and that fulfills the planning method of each product.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;期間をチェック&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt; In this step are considered all the products that fulfills the filters set in the manufacturing plan. &lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;To know if a product has been initialized or not, the existence of inserted stock lines is checked. The stock lines are always included. For the purchase plan process are considered the purchase and sales orders, the sales forecasts and work requirements in progress.&lt;/p&gt;&lt;a name="Explode_product_tree" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h5  style=" font-weight: bolder; margin-bottom: 0px; clear: right; font-size:0.83em;"&gt;&lt;span class="mw-headline"&gt;Explode product tree&lt;/span&gt;&lt;/h5&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;In the second step is exploded the tree of products that are manufactured. The explosion is performed in a recursive manner while not exploded lines exist. On each iteration all not exploded lines are considered. If the quantity of the line is negative it is a demand so a new line is inserted with opposite quantity. If the product of the line is purchased the new line is a Material Requirement proposal with planned and order date a number of days before defined by the lead time, the line is inserted as exploded as the purchases are managed in the purchasing plan. When the product is not purchased the new line is a Work Requirement proposal. The planned date is calculated using the lead time as the previous case, the order date that states the beginning of the needed production is calculated based on the capacity, minimum delay and needed quantity. When the quantity of the line is positive it is assumed that the line is of a product that is needed to produce and is not exploded. In this case is necessary to insert a line for each product related with in the production, all the raw materials and also the secondary products that can be produced in the default process plan of the product. The new lines of raw materials are inserted as not exploded and their planned date is the calculated date in which the production should start. If the product of the line that is being exploded is used as raw material to produce other products those products are initialized to be also considered in the manufacturing plan. Finally the line is set as exploded. When all the lines are exploded is checked if there still are not exploded lines to repeat the loop until all lines are exploded.&lt;/p&gt;&lt;a name="Process_plan" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h5  style=" font-weight: bolder; margin-bottom: 0px; clear: right; font-size:0.83em;"&gt;&lt;span class="mw-headline"&gt;Process plan&lt;/span&gt;&lt;/h5&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Lastly each product is planned calculating the necessary quantities and dates. This section is still to be completed.&lt;/p&gt;&lt;a name="Create_Work_Requirements_Logic" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h4 style="font-weight: bolder; margin-bottom: 0px; clear: right; "&gt;&lt;span class="mw-headline"&gt;Create Work Requirements Logic&lt;/span&gt;&lt;/h4&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The work Requirement creation process creates a &lt;i&gt;work requirement&lt;/i&gt; header for each proposal generated in the &lt;i&gt;Manufacturing Plan process&lt;/i&gt;. The &lt;i&gt;ending date&lt;/i&gt; is the &lt;i&gt;need by date&lt;/i&gt; calculated in the proposal and the &lt;i&gt;start date&lt;/i&gt; is also calculated in the proposal based on the capacity and minimum delay defined for the product. The &lt;i&gt;creation date&lt;/i&gt; is defaulted to the current date.&lt;br /&gt;Conversion rate and process unit are not filled by this process.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Work Requirements are created without processing them in order to allow a final review before initiating production.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Each proposal is then linked with the created work requirement for traceability purposes.&lt;/p&gt;&lt;a name="Create_Material_Requirements_Logic" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h4 style="font-weight: bolder; margin-bottom: 0px; clear: right; "&gt;&lt;span class="mw-headline"&gt;Create Material Requirements Logic&lt;/span&gt;&lt;/h4&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;This section is still to be completed.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7557250814255229576?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7557250814255229576/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/process-manufacturing-plan-logic.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7557250814255229576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7557250814255229576'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/process-manufacturing-plan-logic.html' title='F_Doc/Process Manufacturing Plan Logic'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-2463752461664990914</id><published>2009-06-08T14:44:00.003+09:00</published><updated>2009-06-10T16:19:26.404+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>F_Doc/Manufacturing Plan</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h2   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:17px;"&gt;&lt;span class="mw-headline"&gt;Manufacturing Plan&lt;/span&gt;&lt;/h2&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Openbravo's manufacturing plan consists in creating work requirements and material requirements based on product demand. This process explodes all the product tree so all related products are planned. The source of material demand can be sales orders and sales forecasts. During the planning process it also takes into account current stock, minimum stocks, unreceived purchase orders and open work requirements.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;When processing the plan, the products to be planned can be selected using several filters:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Product category: all products in the category&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Planner: all the products associated with the planner&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Customer: all the products purchased by the customers&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Partner group: all the products purchased by the customers of the group.&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Please notice that this filter is only used at the beginning of the process but product selection grows as the product tree is exploded.&lt;br /&gt;For example, in the following image, all the products will be planned when at least one of them fulfills the filter. When &lt;i&gt;product C&lt;/i&gt; is planned it is necessary to plan the demand of its intermediate &lt;i&gt;product F&lt;/i&gt;. The demand for &lt;i&gt;F&lt;/i&gt; is driven by &lt;i&gt;C&lt;/i&gt; but also by &lt;i&gt;product B&lt;/i&gt;, which is then also planned. Similarly, to plan &lt;i&gt;F&lt;/i&gt; it is necessary to also plan the raw materials &lt;i&gt;product I&lt;/i&gt; and &lt;i&gt;product J&lt;/i&gt;.&lt;br /&gt;Continuing with this explosion process, we see that all the products in the tree need to be planned.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;a href="http://wiki.openbravo.com/wiki/Image:Product-Tree.png" class="image" title="Image:Product-Tree.png" style="color: rgb(72, 156, 6); "&gt;&lt;img alt="Image:Product-Tree.png" src="http://wiki.openbravo.com/wiki/images/7/7e/Product-Tree.png" width="345" height="129" border="0" style="border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-width: initial; border-color: initial; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;When the product tree is exploded, the planning process generates proposal lines that are linked to each other with a parent-child relationship.&lt;br /&gt;Every product demand has its own work requirement proposal or material requirement proposal. Each work requirement proposal has different child lines, the main one is to manufacture the correspondent material requirement, and the children are for the products that are used and that might be created in the work requirement.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;After the Manufacturing Planning process, it is possible to manually adjust the work requirement or material requirement recommended by MRP by editing quantities and dates.&lt;br /&gt;When editing a work requirement, you only need to change the main line; you can then recalculate the dates and quantities of all the children lines by pressing the Recalculate button.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;To put the manufacturing plan into execution, it is necessary to create the &lt;i&gt;work requirement&lt;/i&gt; and &lt;i&gt;material requirements&lt;/i&gt; from all the proposals using the correspondent processes.&lt;br /&gt;The created &lt;i&gt;Work Requirements&lt;/i&gt; only have the header so it is necessary to process it to create the &lt;i&gt;operations&lt;/i&gt; and &lt;i&gt;products&lt;/i&gt;. This is to allow a final review before initiating production.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;a href="http://wiki.openbravo.com/wiki/Image:ManufacturingPlan-Overview.png" class="image" title="Image:ManufacturingPlan-Overview.png" style="color: rgb(72, 156, 6); "&gt;&lt;img alt="Image:ManufacturingPlan-Overview.png" src="http://wiki.openbravo.com/wiki/images/a/ab/ManufacturingPlan-Overview.png" width="993" height="290" border="0" style="border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-width: initial; border-color: initial; " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-2463752461664990914?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/2463752461664990914/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/manufacturing-plan.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2463752461664990914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2463752461664990914'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/manufacturing-plan.html' title='F_Doc/Manufacturing Plan'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5784363628650627818</id><published>2009-06-07T16:15:00.004+09:00</published><updated>2009-06-10T16:18:51.650+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>Fl_Doc/Configuring MRP in Openbravo</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h2   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:17px;"&gt;&lt;span class="mw-headline"&gt;Configuring MRP in Openbravo&lt;/span&gt;&lt;/h2&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;For the planning processes to work correctly, you have to properly configure the products and the vendors. &lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;Planning  Process には　Products と Vendors の設定が必須。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Before starting it is needed to create the necessary planning methods and planners as they are required in the product configuration. &lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;Planning 関連の設定の前提として、Procudts の設定が必要。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;It is very important to pay attention to the organizations where the products and vendors are being configured.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;Products と Vendors の設定には　organizations の設定が重要であるので注意すること。&lt;/span&gt;&lt;/p&gt;&lt;a name="Product_Configuration" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Product Configuration&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The products have to be configured for each organization that performs manufacturing or purchase planning. You can do this in the Product definition window, in the Org Specific tab. The relevant attributes are:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Default Process Plan&lt;/i&gt;: required for manufactured products.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Planning Method&lt;/i&gt;: the planning method to use.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Planner&lt;/i&gt;: the planner responsible for the product in the organization.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Capacity&lt;/i&gt;: the maximum daily capacity for the product, to purchase or to produce. If the demand exceeds the capacity, the proposal will extend beyond one day.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Min. Quantity&lt;/i&gt;: the minimum quantity that can be purchased or to produced.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Qty. Type&lt;/i&gt;: defines how the quantity of the proposals is calculated.&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Exact&lt;/i&gt;, each proposal is for this exact quantity and MRP recommends as many purchase or work requirements as necessary to fulfill the demand. For example, if this value is 10 and the demand is for 55, 6 proposals for 10 each are recommended.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Multiple&lt;/i&gt;, the proposal quantity is a multiple of this quantity. For example, if this value is 10 and the demand is 55, one proposal for 60 is recommended.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;If &lt;i&gt;no type&lt;/i&gt; is defined the proposals are created with the needed quantity.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Minimum lead time&lt;/i&gt;: minimum lead time in days to complete the proposal. For example, if this value is 10 and a product is needed for October 30th, MRP suggests initiating purchasing or production on October 20th.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;i&gt;Safety stock&lt;/i&gt;: minimum stock level to maintain during the planning processes. For example, if this value is 50 and the quantity on hand is 100, for a demand of 60, MRP suggests to purchase or produce 10.&lt;/li&gt;&lt;/ul&gt;&lt;a name="Vendor_Configuration" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Vendor Configuration&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Further, to process the purchase plan it is necessary to set at least one current vendor for the products. For each product and vendor, you can specify:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Minimum purchase quantity&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Promised delivery time (in days)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Minimum order quantity&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Quantity type&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Capacity.&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;In the purchase plan process, if these data is not defined for the selected vendor, it is defaulted from the values specified at product and organization level.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="line-height: normal; "&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Process Plan Configuration&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The correct definition of a process plan is essential for the correct execution of MRP as the process plans is needed to explode the product demand.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;MRP, however, does not have any additional configuration options for process plans beyond what is required for &lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/ProductionManagement" title="Functional Documentation/ProductionManagement" style="color: rgb(72, 156, 6); "&gt;Production Management&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5784363628650627818?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5784363628650627818/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/functionaldocumentationconfiguring-mrp.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5784363628650627818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5784363628650627818'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/functionaldocumentationconfiguring-mrp.html' title='Fl_Doc/Configuring MRP in Openbravo'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-942270939674073277</id><published>2009-06-07T13:22:00.004+09:00</published><updated>2009-06-10T16:18:24.867+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>F_Doc/MRP Concepts</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/MRP"&gt;http://wiki.openbravo.com/wiki/Functional_Documentation/MRP&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/User_Manual_2.40/Materials_Requirement_Planning_(MRP)"&gt;http://wiki.openbravo.com/wiki/User_Manual_2.40/Materials_Requirement_Planning_(MRP)&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/ERP/2.50/User_Manual/Materials_Requirement_Planning_(MRP)"&gt;http://wiki.openbravo.com/wiki/ERP/2.50/User_Manual/Materials_Requirement_Planning_(MRP)&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h2   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:17px;"&gt;&lt;span class="mw-headline"&gt;MRP Concepts&lt;/span&gt;&lt;/h2&gt;&lt;a name="Material_Requisitions" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Material Requisitions&lt;/span&gt;&lt;/h3&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;i&gt;Material Requisitions&lt;/i&gt; are demands for products to be purchased. &lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="font-style: italic; "&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;Material Requisitions　: &lt;/span&gt;&lt;span class="Apple-style-span" style="font-style: normal; "&gt;&lt;span class="Apple-style-span"  style="color:#660000;"&gt;製造のためにどのような部材を購入（仕入れ）する必要があるか。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;They are the output of the &lt;i&gt;Production Plan process&lt;/i&gt; - which creates demand for raw material - and a possible input of the &lt;i&gt;Purchase Plan process&lt;/i&gt;.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0); font-style: italic; "&gt;Material Requisitions :&lt;span class="Apple-style-span" style="font-style: normal; "&gt; Production Plan process の raw material の需用、あるいは Purchase Plan Process からも作成される、&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Each requirement is identified by a document number and it is composed of one or more lines, one per needed product and date combination. For each line, the following attributes are specified:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Need by date&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Requested quantity&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Vendor (optional)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price list (optional)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price (optional)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Currency (optional)&lt;/li&gt;&lt;/ul&gt;&lt;a name="Sales_Forecast" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Sales Forecast&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;i&gt;Sales Forecasts&lt;/i&gt; are a projection of customer demand for a given product or expected sales for customers. They can be used as inputs in the&lt;i&gt;Manufacturing Plan&lt;/i&gt; and in the &lt;i&gt;Purchasing Plan&lt;/i&gt;.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The key attributes of a &lt;i&gt;sales forecast&lt;/i&gt; are:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Business partner: the customer to whom you forecast the sale&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Date (optional): the date on which you enter the forecast - you can use this attribute to version the forecast.&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;A forecast is made of several lines; each line specifies the product for which you expect demand, the date when you expect the sale to occur, and the quantity expected be sold.&lt;/p&gt;&lt;a name="Planning_method" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Planning method&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The &lt;i&gt;planning method&lt;/i&gt; is used to set the different transaction types that are considered during the planning process, as either supply or demand.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The planning method is a property of the product so different products can have a different planning method.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The available transaction classes for the planning method are:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Requisitions (Material Forecast)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Purchase Orders in progress&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Sales Forecasts&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Sales Orders in progress&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Work Requirement in progress&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;For each transaction type, it is also possible to define whether transactions are considered for the whole time horizon or just for a portion:&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Days from start: the number of days from the beginning of the planning period to the start of the transaction time frame being considered.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Days to end: the number of days from the beginning of the planning horizon up to which transactions are considered.&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;You can also specify the percentage of quantity to be considered using the Weighting attribute. For example, if you specify a weight of 0.9 for Sales Forecast, if you provide a forecast of 100 units for a specific product, the planning method will only consider 90 units.&lt;/p&gt;&lt;a name="Planner" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 766px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Planner&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The &lt;i&gt;Planner&lt;/i&gt; is an entity used to filter the products considered in the planning processes. On each &lt;i&gt;purchase&lt;/i&gt; or &lt;i&gt;manufacturing plan&lt;/i&gt; is possible to select a planner so only products associated with that planner are considered.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Typically, in an enterprise, different people are responsible for planning manufacturing and purchasing of different products. You can use&lt;i&gt;Planners&lt;/i&gt; to model that practice.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Please notice that in the manufacturing plan process other products can be included when the product tree is exploded, see &lt;a href="http://wiki.openbravo.com/wiki/Functional_Spec/MRP#Manufacturing_Plan" title="Functional Spec/MRP" style="color: rgb(72, 156, 6); "&gt;Manufacturing Plan&lt;/a&gt; section.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-942270939674073277?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/942270939674073277/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/functionaldocumentationmrp.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/942270939674073277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/942270939674073277'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/functionaldocumentationmrp.html' title='F_Doc/MRP Concepts'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1083392809950765554</id><published>2009-06-06T13:22:00.007+09:00</published><updated>2009-06-06T14:33:21.926+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP / MRP Execution</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h2   style="clear: right; width: 95%;   font-weight: bold; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:17px;"&gt;&lt;span class="mw-headline"&gt;MRP Execution&lt;/span&gt;&lt;/h2&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;Once the MRP has been set up it is possible to start running the MRP processes.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;MRP のセットアップが完了させたら、MRP　を実行する。&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt; In this example is created a Sales Order of &lt;i&gt;USB cables&lt;/i&gt; and a Work Requirement for &lt;i&gt;USB Cables&lt;/i&gt; that it is not enough to fulfill the Sales Order.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;今回の例の　Sales Order "USB cables" と Work Requirement "USB Cables" は Sales Order には十分ではない。&lt;/span&gt;&lt;/p&gt;&lt;a name="Insert_demand" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style="clear: right; width: 95%;   font-weight: bold; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Insert demand見込み&lt;/span&gt;&lt;/h3&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Create and complete a Sales Order using a document type that does not generate the corresponding shipment, in this case is used the &lt;i&gt;Standard Order&lt;/i&gt; and a Scheduled delivery date 2008-07-07. The order has a unique line for 500 &lt;i&gt;USB Cables&lt;/i&gt;.&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;USB　Cables を５００本　見込む。&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sin71rMjtBI/AAAAAAAAB9E/XGxY0IFdI_c/s1600-h/1.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sin71rMjtBI/AAAAAAAAB9E/XGxY0IFdI_c/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344079332398838802" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 154px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;a href="http://openbravo-erp.blogspot.com/2009/05/create-work-requirement.html"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;Create and process a Work Requirement&lt;/span&gt;&lt;/a&gt; for 100 &lt;i&gt;Usb Cable&lt;/i&gt;. The three dates are the same &lt;i&gt;2008-08-05&lt;/i&gt;.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sin_PRCyH8I/AAAAAAAAB9M/UWykczQMk48/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sin_PRCyH8I/AAAAAAAAB9M/UWykczQMk48/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344083070590001090" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 264px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; font-size: 48px; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; font-size: 48px; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; font-size: 48px; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; font-size: 48px; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;a name="Manufacturing_Plan" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style="clear: right; width: 95%;   font-weight: bold; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Manufacturing Plan&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Create a new Manufacturing Plan.&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name: &lt;i&gt;Manufacturing Plan 1&lt;/i&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Document Date: &lt;i&gt;2008-06-15&lt;/i&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Time Horizon: &lt;i&gt;60&lt;/i&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Lead Time: &lt;i&gt;1&lt;/i&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Planner: &lt;i&gt;Planner 1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;After processing the plan 10 lines are inserted in the &lt;i&gt;Lines&lt;/i&gt; tab. We can see how it has considered the Sales Order, but not the Work Requirement because its &lt;i&gt;Launch WR Date (2008-08-05)&lt;/i&gt; is later than the 30 days limit set in the Planning Method.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1083392809950765554?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1083392809950765554/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-mrp-execution.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1083392809950765554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1083392809950765554'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-mrp-execution.html' title='How-to MRP / MRP Execution'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sin71rMjtBI/AAAAAAAAB9E/XGxY0IFdI_c/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-9046847471847073926</id><published>2009-06-06T12:33:00.003+09:00</published><updated>2009-06-06T13:02:55.881+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP / Process Plan</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style="clear: right; width: 95%;   font-weight: bold; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Process Plan&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Prior to &lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;a href="http://openbravo-erp.blogspot.com/2009/05/create-process-plan.html"&gt;create the Process Plan&lt;/a&gt;&lt;/span&gt; it is necessary to properly setup the manufacturing module, in this example are created just 2 Activities, &lt;i&gt;Build cable&lt;/i&gt; and &lt;i&gt;Ensemble USB Cable&lt;/i&gt;.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;Build cable と　Ensemble Cable の２つからなる Proces Plan を作成する&lt;/span&gt;。&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;It is created the Process Plan 'Usb Cables', with one version valid from 2008-01-01 to 2008-12-31. The Process plan has 2 operations defined using the following table.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;今回作成する Proces Plan 'Usb Cables' は以下の２つのオペレーションから構成される。&lt;/span&gt;&lt;/p&gt;&lt;table border="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Activity&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Multiplier&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;P- product (qty)&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;P+ product (qty)&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Build cable&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;1&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Copper (0.1 units)&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Plastic (0.1 units)&lt;/p&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Cable (1 unit)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Ensemble cable&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;1&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Cable (1 unit)&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Plug (2 units)&lt;/p&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Usb Cable (1 unit)&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sinn6jNF23I/AAAAAAAAB8s/UGOk_1i5KSU/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 158px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sinn6jNF23I/AAAAAAAAB8s/UGOk_1i5KSU/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344057425920383858" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sino_fltsyI/AAAAAAAAB80/AM8O3ifrlWE/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 173px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sino_fltsyI/AAAAAAAAB80/AM8O3ifrlWE/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344058610360890146" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-9046847471847073926?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/9046847471847073926/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-process-plan.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9046847471847073926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9046847471847073926'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-process-plan.html' title='How-to MRP / Process Plan'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sinn6jNF23I/AAAAAAAAB8s/UGOk_1i5KSU/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4929932460695520935</id><published>2009-06-06T12:01:00.018+09:00</published><updated>2009-06-06T16:02:39.000+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP / Products</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style="clear: right; width: 95%;   font-weight: bold; color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Products&lt;/span&gt;&lt;/h3&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;All the products are created under the new product category &lt;i&gt;Cables&lt;/i&gt; &lt;/p&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;製造品カテゴリ"Cables"を作成し、製造品にはこのカテゴリを使用&lt;/span&gt; &lt;/p&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SioMZ43eyzI/AAAAAAAAB9c/2YDUUs6bQOk/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/SioMZ43eyzI/AAAAAAAAB9c/2YDUUs6bQOk/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344097546729868082" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 145px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;and are checked as production products.&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;製造品は"Production"をチェック。&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/SioNwnTAdfI/AAAAAAAAB9k/nXW27UaFyqQ/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/SioNwnTAdfI/AAAAAAAAB9k/nXW27UaFyqQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344099036662101490" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 345px; height: 400px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;In the following table is shown all the relevant configuration of the products, the process plan has to be updated on the product later when it is created. The &lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/MRP#Product_Configuration" title="Functional Documentation/MRP" style="color: rgb(72, 156, 6); "&gt;MRP specifics&lt;/a&gt; are defined in the &lt;i&gt;Org specific&lt;/i&gt; tab, for raw materials are also inserted in the &lt;i&gt;Purchasing&lt;/i&gt; tab (it is used &lt;i&gt;Anghet ,Company&lt;/i&gt; as current vendor).&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;部品(M_Product)は Org specific タブで 組織(M_Product_Org)と紐付けされている。&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;また row materials (Copper, Plastic,Plugs) は Purchasing タブで仕入先( vendor )を紐付けされている。&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" color="black" style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:48px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/SioHGRUxIeI/AAAAAAAAB9U/CBM-5lK95aQ/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/SioHGRUxIeI/AAAAAAAAB9U/CBM-5lK95aQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344091712139633122" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 354px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt; The intermediate product &lt;i&gt;Cable&lt;/i&gt; is not considered in the MRP as all the &lt;i&gt;cable&lt;/i&gt; created in the process plan is consumed in the same process plan to produce the &lt;i&gt;usb cable&lt;/i&gt;. &lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;仕掛品 Cable はMRP対象外　（usb cable の process plan による）&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The raw materials and the finished products are also included in a price list: &lt;i&gt;01-01-2005 Special nº1&lt;/i&gt; for the &lt;i&gt;Usb cable&lt;/i&gt; and&lt;i&gt;01/01/2005 Purchase&lt;/i&gt; for &lt;i&gt;Copper, Plastic and Plugs&lt;/i&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="font-style: italic;"&gt;&lt;span class="Apple-style-span" style="font-style: normal; "&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;原料と完成品はそれぞれ上記のprice listに登録されていること。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 0, 0);"&gt;&lt;span class="Apple-style-span"   style="color: rgb(0, 0, 0);   line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SioUHfNgckI/AAAAAAAAB9s/h1WlXpm_Y7w/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/SioUHfNgckI/AAAAAAAAB9s/h1WlXpm_Y7w/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344106026698306114" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 160px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal;font-family:Georgia;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal;font-family:Georgia;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal;font-family:Georgia;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-family:Georgia;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;"&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span" style="font-family: Georgia; line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-family:Georgia;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-family:Georgia;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="Verdana, Arial, sans-serif" size="11px" style="line-height: 12pt;   padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;table border="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Name&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Purchase&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Sale&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Process PlanPlanningMethod&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Org specific&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Capacity&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Safety Stock&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Min. Qty/&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Min.Order Qty.&lt;/p&gt;&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Prom.&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Delivery Time&lt;/p&gt;&lt;/th&gt;&lt;th style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Qty. Type&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Copper&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Y&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;California&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;1&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;10&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;10&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Plastic&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Y&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;California&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;1&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;5&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;15&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Cable&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Plugs&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Y&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;California&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;100&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Usb cable&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;N&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Y&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;Usb Cables&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;California&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;100&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;100&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;1&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;td style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; "&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/SinhSYejkQI/AAAAAAAAB8k/zDZLjgHoC9w/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 309px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/SinhSYejkQI/AAAAAAAAB8k/zDZLjgHoC9w/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5344050138776310018" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4929932460695520935?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4929932460695520935/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-products.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4929932460695520935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4929932460695520935'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-products.html' title='How-to MRP / Products'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/SioMZ43eyzI/AAAAAAAAB9c/2YDUUs6bQOk/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3661756307747241262</id><published>2009-06-05T14:30:00.013+09:00</published><updated>2009-06-06T12:02:23.786+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MRP'/><title type='text'>How-to MRP</title><content type='html'>&lt;a href="http://wiki.openbravo.com/wiki/How-to_MRP"&gt;http://wiki.openbravo.com/wiki/How-to_MRP&lt;/a&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h2   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 712px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:17px;"&gt;&lt;span class="mw-headline"&gt;MRP Setup&lt;/span&gt;&lt;/h2&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 712px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Planner&lt;/span&gt;&lt;/h3&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  line-height: 16px; font-family:Verdana;font-size:11px;"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Functional_Documentation/MRP#Planner" title="Functional Documentation/MRP" style="color: rgb(72, 156, 6); "&gt;Planner&lt;/a&gt; &lt;i&gt;Planner 1&lt;/i&gt;.&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Typically, in an enterprise, different people are responsible for planning manufacturing and purchasing of different products. You can use Planners to model that practice.&lt;/li&gt;&lt;li&gt;企業内では生産を計画する担当者とその生産に必要な資材の購入を担当する人は別々であるため、こうした Planner が必要となる。&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 712px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Planning Method&lt;/span&gt;&lt;/h3&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Material Requirement Planning (MRP) || Setup || Planning Method  ||  Header  &gt;&gt;  Lines&lt;/li&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SiiwjKBSOrI/AAAAAAAAB8c/59HaFLs6BFY/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 204px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/SiiwjKBSOrI/AAAAAAAAB8c/59HaFLs6BFY/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343715075906747058" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style="font-size:48px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span"   style="font-family:Georgia;font-size:130%;"&gt;&lt;span class="Apple-style-span"  style=" font-weight: normal;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 712px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Products&lt;/span&gt;&lt;/h3&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS'; font-size: 13px; "&gt;&lt;a href="http://openbravo-erp.blogspot.com/2009/06/how-to-mrp-products.html" style="text-decoration: none; color: rgb(0, 0, 255); "&gt;How-to MRP / Products&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3661756307747241262?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3661756307747241262/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3661756307747241262'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3661756307747241262'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/06/how-to-mrp.html' title='How-to MRP'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/SiiwjKBSOrI/AAAAAAAAB8c/59HaFLs6BFY/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-2178657763667664450</id><published>2009-05-31T20:19:00.003+09:00</published><updated>2009-05-31T20:28:53.180+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Configuring the default date and time formats</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SiJpw-q-USI/AAAAAAAAB7U/PuXpz7dM8oI/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;日付書式　Date Format を変更するにはやはり再コンパイルが必要&lt;br /&gt;&lt;br /&gt;&lt;div&gt;やはり　YYYY/MM/DD に関連した不具合があるため、 DD-MM-YYYY にしようとしたが&lt;br /&gt;Openbravo.properties の NLS_DATE_FORMAT の変更だけでは対応できない。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SiJpw-q-USI/AAAAAAAAB7U/PuXpz7dM8oI/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/SiJpw-q-USI/AAAAAAAAB7U/PuXpz7dM8oI/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341948398192709922" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 355px; height: 127px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:11px;"&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 741px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Configuring the default date and time formats&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;To change the default Openbravo ERP date format launch the setup tool inside the config/setup-tool directory.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Once all the changes are done, recompile and deploy Openbravo ERP:&lt;/p&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;ant compile.complete &lt;/pre&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;ant war &lt;/pre&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;ant deploy &lt;/pre&gt;&lt;a name="Configuring_the_default_numbering_format" style="color: rgb(72, 156, 6); "&gt;&lt;/a&gt;&lt;h3   style=" font-weight: bold; margin-bottom: 8px; clear: right; width: 741px;  color: rgb(0, 0, 0); margin-top: 15px; margin-right: 0px; margin-left: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(210, 210, 210); font-family:Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;span class="mw-headline"&gt;Configuring the default numbering format&lt;/span&gt;&lt;/h3&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;You can modify the default numbering format &lt;b&gt;by editing&lt;/b&gt; the &lt;i&gt;Format.xml&lt;/i&gt; file inside &lt;i&gt;config&lt;/i&gt; directory. You should have decimal="." grouping="," for every category. Once this is done you will have to restart Tomcat and the reports will show as you wish.&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;&lt;a href="http://wiki.openbravo.com/wiki/Openbravo_ERP_installation#Configuring_the_default_date_and_time_formats"&gt;http://wiki.openbravo.com/wiki/Openbravo_ERP_installation#Configuring_the_default_date_and_time_formats&lt;/a&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-2178657763667664450?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/2178657763667664450/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/configuring-default-date-and-time.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2178657763667664450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2178657763667664450'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/configuring-default-date-and-time.html' title='Configuring the default date and time formats'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/SiJpw-q-USI/AAAAAAAAB7U/PuXpz7dM8oI/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5865005330261763129</id><published>2009-05-29T22:01:00.001+09:00</published><updated>2009-05-29T22:01:37.382+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Sales Management'/><title type='text'>2.6 Sales Management</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5865005330261763129?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5865005330261763129/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/26-sales-management_29.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5865005330261763129'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5865005330261763129'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/26-sales-management_29.html' title='2.6 Sales Management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1302974219697643809</id><published>2009-05-29T21:53:00.005+09:00</published><updated>2009-06-05T01:39:11.875+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>Pay the Purchase Invoice</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5. Pay the Purchase Invoice&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Test the cash journal using the payment that is above&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Receivables and Payments-&gt;Transactions-&gt;Cash journal&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New, fill the mandatory fields and save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Lines Tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and select Cash Type: Debt-Payment&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on Payment icon and:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Business partner: VENDOR A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Unmark Receipt check&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Be carefully with the dates. You will only see the payment within the correct ranges&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click Search and mark the payment. Click OK&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify the Amount field is filled with the amount of the payment&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go back to header and process&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click "Not posted"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify the journal entry is correct&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;When you process a Cash journal, a Settlement is created in order to cancel the payment. To verify this:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;From the Cash journal window move to Lines tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select one line and click "Linked Items"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;You must see the link "Settlement - Cancelled Payments". Click it&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;You must see the link of the payment. Click it&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;You must browse to Cancelled Payments tab&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sifx1Oo-CfI/AAAAAAAAB7s/ib7i1xGndaE/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 203px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sifx1Oo-CfI/AAAAAAAAB7s/ib7i1xGndaE/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343505379663677938" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/SifyJvvfnJI/AAAAAAAAB70/KeFPOn9pBkM/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 145px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/SifyJvvfnJI/AAAAAAAAB70/KeFPOn9pBkM/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343505732146797714" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SifxOZ5OR8I/AAAAAAAAB7k/qkmcAsPoHDU/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 179px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/SifxOZ5OR8I/AAAAAAAAB7k/qkmcAsPoHDU/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343504712669743042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; ora-6508　が発生するケースあり。( C_CASH_POST )&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sif4Us0CmwI/AAAAAAAAB78/X7FSVCgU2bw/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 241px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sif4Us0CmwI/AAAAAAAAB78/X7FSVCgU2bw/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343512517408889602" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sifir0NIOMI/AAAAAAAAB7c/e9v1g6XUgj4/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 161px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sifir0NIOMI/AAAAAAAAB7c/e9v1g6XUgj4/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343488725274343618" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1302974219697643809?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1302974219697643809/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/pay-purchase-invoice.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1302974219697643809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1302974219697643809'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/pay-purchase-invoice.html' title='Pay the Purchase Invoice'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/Sifx1Oo-CfI/AAAAAAAAB7s/ib7i1xGndaE/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4916380322446098102</id><published>2009-05-29T21:46:00.007+09:00</published><updated>2009-05-31T19:33:54.143+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>Accounting Purchase Invoice 仕入仕訳</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4. Accounting Purchase Invoice&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Accounting the above purchase invoice&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Procurement management-&gt;Transactions-&gt;Purchase invoice&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Being in edit mode click "Not Posted" and click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify the created journal is correct&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Georgia;font-size:130%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 16px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Georgia;font-size:130%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/SiJculS4H1I/AAAAAAAAB7M/hozuS-8Wg14/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/SiJculS4H1I/AAAAAAAAB7M/hozuS-8Wg14/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341934063369854802" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 181px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; If you cannot see the button "Not Posted" please go to General setup-&gt;Application-&gt;Session Preferences. Mark "Show accounting tabs" and then click "Save preferences". Doing this you will be able to enter in the book&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SiJbf-PGK1I/AAAAAAAAB7E/EgsMciTe3aA/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 249px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/SiJbf-PGK1I/AAAAAAAAB7E/EgsMciTe3aA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341932712855219026" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4916380322446098102?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4916380322446098102/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/accounting-purchase-invoice.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4916380322446098102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4916380322446098102'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/accounting-purchase-invoice.html' title='Accounting Purchase Invoice 仕入仕訳'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/SiJculS4H1I/AAAAAAAAB7M/hozuS-8Wg14/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3288279589213497625</id><published>2009-05-29T21:21:00.009+09:00</published><updated>2009-05-31T19:20:56.518+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>Create Purchase Invoice 仕入れ明細請求</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Testing the button 'Create lines from' and the way of creating purchase invoices&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Procurement management-&gt;Transactions-&gt;Purchase invoice&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and select Transaction Document= &lt;b&gt;&lt;span class="Apple-style-span"  style="color:#FF0000;"&gt;AP Invoice[買掛]&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the business partner using two possibilities:&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;A.- Click on the bp icon and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;When you click the bp icon a pop-up window must show up and the radio button 'provider' must be checked. Please select VENDOR A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;B.- Or write in the bp box VA and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;A pop-up window doesn't show up and the bp box is filled with the name VENDOR A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For both cases verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Invoice from: "Pamplona, Street Purchase center nº1"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The combo box &lt;b&gt;User/Contact&lt;/b&gt; must have the value: John&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price list: &lt;b&gt;&lt;span class="Apple-style-span"  style="color:#FF0000;"&gt;PURCHASE&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Form of payment: Wire Transfer&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Payment terms: 90 days&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on button 'Create lines from' and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Business partner: VENDOR A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;In the "Order" combo box there is the purchase order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;In the "Shipment" combo box there is the good receipt&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the good receipt and click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Lines and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Product: A Raw material&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Taxes: VAT 10%&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The box "Purchase Order Line" is filled properly&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The box "Shipment/Receipt Line" is filled properly&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go back to Header and click Complete&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Payments and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Due Date 90 days after the invoice date&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Form of Payment: Wire transfer&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh_WFuKEPdI/AAAAAAAAB6s/icatq7uOXYc/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 176px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh_WFuKEPdI/AAAAAAAAB6s/icatq7uOXYc/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341223076862639570" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ORA-6508 で完了できず。　データの問題か？&lt;br /&gt;&lt;span class="Apple-style-span"   style="  -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family:Verdana;font-size:13px;"&gt;0005111: Oracle error after completing a purchase invoice&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="https://issues.openbravo.com/view.php?id=5111"&gt;https://issues.openbravo.com/view.php?id=5111&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sh_XFggratI/AAAAAAAAB60/Xh6t4FuYm18/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 386px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sh_XFggratI/AAAAAAAAB60/Xh6t4FuYm18/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341224172711013074" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="https://code.openbravo.com/erp/devel/pi/log/ec9676d0f32c/src-db/database/model/functions/C_INVOICE_POST.xml"&gt;C_INVOICE_POST.xml の改訂履歴&lt;/a&gt;　を確認した範囲でもこの不具合は報告されていない。&lt;/div&gt;&lt;div&gt;&lt;a href="http://iis.museum-in-cloud.com/joomla/index.php?option=com_content&amp;amp;view=article&amp;amp;id=122:audit-database&amp;amp;catid=18:connect&amp;amp;Itemid=114"&gt;C_INVOICE_POST Procedure の再作成&lt;/a&gt;により動作するようになる。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/SiJT2p95lOI/AAAAAAAAB68/3bSOBTcsd5U/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 368px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/SiJT2p95lOI/AAAAAAAAB68/3bSOBTcsd5U/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341924306458350818" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3288279589213497625?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3288279589213497625/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-purchase-invoice.html#comment-form' title='1 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3288279589213497625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3288279589213497625'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-purchase-invoice.html' title='Create Purchase Invoice 仕入れ明細請求'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/Sh_WFuKEPdI/AAAAAAAAB6s/icatq7uOXYc/s72-c/1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5207600537524429581</id><published>2009-05-29T21:09:00.004+09:00</published><updated>2009-05-29T21:40:08.168+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>Create Goods receipt 入庫処理</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create Goods receipt&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Testing the button 'Create lines from' and the way of creating goods receipt&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Procurement management-&gt;Transactions-&gt;Goods receipt&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click new and select VENDOR A as a business partner. Save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on button 'Create lines from' and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Business partner: VENDOR A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;In the "Order" combo box there is the purchase order&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the purchase order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select a warehouse position&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the purchase order line&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Lines&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on Attribute set value icon and fill the values and click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go back to header and Complete&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_SkSTrS6I/AAAAAAAAB6k/NvcR8GUbtQQ/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 319px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_SkSTrS6I/AAAAAAAAB6k/NvcR8GUbtQQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341219203916188578" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5207600537524429581?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5207600537524429581/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-goods-receipt.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5207600537524429581'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5207600537524429581'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-goods-receipt.html' title='Create Goods receipt 入庫処理'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_SkSTrS6I/AAAAAAAAB6k/NvcR8GUbtQQ/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3166412062916354751</id><published>2009-05-29T20:29:00.008+09:00</published><updated>2009-05-29T21:07:40.133+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>Create a purchase order</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create a purchase order&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create an order to be used when creates a good receipt&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Procurement management-&gt;Transactions-&gt;Purchase Order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and two possibilities:&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;A.- Click on the bp icon and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;When you click the bp icon a pop-up window must show up and the radio button 'provider' must be checked. Please select VENDOR A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;B.- Or write in the bp box VA and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;A pop-up window doesn't show up and the bp box is filled with the name VENDOR A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For both cases verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Invoice from: "Pamplona, Street Purchase center nº1"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The combo box &lt;b&gt;User/Contact&lt;/b&gt; must have the value: John&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price list: PURCHASE&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Form of payment: Wire Transfer&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Payment terms: 90 days&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_JH7Gl9gI/AAAAAAAAB6M/WHrdeOW5Coo/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 390px; height: 400px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_JH7Gl9gI/AAAAAAAAB6M/WHrdeOW5Coo/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341208821046310402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;blockquote&gt;Vendor が設定されていないと Business Partner に表示されない。&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh_KH-lv2eI/AAAAAAAAB6U/EOUKtWqowW8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 251px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh_KH-lv2eI/AAAAAAAAB6U/EOUKtWqowW8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341209921493916130" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;Product を選択する際の Price List は "Pruchase -EUR" を選択しないと　A Raw material が表示されない。&lt;/div&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh_MRPMDSeI/AAAAAAAAB6c/SWPciaT5B3M/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 328px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh_MRPMDSeI/AAAAAAAAB6c/SWPciaT5B3M/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341212279591619042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Move to tab Lines and click New. There are two possibilities:&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;A.- Click on the product icon and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;When you click the product icon a pop-up window must show up.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The price list combo must be filled with the value Purchase&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;When click Search only 3 products must appear: A Raw material, B Raw material, C Raw material. Select A Raw material&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;B.- Or write in the product box RMA and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;A pop-up window doesn't show up and the product box is filled with the name Raw material&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For both cases verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;UOM:Unit&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Unit price:2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;List price:2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Tax:VAT 10%&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill in Ordered quantity= 1&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to header and complete. Verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Summed Line Amount= 2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Grand Total Amount= 2.2&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;Complete しても　&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;Grand Total Amount= 2　となり 2.2 とはならず。&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3166412062916354751?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3166412062916354751/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-purchase-order.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3166412062916354751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3166412062916354751'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-purchase-order.html' title='Create a purchase order'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sh_JH7Gl9gI/AAAAAAAAB6M/WHrdeOW5Coo/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5949342154070351652</id><published>2009-05-29T19:24:00.000+09:00</published><updated>2009-05-29T19:25:39.816+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Procurement Management'/><title type='text'>2.5 Procurement management</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS'; font-size: 13px; "&gt;&lt;a href="http://openbravo-erp.blogspot.com/2009/05/25-procurement-management.html" style="text-decoration: none; color: rgb(0, 0, 255); "&gt;2.5 Procurement management&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5949342154070351652?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5949342154070351652/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/25-procurement-management_29.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5949342154070351652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5949342154070351652'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/25-procurement-management_29.html' title='2.5 Procurement management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-8800191474944291564</id><published>2009-05-29T19:06:00.004+09:00</published><updated>2009-05-29T19:22:04.029+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration Financial data'/><title type='text'>Create Bank</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create Bank&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create a bank and related to a business partner. The goal of relating a business partner with the bank is to be able to use the remittance window&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Receivables &amp;amp; Payables-&gt;Setup-&gt;Bank&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill the mandatory fields:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name: SampleBank&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Bank code: 1234&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Branch code: 0001&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Control Digit: 0&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Address:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;1st Line:Sample Street&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Postal Code:31010&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;City:Pamplona&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Region:Navarra&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Country:Spain&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Account and fill the mandatory fields:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Partial Account No.:1111111111&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Control Digit:0&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark "Show Spanish"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sh-09T-82UI/AAAAAAAAB6E/jcUbGmCd97E/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 222px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sh-09T-82UI/AAAAAAAAB6E/jcUbGmCd97E/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341186648514025794" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; "&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data-&gt;Business partner&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Search Key:BANK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Name:Bank&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go back to Bank click on Bpartner icon and, after marking the option "All", select the business partner&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-8800191474944291564?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/8800191474944291564/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-bank.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8800191474944291564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8800191474944291564'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-bank.html' title='Create Bank'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sh-09T-82UI/AAAAAAAAB6E/jcUbGmCd97E/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7281242393609855343</id><published>2009-05-29T17:39:00.003+09:00</published><updated>2009-05-29T17:40:50.381+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration Financial data'/><title type='text'>Create remittance type</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create remittance type&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create a remittance to test other features&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Receivables &amp;amp; Payables-&gt;Setup-&gt;Remittance type&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name:'Remittance 19'&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark Consolidate&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Payment Rule Consolidated:Bank Remittance&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Final Status:In Remittance&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Returned Status: Returned&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Parameter tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill Name=Contract, content=001 and save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill Name=Cuaderno, content=19 and save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Aditional data:&lt;/b&gt;Please write the names as it is explained. Both, Contract and Cuaderno, are parameters that OB uses&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-fa6zc4fI/AAAAAAAAB58/uF18J2_jy1A/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 136px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-fa6zc4fI/AAAAAAAAB58/uF18J2_jy1A/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341162967895171570" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7281242393609855343?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7281242393609855343/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-remittance-type.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7281242393609855343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7281242393609855343'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-remittance-type.html' title='Create remittance type'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-fa6zc4fI/AAAAAAAAB58/uF18J2_jy1A/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7118742544273678386</id><published>2009-05-29T17:35:00.001+09:00</published><updated>2009-05-29T17:35:53.163+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration Financial data'/><title type='text'>2.4 Administration financial data</title><content type='html'>2.4 Administration financial data&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7118742544273678386?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7118742544273678386/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/24-administration-financial-data_29.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7118742544273678386'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7118742544273678386'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/24-administration-financial-data_29.html' title='2.4 Administration financial data'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-883136463960857786</id><published>2009-05-29T17:32:00.001+09:00</published><updated>2009-05-29T17:33:51.536+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration accounting data'/><title type='text'>Update Business partner to add a business partner tax category</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4. Update Business partner to add a business partner tax category &lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create business partner tax category to test taxes in transactional documents. Add the new category to Customer A&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data management-&gt;Business partner&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select "CUSTOMER A" and, inside Customer tab, select "SO BP Tax Category"=Vat 3%+Charge 0.5%&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-dzX3B8oI/AAAAAAAAB50/zWsOEkMYxEE/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-883136463960857786?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/883136463960857786/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/update-business-partner-to-add-business.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/883136463960857786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/883136463960857786'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/update-business-partner-to-add-business.html' title='Update Business partner to add a business partner tax category'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1998797503370704731</id><published>2009-05-29T17:25:00.002+09:00</published><updated>2009-05-29T17:26:11.947+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration accounting data'/><title type='text'>Create G/L Item</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3. Create G/L Item&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create a GL/Item to test other features&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Accounting-&gt;Setup-&gt;G/L Item&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill name=G/L Item A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Accounting tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Create a new record&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select an expense account (i.e 649 using ESAccounts) for both debit and credit&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;If the account combination does not exist first find the account then select the organization and press Save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-cCU9OnxI/AAAAAAAAB5s/y5p6ehCGibo/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 204px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-cCU9OnxI/AAAAAAAAB5s/y5p6ehCGibo/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341159246883888914" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1998797503370704731?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1998797503370704731/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-gl-item.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1998797503370704731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1998797503370704731'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-gl-item.html' title='Create G/L Item'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sh-cCU9OnxI/AAAAAAAAB5s/y5p6ehCGibo/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6787087945170383375</id><published>2009-05-29T17:17:00.003+09:00</published><updated>2009-05-29T17:19:21.889+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration accounting data'/><title type='text'>Editing Document sequence</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Editing Document sequence&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Edit the document sequences for AR Invoice&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Accounting-&gt;Setup-&gt;Document type&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select "AR Invoice" record in edit mode&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click link Document Sequence&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill Prefix=I/ ,Next Assigned Number=1&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-aJt_kWsI/AAAAAAAAB5k/4I1Qnv0gERo/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 216px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-aJt_kWsI/AAAAAAAAB5k/4I1Qnv0gERo/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341157174840416962" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6787087945170383375?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6787087945170383375/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/editing-document-sequence.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6787087945170383375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6787087945170383375'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/editing-document-sequence.html' title='Editing Document sequence'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-aJt_kWsI/AAAAAAAAB5k/4I1Qnv0gERo/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7804174064731761629</id><published>2009-05-29T17:05:00.002+09:00</published><updated>2009-05-29T17:08:39.069+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration accounting data'/><title type='text'>Create fiscal calendar</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create fiscal calendar&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;会計期間を開く&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create periods and open document for each period&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Financial management-&gt;Accounting-&gt;Setup-&gt;Fiscal calendar-&gt;Year&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click button create periods&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to each period and click button Open/Close All&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt; For any period move to Period control tab and verify the documents are open&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-XgCZCGTI/AAAAAAAAB5c/Wwod7cEgKzM/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 341px; height: 400px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-XgCZCGTI/AAAAAAAAB5c/Wwod7cEgKzM/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5341154259738171698" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7804174064731761629?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7804174064731761629/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-fiscal-calendar.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7804174064731761629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7804174064731761629'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-fiscal-calendar.html' title='Create fiscal calendar'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/Sh-XgCZCGTI/AAAAAAAAB5c/Wwod7cEgKzM/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-478208151670319218</id><published>2009-05-26T20:28:00.005+09:00</published><updated>2009-05-31T15:57:49.369+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install v2.50'/><title type='text'>import.sample.data ( V2.50MP1)</title><content type='html'>&lt;div&gt;３月２日のファイルでも以下のエラーとなる&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="https://code.openbravo.com/erp/devel/pi/log/cbbf45c0800c/referencedata/sampledata/Accounting_Test.xml"&gt;https://code.openbravo.com/erp/devel/pi/log/cbbf45c0800c/referencedata/sampledata/Accounting_Test.xml&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;a href="https://code.openbravo.com/erp/devel/pi/file/cbbf45c0800c/referencedata/sampledata/SmallBazaar.xml"&gt;https://code.openbravo.com/erp/devel/pi/file/cbbf45c0800c/referencedata/sampledata/SmallBazaar.xml&lt;/a&gt;&lt;div&gt;&lt;a href="https://code.openbravo.com/erp/devel/pi/log/cbbf45c0800c/referencedata/sampledata/SmallBazaar.xml"&gt;https://code.openbravo.com/erp/devel/pi/log/cbbf45c0800c/referencedata/sampledata/SmallBazaar.xml&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;import.sample.data:&lt;/div&gt;&lt;div&gt;     [echo] Importing sample reference data&lt;/div&gt;&lt;div&gt;[importsampledata] 2    [main] ERROR org.openbravo.base.util.CheckException  - Property shipmentReceiptLine does not exi&lt;/div&gt;&lt;div&gt;st for entity MaterialMgmtMaterialTransaction&lt;/div&gt;&lt;div&gt;[importsampledata] org.openbravo.base.util.CheckException: Property shipmentReceiptLine does not exist for entity Materi&lt;/div&gt;&lt;div&gt;alMgmtMaterialTransaction&lt;/div&gt;&lt;div&gt;[importsampledata]      at org.openbravo.base.util.Check.isNotNull(Check.java:72)&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-478208151670319218?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/478208151670319218/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/importsampledata.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/478208151670319218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/478208151670319218'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/importsampledata.html' title='import.sample.data ( V2.50MP1)'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-8356170164896428070</id><published>2009-05-26T16:43:00.005+09:00</published><updated>2009-05-26T16:49:15.437+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>2.50 tar ball</title><content type='html'>2.50 の tar ball をダウンロードして ant install.source すると&lt;br /&gt;Database が Oracle でも PostgreSQL でも接続エラーとなる。&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;compile:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] Compiling 68 source files to C:\Openbravo\OpenbravoERP-2.50MP1\src-core\build\classes&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] C:\Openbravo\OpenbravoERP-2.50MP1\src-core\src\org\openbravo\database\ConnectionPool.java:83: シンボルを見つけられません。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] シンボル: クラス OpenbravoDriverManagerConnectionFactory&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] 場所    : org.openbravo.database.ConnectionPool の クラス&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac]     ConnectionFactory connectionFactory = new OpenbravoDriverManagerConnectionFactory(_server,&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac]                                               ^&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] C:\Openbravo\OpenbravoERP-2.50MP1\src-core\src\org\openbravo\database\ConnectionProviderImpl.java:150: シンボルを見つけられません。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] シンボル: クラス OpenbravoDriverManagerConnectionFactory&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac] 場所    : org.openbravo.database.ConnectionProviderImpl の クラス&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span"  style="font-size:x-small;"&gt;    [javac]     ConnectionFactory connectionFactory = new OpenbravoDriverManagerConnectionFactory(dbServer,&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Virtual Machine Appliance の /opt/AppsOpenbravo 以下のソースを&lt;br /&gt;もってきて ant すると、エラーとはならない様子。&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-8356170164896428070?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/8356170164896428070/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/250-tar-ball.html#comment-form' title='1 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8356170164896428070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8356170164896428070'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/250-tar-ball.html' title='2.50 tar ball'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-471410426924063237</id><published>2009-05-26T16:15:00.003+09:00</published><updated>2009-05-26T16:19:07.297+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>sample data</title><content type='html'>&lt;div&gt;2.50MP1 環境でも sample data のインストールは失敗する。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; "&gt;0007899: Build Failed in ant target import.sample.data&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="https://issues.openbravo.com/view.php?id=7899"&gt;https://issues.openbravo.com/view.php?id=7899&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;# cd /opt/AppsOpenbravo&lt;/div&gt;&lt;div&gt;# &lt;span class="Apple-style-span" style="font-weight: bold;"&gt;ant install.source&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;clean.src.gen:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;generate.entities:&lt;/div&gt;&lt;div&gt; [workflow] Adding param: /opt/AppsOpenbravo/src/org/openbravo/base/gen/gen_entity.oaw&lt;/div&gt;&lt;div&gt; [workflow] Adding param: -pob.properties.location=/opt/AppsOpenbravo/config/Openbravo.properties&lt;/div&gt;&lt;div&gt; [workflow] Adding param: -pbase.src.gen=/opt/AppsOpenbravo/src-gen&lt;/div&gt;&lt;div&gt; [workflow] Adding param: --ant&lt;/div&gt;&lt;div&gt;    [javac] Compiling 441 source files to /opt/AppsOpenbravo/build/classes&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;import.sample.data:&lt;/div&gt;&lt;div&gt;     [echo] Importing sample reference data&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;BUILD FAILED&lt;/div&gt;&lt;div&gt;/opt/AppsOpenbravo/build.xml:494: The following error occurred while executing this line:&lt;/div&gt;&lt;div&gt;/opt/AppsOpenbravo/build.xml:398: The following error occurred while executing this line:&lt;/div&gt;&lt;div&gt;/opt/AppsOpenbravo/src/build.xml:180: org.openbravo.base.exception.OBException: No import files present in the import directory: /opt/AppsOpenbravo/referencedata/sampledata&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Total time: 27 minutes 3 seconds&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-471410426924063237?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/471410426924063237/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/sample-data.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/471410426924063237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/471410426924063237'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/sample-data.html' title='sample data'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-148076451283319078</id><published>2009-05-25T21:45:00.006+09:00</published><updated>2009-05-26T11:49:03.429+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Openbravo ERP: 2.50MP1 available</title><content type='html'>Openbravo ERP: 2.50MP1 available&lt;br /&gt;http://forge.openbravo.com/plugins/espnews/browse.php?group_id=100&amp;amp;news_id=112&lt;br /&gt;&lt;br /&gt;- ダウンロードした ファイルを Module Management より実行する。&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShqTHzPqxzI/AAAAAAAAB5M/smTFsWStwK8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 319px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShqTHzPqxzI/AAAAAAAAB5M/smTFsWStwK8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5339742070425438002" /&gt;&lt;/a&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:7;color:#FF9A00;"&gt;&lt;span class="Apple-style-span" style="font-size: 48px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span"    style="font-family:Georgia;font-size:130%;color:#000000;"&gt;&lt;span class="Apple-style-span" style="font-size: 16px; font-weight: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:7;color:#FF9A00;"&gt;&lt;span class="Apple-style-span"  style="font-size:48px;"&gt;&lt;b&gt;注意:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:7;color:#FF9A00;"&gt;&lt;span class="Apple-style-span"  style="font-size:48px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color: rgb(102, 102, 102);  font-weight: normal; font-size:13px;"&gt; bug in the 2.50 appliance delete the /opt/AppsOpenbravo/README file before launching the upgrade.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#666666;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#666666;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;  &lt;b&gt;&lt;span class="Apple-style-span"  style="color:#FF6666;"&gt; /opt/AppsOpenbravo/README ファイルを手動で削除してからパッチを適用すること&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShqsEhqNWUI/AAAAAAAAB5U/u1Q3hiICB-w/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 354px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShqsEhqNWUI/AAAAAAAAB5U/u1Q3hiICB-w/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5339769501956004162" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;一部適用でエラー&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;update.database:&lt;br /&gt;Database connection: jdbc:postgresql://localhost:5432/openbravo. User: tad&lt;br /&gt;Database has local changes. Update.database will not be done. If you want to force the update.database, do: ant update.database -Dforce=yes (you will lose all your changes in the application dictionary if you do it)&lt;br /&gt;The following error occurred while executing this line:&lt;br /&gt;/opt/AppsOpenbravo/src-db/database/build.xml:126: Database has local changes. Update.database not done.&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;手動にて強制実行&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;[root@localhost AppsOpenbravo]# pwd&lt;/div&gt;&lt;div&gt;/opt/AppsOpenbravo&lt;/div&gt;&lt;div&gt;[root@localhost AppsOpenbravo]# ant update.database -Dforce=yes&lt;/div&gt;&lt;div&gt;...&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;BUILD SUCCESSFUL&lt;/div&gt;&lt;div&gt;Total time: 7 minutes 13 seconds&lt;/div&gt;&lt;div&gt;[root@localhost AppsOpenbravo]# pwd&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-148076451283319078?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/148076451283319078/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/openbravo-erp-250mp1-available.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/148076451283319078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/148076451283319078'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/openbravo-erp-250mp1-available.html' title='Openbravo ERP: 2.50MP1 available'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShqTHzPqxzI/AAAAAAAAB5M/smTFsWStwK8/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-2771498815246231494</id><published>2009-05-25T19:47:00.005+09:00</published><updated>2009-05-25T20:02:01.972+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='error'/><title type='text'>Product Import / Error</title><content type='html'>2.50 では Procuct の Import を実行する前に default tax code の設定が必要。&lt;br /&gt;エラーが表示される。　default tax code 設定後、　再度 Import を実行すると&lt;br /&gt;ハングアップする。&lt;br /&gt;&lt;br /&gt;強制的に&lt;br /&gt;&lt;blockquote&gt;# &lt;b&gt;&lt;span class="Apple-style-span"  style="color:#000099;"&gt;service postgresql restart&lt;/span&gt;&lt;/b&gt; 　した後は必ず&lt;br /&gt;# &lt;b&gt;&lt;span class="Apple-style-span"  style="color:#000099;"&gt;s&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#000099;"&gt;ervice tomcat restart&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#000099;"&gt; 　　　&lt;/span&gt;&lt;/b&gt;が必要&lt;/blockquote&gt;PostgreSQL だけ再起動し、 Tomcat を再起動しない場合、以下のようなエラーとなる。&lt;pre&gt;&lt;blockquote&gt;&lt;b&gt;HTTP Status 500&lt;/b&gt; -&lt;br /&gt;type Exception report&lt;br /&gt;message&lt;br /&gt;description The server encountered an internal error () that prevented it from fulfilling this request.&lt;br /&gt;exception&lt;br /&gt;&lt;b&gt;org.hibernate.TransactionException: JDBC rollback failed&lt;/b&gt;&lt;br /&gt;org.hibernate.transaction.JDBCTransaction.rollback(JDBCTransaction.java:170)&lt;br /&gt;org.openbravo.dal.core.SessionHandler.rollback(SessionHandler.java:226)&lt;br /&gt;org.openbravo.dal.core.DalThreadHandler.doFinal(DalThreadHandler.java:48)&lt;br /&gt;org.openbravo.dal.core.ThreadHandler.run(ThreadHandler.java:70)&lt;br /&gt;org.openbravo.dal.core.DalRequestFilter.doFilter(DalRequestFilter.java:85)&lt;br /&gt;root cause&lt;br /&gt;org.postgresql.util.PSQLException: An I/O error occured while sending to the backend.&lt;br /&gt;Exception: java.net.SocketException: Broken pipe&lt;br /&gt;Stack Trace:&lt;br /&gt;java.net.SocketException: Broken pipe&lt;br /&gt;at java.net.SocketOutputStream.socketWrite0(Native Method)&lt;br /&gt;at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)&lt;/blockquote&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-2771498815246231494?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/2771498815246231494/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/product-import-error.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2771498815246231494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2771498815246231494'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/product-import-error.html' title='Product Import / Error'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5336840693537738418</id><published>2009-05-25T15:32:00.001+09:00</published><updated>2009-05-25T15:37:24.871+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Ver.2.50 Virtual Machine Appliance</title><content type='html'>&lt;div&gt;Virtual Machine Appliance &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;SVN から取得した最新バージョン 2.50 で　&lt;/div&gt;&lt;div&gt; http://localhost:8088/openbravo/ &lt;/div&gt;&lt;div&gt;にてアクセス可能となったので　Acceptance Test をこの環境で実行。&lt;/div&gt;&lt;div&gt;最初の  client (このERPソフトを使う会社名のこと）の登録で&lt;/div&gt;&lt;div&gt; Currency(通貨）を設定する必要があるのだが、この List of Values に値が表示されない。　 &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;c_currency テーブルに値が insert されていない。 Seed Data 未登録。 &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;コマンドラインから ant で　creata database する方法はわかったが ...&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote color="initial" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border- border-style: none; padding: 0px"&gt;C:\pleiades\workspace\openbravo&amp;gt;ant create.database -Dapply.on.create=true &lt;/blockquote&gt;&lt;blockquote color="initial" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border- border-style: none; padding: 0px"&gt;にてまず、　dopr user xxx cascade; 　してから、再作成を開始する。&lt;br /&gt;ただ、 Tomcat が起動したままだと　”接続中のユーザーは削除できません”ので注意。 &lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote color="initial" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border- border-style: none; padding: 0px"&gt;sampledata や　reference data の登録の部分は動作しないようなので、 2.40 の環境から&lt;br /&gt;c_currency テーブルの内容を exp して　imp table=c_currency ignore=y することで&lt;br /&gt;currency は表示されるようにはなったが、&lt;a href="http://openbravo-erp.blogspot.com/2009/05/initial-client-setup.html"&gt; client の登録で失敗&lt;/a&gt;する。&lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShgPsedS6hI/AAAAAAAAB4k/v3zWrZUZ8-Q/s400/1.jpg" border="0" width="220" /&gt; &lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;新方式　&lt;a href="http://wiki.openbravo.com/wiki/ERP/2.50/Openbravo_ERP_Installation"&gt;2.50 の &lt;strong&gt;Virtual Machine Appliance&lt;/strong&gt; のインストール形式&lt;/a&gt;を利用すること。&lt;/div&gt;&lt;div&gt;これは実に簡単にインストールが完了する。&lt;/div&gt;&lt;div&gt;VMware Player がインストールされていれば、これようのファイルをダウロードして&lt;/div&gt;&lt;div&gt;解凍してえられる　ｖｍｘ　ファイルを　 VMware Player で開くと窓のなかで　OS　が&lt;/div&gt;&lt;div&gt;起動し、　プロンプトに表示される　URL にアクセスすると&lt;/div&gt;&lt;div&gt; OpenBravo の ERP ソフトを利用できるようになっている。&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/ShgaxOKW6aI/AAAAAAAAB4s/7o9f2Q2c8JM/s400/1.jpg" border="0" width="320" /&gt;&lt;/blockquote&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt; &lt;/blockquote&gt;&lt;div&gt;Port 80 で起動しているのでこれまでだめだった&lt;a href="http://openbravo-erp.blogspot.com/2009/05/hearbeat-configuration.html"&gt; Heartbeat テスト&lt;/a&gt;もクリア。&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;&lt;img src="http://4.bp.blogspot.com/_GRrE56uLdI8/Shgc9S_kTcI/AAAAAAAAB40/gwAP8N1Uxcs/s400/1.jpg" border="0" width="320" /&gt;&lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Tera Term などで　Virtual Machine (192.168.1.2:22 でユーザー &lt;span class="Apple-style-span"  style="color:#0000FF;"&gt;openbravo&lt;/span&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;) に&lt;/span&gt; Loginできる。&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote style="font-family: 'Courier New', Courier, mono; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-style: none; padding: 0px"&gt;# su - postgres&lt;br /&gt;$ psql -l&lt;br /&gt;   List of databases&lt;br /&gt;Name    |  Owner   | Encoding&lt;br /&gt;----------+----------+----------&lt;br /&gt;openbravo | tad      | UTF8&lt;br /&gt;postgres  | postgres | UTF8&lt;br /&gt;template0 | postgres | UTF8&lt;br /&gt;template1 | postgres | UTF8&lt;br /&gt;(4 rows)&lt;br /&gt;&lt;br /&gt;\i xxx.sql&lt;br /&gt;\q&lt;br /&gt;&lt;br /&gt;$ psql openbravo -f xxx.sql&lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;ファイル名を指定して PostgresSQL で　SQLを実行するため、ファイル共有に&lt;/div&gt;&lt;div&gt;VMware Player のフォルダ共有機能を利用しようとしたが、 Windows 2008 Server の&lt;/div&gt;&lt;div&gt;共有機能とのからみか、なかなかうまくいかず、また時間を費やしてしまった。&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;/usr/bin/vmware-config-tools.pl &lt;/blockquote&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;&lt;img src="http://iis.museum-in-cloud.com/joomla/images/stories/vmware_tool.jpg" border="0" width="180" /&gt; &lt;/blockquote&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt; &lt;/blockquote&gt;&lt;blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"&gt;にてVMware Player の表示画面のサイズを変更して大きくする方法がわかったことは成果としてある。&lt;br /&gt;&lt;span class="Apple-style-span"  style="color:#FF00FF;"&gt;設定変更の反映には再起動が必要&lt;/span&gt;。&lt;br /&gt;ただし、今回の Virtual Machine では X11R6 は含まれないため、画面表示のサイズ変更にはメリットはなし。 &lt;/blockquote&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;　$ sftp  ユーザー名@ホスト名　&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;にて Linux 側の設定なしでファイル転送は可能であったので、&lt;/div&gt;&lt;div&gt;&lt;a href="http://cygwin.com/"&gt;cygwin&lt;/a&gt; に　Net - OpenSSH と OpenSSL　をいれて、 sftp を使用することに。&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;FileZilla では sftp://192.168.1.2@openbravo &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5336840693537738418?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5336840693537738418/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/250-virtual-machine-appliance.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5336840693537738418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5336840693537738418'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/250-virtual-machine-appliance.html' title='Ver.2.50 Virtual Machine Appliance'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShgPsedS6hI/AAAAAAAAB4k/v3zWrZUZ8-Q/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1851974293335952777</id><published>2009-05-20T11:41:00.001+09:00</published><updated>2009-05-20T11:41:30.680+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>2.10 Assets: Create Amortization Plan</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Assets:_Create_Amortization_Plan" style="color: rgb(72, 156, 6); "&gt;2.10&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Assets:_Create_Amortization_Plan" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Assets:_Create_Amortization_Plan" style="color: rgb(72, 156, 6); "&gt;Assets: Create Amortization Plan&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;Skip&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1851974293335952777?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1851974293335952777/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/210-assets-create-amortization-plan.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1851974293335952777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1851974293335952777'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/210-assets-create-amortization-plan.html' title='2.10 Assets: Create Amortization Plan'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1930354314947630414</id><published>2009-05-20T11:40:00.001+09:00</published><updated>2009-05-20T11:40:47.574+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>2.9 Accounting processes</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Accounting_processes" style="color: rgb(72, 156, 6); "&gt;2.9&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Accounting_processes" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Accounting_processes" style="color: rgb(72, 156, 6); "&gt;Accounting processes&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;Skip&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1930354314947630414?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1930354314947630414/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/29-accounting-processes.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1930354314947630414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1930354314947630414'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/29-accounting-processes.html' title='2.9 Accounting processes'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5560495861913520588</id><published>2009-05-20T11:39:00.000+09:00</published><updated>2009-05-20T11:40:12.913+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>2.8 Project and Service management</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Project_and_Service_management" style="color: rgb(72, 156, 6); "&gt;2.8&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Project_and_Service_management" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Project_and_Service_management" style="color: rgb(72, 156, 6); "&gt;Project and Service management&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;Skip&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5560495861913520588?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5560495861913520588/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/28-project-and-service-management.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5560495861913520588'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5560495861913520588'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/28-project-and-service-management.html' title='2.8 Project and Service management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1332575367900680786</id><published>2009-05-20T11:24:00.005+09:00</published><updated>2009-05-20T11:38:49.314+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create Work effort</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;7. Create Work effort&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Test the way of creating a work effort&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Production management-&gt;Transactions-&gt;Work Effort&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Movement date= Current date&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Starting Time: 08:00:00, Ending time: 16:00:00&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Production Run tab and click new&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the "WR Phase" and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;The fields "Required quantity", "Process unit" and "Conversion Rate" are filled based on the WR phase&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill Done quantity=2 and save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShNr0CAes7I/AAAAAAAAB20/LMfOJdBWvGA/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 297px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShNr0CAes7I/AAAAAAAAB20/LMfOJdBWvGA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337728525000422322" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Click on button "Create Standards"&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;The field "Cost centre used" is calculated well depending on you what configure on the Cost Centre. For this case should be 8&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Product tab and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;You have three lines: A BOM:(P-), B BOM(P-), A Final Goods(P+)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The ones for P- must have filled the attribute set value&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The quantity for the three must be 200 as a result of "Done quantity" x "Quantity" (I/O Products tab)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For the A Final Goods product fill the attribute set value&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move back to Work effort tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on button "Validate Work effort"&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;設定ミスのためエラー&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/ShNtD9cKPZI/AAAAAAAAB28/QiMEsipn7po/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 213px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/ShNtD9cKPZI/AAAAAAAAB28/QiMEsipn7po/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337729898163879314" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1332575367900680786?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1332575367900680786/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-work-effort.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1332575367900680786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1332575367900680786'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-work-effort.html' title='Create Work effort'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/ShNr0CAes7I/AAAAAAAAB20/LMfOJdBWvGA/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6008663154775111448</id><published>2009-05-20T11:12:00.004+09:00</published><updated>2009-05-20T11:23:37.781+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create Work requirement</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;6. Create Work requirement&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create a work requirement to use in the Work effort window&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Production management-&gt;Transactions-&gt;Work requirement-&gt;Header&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Select Production Final goods A as process plan&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Quantity=10&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Starting Date= The current day&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Ending Date= The following date&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save and click on button "Process Work Requirement"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Operation tab and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;The quantity field has the same value as in Header tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The fields "Cost Center Use Time", "Empty Cells are Zero", "Outsourced" and "Global Use" have the same value as in Operation tab (Process plan window)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Product tab and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;We have three lines: A BOM(P-), B BOM(P-) and A final goods(P+)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Each line quantity=100&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move back to Operation tab and click New again&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the sequence "Assamble" and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;The quantity field has the same value as in Header tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The fields "Cost Center Use Time", "Empty Cells are Zero", "Outsourced" and "Global Use" have the same value as in Operation tab (Process plan window)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Don´t save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;The field Quantity on Header tab indicates the number of times that we want to process the process plan&lt;/p&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNoW8epVGI/AAAAAAAAB2k/XE4-zdhJv4o/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 118px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNoW8epVGI/AAAAAAAAB2k/XE4-zdhJv4o/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337724726765245538" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNoxlM2l0I/AAAAAAAAB2s/Shj3xPvcZXE/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 98px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNoxlM2l0I/AAAAAAAAB2s/Shj3xPvcZXE/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337725184373069634" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6008663154775111448?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6008663154775111448/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-work-requirement.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6008663154775111448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6008663154775111448'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-work-requirement.html' title='Create Work requirement'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShNoW8epVGI/AAAAAAAAB2k/XE4-zdhJv4o/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7001621905360102175</id><published>2009-05-20T10:33:00.006+09:00</published><updated>2009-05-20T14:31:08.729+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create a process plan</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5. Create a process plan&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create a process plan to use in Work Requirement&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Preconditions:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Products Final Goods A, A BOM and B BOM must have the production check marked.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Production management-&gt;Transactions-&gt;Process plan&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Search Key=FGA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Name=Production Final Goods A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Process unit=FGA unit&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Conversion rate=100&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;"Insert phase" marked&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Version tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill the dates for the whole year&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Operation. Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Search key=assa&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Name=Assamble&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Process=Assamble&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Cost Center Use Time=10&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to I/O Product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and select the product A Final goods as P+&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New twice and select the product A BOM and B BOM as P-&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Quantities for each three 100&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/ShNk_Lh3MNI/AAAAAAAAB2c/zsWrPxEkkYg/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 174px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/ShNk_Lh3MNI/AAAAAAAAB2c/zsWrPxEkkYg/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337721019953524946" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I/O Product の LOV に表示されない場合、Production をチェックを確認。 &lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShNjSA6GwfI/AAAAAAAAB2U/T37aC28g_AE/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 388px; height: 400px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShNjSA6GwfI/AAAAAAAAB2U/T37aC28g_AE/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337719144496677362" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Process plan tab&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Insert phases:Indicates if the work requirement phases will be generated automatically&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Operation tab&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Cost Center Use Time:Time used to do the operation once&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Empty cells are Zero:When creating a production run (Work effort window), by running the "generating standards" process required input and output product quantities are automatically filled in as specified in the work requirement phases (Work requirement window)&lt;/li&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7001621905360102175?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7001621905360102175/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-process-plan.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7001621905360102175'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7001621905360102175'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-process-plan.html' title='Create a process plan'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/ShNk_Lh3MNI/AAAAAAAAB2c/zsWrPxEkkYg/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3091063940270926469</id><published>2009-05-20T10:30:00.003+09:00</published><updated>2009-05-20T10:32:56.924+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create a Process/Activit</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4. Create a Process/Activity&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Production management-&gt;Setup-&gt;Activity&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill the mandatory fields:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name=Assamble&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the cost centre&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; A process/activity is mandatory in order to create a process plan&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNds9HREjI/AAAAAAAAB2M/5-X1GNr9bKA/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 248px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNds9HREjI/AAAAAAAAB2M/5-X1GNr9bKA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337713010264838706" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3091063940270926469?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3091063940270926469/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-processactivit.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3091063940270926469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3091063940270926469'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-processactivit.html' title='Create a Process/Activit'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShNds9HREjI/AAAAAAAAB2M/5-X1GNr9bKA/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4557480461908648542</id><published>2009-05-20T10:19:00.004+09:00</published><updated>2009-05-20T10:29:23.007+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create Cost centre</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3. Create Cost centre&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Create a cost centre to use for calculate costs based on the work effort&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Production management-&gt;Setup-&gt;Cost Center&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill the mandatory fields&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark the check "Calculated"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Not mark "By default"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/ShNceznC0tI/AAAAAAAAB2E/90j-fe3VEjY/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 165px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/ShNceznC0tI/AAAAAAAAB2E/90j-fe3VEjY/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337711667683971794" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; "&gt;Move to Version tab, click New and fill&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;"Valid from date" with the 1st of January of the current year&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Cost=100&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;And select "per Produced Units" for Cost UOM&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNcVfof5gI/AAAAAAAAB18/LD48JDN-jFs/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 221px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShNcVfof5gI/AAAAAAAAB18/LD48JDN-jFs/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337711507702539778" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; "&gt;&lt;b&gt;Additional data&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Tab Cost centre&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;If "Calculated" is marked but not "By default", when process the Work effort, OB will calculate the hours used for the sequence based on the initial time and final time&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;If "By default" is marked, OB will calculate the hours used for the sequence based on the process plan&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;If any is marked, OB will do nothing&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Tab Version&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Per hour: Based on the cost centre unit that is in the tab Operation (Window process plan)&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Per Kilogram: Based on the weight of product window. Produced units x Weight&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Per percentage: This is only for Indirect cost purposes&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Per Produced Units: Based on produced units&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4557480461908648542?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4557480461908648542/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-cost-centre.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4557480461908648542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4557480461908648542'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-cost-centre.html' title='Create Cost centre'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/ShNceznC0tI/AAAAAAAAB2E/90j-fe3VEjY/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-8412789796238641841</id><published>2009-05-19T15:43:00.011+09:00</published><updated>2009-05-23T23:21:41.274+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Installation and setup of Eclipse IDE</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SheegSDC0cI/AAAAAAAAB4c/UFtj6tpKG1c/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SheeCk3pVZI/AAAAAAAAB4U/k1aVAD1D-Ys/s1600-h/1.jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShecjCoc5OI/AAAAAAAAB4M/twh8N6IcSkc/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE"&gt;http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2.40 でが Buildの構成が以下のように設定されているが、&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShecjCoc5OI/AAAAAAAAB4M/twh8N6IcSkc/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShecjCoc5OI/AAAAAAAAB4M/twh8N6IcSkc/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5338908009086903522" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 312px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SheeCk3pVZI/AAAAAAAAB4U/k1aVAD1D-Ys/s1600-h/1.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/SheeCk3pVZI/AAAAAAAAB4U/k1aVAD1D-Ys/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5338909650365011346" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 312px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE#Compiling_and_building_Openbravo_ERP"&gt;http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE#Compiling_and_building_Openbravo_ERP&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2.50 以降では以下のファイルが自動作成されると書かれているが...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 16px; font-family:Verdana;font-size:11px;"&gt;&lt;i&gt;org.eclipse.wst.common.component&lt;/i&gt; 　&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;a href="http://wiki.openbravo.com/wiki/ERP/2.50/ReleaseNotes"&gt;http://wiki.openbravo.com/wiki/ERP/2.50/ReleaseNotes&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Mercurial_Manual_for_Openbravo_Developers"&gt;http://wiki.openbravo.com/wiki/Mercurial_Manual_for_Openbravo_Developers&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Projects/Modularity/Reference_Data"&gt;http://wiki.openbravo.com/wiki/Projects/Modularity/Reference_Data&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;a href="http://wiki.openbravo.com/wiki/ERP/2.50/ModularityVideos"&gt;http://wiki.openbravo.com/wiki/ERP/2.50/ModularityVideos&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 238); text-decoration: underline;"&gt;&lt;span class="Apple-style-span"   style="color: rgb(0, 0, 0);   -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family:Verdana;font-size:13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span&gt;&lt;span&gt;ant create.database -Dapply.on.create=true&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;c_doctype,c_uom,c_currency,ad_impformat,ad_impformat_row,c_region,c_country&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;select count(*) from c_doctype ;&lt;/div&gt;&lt;div&gt;select count(*) from c_uom;&lt;/div&gt;&lt;div&gt;select count(*) from c_currency;&lt;/div&gt;&lt;div&gt;select count(*) from  ad_impformat;&lt;/div&gt;&lt;div&gt;select count(*) from  ad_impformat_row;&lt;/div&gt;&lt;div&gt;select count(*) from  c_region;&lt;/div&gt;&lt;div&gt;select count(*) from  c_country;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-8412789796238641841?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/8412789796238641841/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/installation-and-setup-of-eclipse-ide.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8412789796238641841'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8412789796238641841'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/installation-and-setup-of-eclipse-ide.html' title='Installation and setup of Eclipse IDE'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShecjCoc5OI/AAAAAAAAB4M/twh8N6IcSkc/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3490430173214617883</id><published>2009-05-18T14:10:00.014+09:00</published><updated>2009-05-20T20:04:04.080+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Create BOM production</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create BOM production&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create a bill of materials production&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Warehouse management-&gt;Transactions-&gt;Bill of materials production&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New. Fill Name = BOM A. Save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDue7ss7lI/AAAAAAAAB0c/FLueNfXFSTQ/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 261px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDue7ss7lI/AAAAAAAAB0c/FLueNfXFSTQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337027773622709842" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Move to Production Plan and click NEW&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select Product "A BOM" and production quantity 100. Save&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDvD-w2nxI/AAAAAAAAB0k/fIV-idPqXck/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 265px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDvD-w2nxI/AAAAAAAAB0k/fIV-idPqXck/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337028410100588306" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Move back to BOM Production tab&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click on Button "Create/Post Production"&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDxNj-x7yI/AAAAAAAAB0s/zEPiZjo-nz8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 329px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDxNj-x7yI/AAAAAAAAB0s/zEPiZjo-nz8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337030773733191458" /&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;Go to I/O products and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;One line for product A BOM. Quantity = 100&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;One line for product B Raw material. Quantity = -100&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;One line for product C Raw material. Quantity = -100&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDy8oy_tjI/AAAAAAAAB00/jIBD_HD22l0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 177px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDy8oy_tjI/AAAAAAAAB00/jIBD_HD22l0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337032681991419442" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Select A BOM product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on Attribute Set Value icon and fill the attributes. Save&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShD0meWK5_I/AAAAAAAAB08/UxXW9RvWkT0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 332px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShD0meWK5_I/AAAAAAAAB08/UxXW9RvWkT0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337034500252297202" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;不具合のため &lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style=" ;font-family:'MS PGothic';"&gt;&lt;pre style="word-wrap: break-word; white-space: pre-wrap; "&gt;&lt;a href="https://code.openbravo.com/erp/devel/pi/rev/0f3e8f8bad8adb22428a6d5396c39292b2f0c071"&gt;Fixes bug 8310 Valued stock report does not work in 240&lt;/a&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;Stock Report は表示できなかったが、SVN&lt;a href="http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE"&gt; より 2.40 をダウンロードし、再Buildした後、&lt;/a&gt;&lt;a href="http://wiki.openbravo.com/wiki/Installation_and_setup_of_Eclipse_IDE"&gt;このレポートのパッチを適用&lt;/a&gt;したところ　Date 指定の際に 19-05-2009 形式で表示されていた日付も修正された。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/ShPjafecdqI/AAAAAAAAB3s/6_0zb1lCFFA/s1600-h/1.jpg"&gt;&lt;blockquote&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/ShPjafecdqI/AAAAAAAAB3s/6_0zb1lCFFA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337860027629467298" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 227px; height: 55px; " /&gt;&lt;/blockquote&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 16px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:verdana;font-size:13px;"&gt;&lt;a href="http://iis.museum-in-cloud.com/pukiwiki/index.php?Openbravo" title="Openbravo (19m)" style="color: rgb(166, 61, 33); background-color: inherit; text-decoration: none; "&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 16px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:verdana;font-size:13px;"&gt;&lt;a href="http://iis.museum-in-cloud.com/pukiwiki/index.php?Openbravo" title="Openbravo (19m)" style="color: rgb(166, 61, 33); background-color: inherit; text-decoration: none; "&gt;Openbravo&lt;/a&gt;.properties　には&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 16px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:verdana;font-size:13px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal; "&gt;&lt;span class="Apple-style-span" style="line-height: 16px; "&gt;bbdd.sessionConfig=ALTER SESSION SET NLS_DATE_FORMAT='YYYY/MM/DD' NLS_NUMERIC_CHARACTERS='.,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Windows の Registory には NLS_LANG=Japanese_Jpana.JA16SJISTILDE&lt;br /&gt;select sysdate from dual では　09-05-19&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShJRVigznwI/AAAAAAAAB10/_wPoAJZLPWA/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 299px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShJRVigznwI/AAAAAAAAB10/_wPoAJZLPWA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337417938870968066" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3490430173214617883?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3490430173214617883/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-bom-production.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3490430173214617883'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3490430173214617883'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-bom-production.html' title='Create BOM production'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShDue7ss7lI/AAAAAAAAB0c/FLueNfXFSTQ/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6833561589775297937</id><published>2009-05-18T14:05:00.003+09:00</published><updated>2009-05-18T14:09:28.424+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>Edit a product BOM</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Edit a product BOM&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Add products to a BOM's product&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select product BOM A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Bill of materials Tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;BOM Type = Part/BOM&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;BOM Product = B Raw material&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;BOM quantity = 1&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save and new and fill&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;BOM Type = Part/BOM&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;BOM Product = C Raw material&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;BOM quantity = 1&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move back to Product Tab&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on Verify BOM button&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDs0PQzJ8I/AAAAAAAAB0M/1vLZqMJqiu0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 384px; height: 400px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDs0PQzJ8I/AAAAAAAAB0M/1vLZqMJqiu0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337025940628383682" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;"Bill of Materials"  がチェックされていないと下記の画面になにも表示されない。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/ShDtJHRmiAI/AAAAAAAAB0U/Adsl4kcVApE/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 206px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/ShDtJHRmiAI/AAAAAAAAB0U/Adsl4kcVApE/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337026299261519874" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6833561589775297937?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6833561589775297937/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-product-bom.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6833561589775297937'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6833561589775297937'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-product-bom.html' title='Edit a product BOM'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/ShDs0PQzJ8I/AAAAAAAAB0M/1vLZqMJqiu0/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6003069070521433460</id><published>2009-05-18T14:00:00.000+09:00</published><updated>2009-05-20T19:12:28.017+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Production management'/><title type='text'>2.7 Production management</title><content type='html'>&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Production_management" style="color: rgb(72, 156, 6); "&gt;2.7&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Production_management" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Production_management" style="color: rgb(72, 156, 6); "&gt;Production management&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-family:Verdana;font-size:13px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Edit a product BOM&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create BOM production&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3. Create Cost centre&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4. Create a Process/Activity&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5. Create a process plan&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;6. Create Work requirement&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;7. Create Work effort&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6003069070521433460?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6003069070521433460/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/27-production-management.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6003069070521433460'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6003069070521433460'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/27-production-management.html' title='2.7 Production management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3007669308087947265</id><published>2009-05-18T13:45:00.006+09:00</published><updated>2009-06-05T14:01:34.905+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Sales Management'/><title type='text'>Create goods shipment</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create goods shipment&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create a goods shipment from a sales order&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Sales management-&gt;Transactions-&gt;Create shipments from orders&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the sales order and click process&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;span class="Apple-style-span"   style="font-family:Georgia;font-size:130%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 16px;font-size:48px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ERROR=ORA-20000 : inline 10productWithoutAttributeSet@&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SiiTU34bX7I/AAAAAAAAB8E/krZK2Uk1pd8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 181px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/SiiTU34bX7I/AAAAAAAAB8E/krZK2Uk1pd8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343682944682385330" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;成功（データ　依存?)&lt;/div&gt;&lt;div&gt;Process completed successfully&lt;br /&gt;Order No. 50008 -&gt; Shipment No. 500000- COMPLETE SHIPMENT CREATED;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/SiilEVQecuI/AAAAAAAAB8M/ME8wEsf1vhk/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 185px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/SiilEVQecuI/AAAAAAAAB8M/ME8wEsf1vhk/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343702451719402210" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;The sales order must be disappear&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Goods shipment and see that it is created&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Lines tab and verify the link "Sales Order Line" is related to the correct one&lt;/li&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SiimnhncdQI/AAAAAAAAB8U/QUzZT_rqAlA/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 82px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/SiimnhncdQI/AAAAAAAAB8U/QUzZT_rqAlA/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5343704155844015362" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3007669308087947265?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3007669308087947265/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-goods-shipment.html#comment-form' title='3 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3007669308087947265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3007669308087947265'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-goods-shipment.html' title='Create goods shipment'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/SiiTU34bX7I/AAAAAAAAB8E/krZK2Uk1pd8/s72-c/1.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-8499713167840394191</id><published>2009-05-18T13:44:00.004+09:00</published><updated>2009-05-23T12:37:55.585+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Sales Management'/><title type='text'>Create Standard Sales Order</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-family:Verdana;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create Standard Sales Order&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create an order to be used when creates a goods shipment&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Sales management-&gt;Transactions-&gt;Sales Order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and select Transaction Document: Standard Order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select business partner.Two possibilities:&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;A.- Click on the bp icon and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;When you click the bp icon a pop-up window must show up and the radio button 'customer' must be checked. Please select CUSTOMER A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;B.- Or write in the bp box CUSA and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;A pop-up window doesn't show up and the bp box is filled with the name CUSTOMER A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For both cases verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Invoice from: "Pamplona, Street Customer center nº1"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The combo box &lt;b&gt;User/Contact&lt;/b&gt; must have the value: Alfred&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price list: CUSTOMER A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Form of payment: Money Order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Payment terms: 30 days, 5&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Sales representative: SALESMAN A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to tab Lines and click New. There are two possibilities:&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;A.- Click on the product icon and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;When you click the product icon a pop-up window must show up.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The price list combo must be filled with the value CUSTOMER A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;When click Search only 3 products must appear: A Final goods, B Final goods, C Final goods. Select A Final goods&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;B.- Or write in the product box FGA and verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;A pop-up window doesn't show up and the product box is filled with the name A Final goods&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;For both cases verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;UOM:Unit&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Unit price:2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;List price:2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Tax:VAT(3)+CHARGE(0.5)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill in Ordered quantity= 1&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to header and complete. Verify:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Summed Line Amount= 2&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Grand Total Amount= 2.07&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;The tax VAT(3)+CHARGE(0.5) has to split into VAT 3% and Charge 0.5%. To verify this point, move to Tax tab&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-family:Verdana;font-size:48px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/ShPV6TMk38I/AAAAAAAAB3k/C0a6eKTSA24/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/ShPV6TMk38I/AAAAAAAAB3k/C0a6eKTSA24/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337845180926320578" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 370px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-8499713167840394191?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/8499713167840394191/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-standard-sales-order.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8499713167840394191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8499713167840394191'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-standard-sales-order.html' title='Create Standard Sales Order'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/ShPV6TMk38I/AAAAAAAAB3k/C0a6eKTSA24/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4711954439696297526</id><published>2009-05-18T13:42:00.004+09:00</published><updated>2009-05-20T19:16:15.039+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Sales Management'/><title type='text'>2.6 Sales Management</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/ShPV6TMk38I/AAAAAAAAB3k/C0a6eKTSA24/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Sales_Management" style="color: rgb(72, 156, 6); "&gt;2.6&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Sales_Management" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Sales_Management" style="color: rgb(72, 156, 6); "&gt;Sales Management&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-family:Verdana;font-size:13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create Standard Sales Order&lt;/b&gt; &lt;/pre&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Create goods shipment&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3. Create Sales invoice&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4. Accounting Sales Invoice&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5. Create Settlement&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;6. Create Remittance&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;7. Create Bank Statement&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;8. Generate invoices process&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4711954439696297526?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4711954439696297526/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/26-sales-management.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4711954439696297526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4711954439696297526'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/26-sales-management.html' title='2.6 Sales Management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-2730452539646547143</id><published>2009-05-18T13:39:00.001+09:00</published><updated>2009-05-18T13:39:46.481+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>2.5 Procurement management</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Procurement_management" style="color: rgb(72, 156, 6); "&gt;2.5&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Procurement_management" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Procurement_management" style="color: rgb(72, 156, 6); "&gt;Procurement management&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"&gt;Skip&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-2730452539646547143?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/2730452539646547143/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/25-procurement-management.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2730452539646547143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2730452539646547143'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/25-procurement-management.html' title='2.5 Procurement management'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1095691892029768447</id><published>2009-05-18T13:38:00.000+09:00</published><updated>2009-05-18T13:39:06.806+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>2.4 Administration financial data</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_financial_data" style="color: rgb(72, 156, 6); "&gt;2.4&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_financial_data" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_financial_data" style="color: rgb(72, 156, 6); "&gt;Administration financial data&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Skip&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1095691892029768447?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1095691892029768447/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/24-administration-financial-data.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1095691892029768447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1095691892029768447'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/24-administration-financial-data.html' title='2.4 Administration financial data'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6204862463452297669</id><published>2009-05-18T13:36:00.001+09:00</published><updated>2009-05-26T12:22:29.775+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration accounting data'/><title type='text'>2.3 Administration accounting data</title><content type='html'>&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_accounting_data" style="color: rgb(72, 156, 6); "&gt;2.3&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_accounting_data" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Administration_accounting_data" style="color: rgb(72, 156, 6); "&gt;Administration accounting data&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-size:48px;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1. Create fiscal calendar&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2. Editing Document sequence&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6204862463452297669?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6204862463452297669/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/23-administration-accounting-data.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6204862463452297669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6204862463452297669'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/23-administration-accounting-data.html' title='2.3 Administration accounting data'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7073612733690972742</id><published>2009-05-18T13:03:00.009+09:00</published><updated>2009-05-18T13:35:18.090+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Import account</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;20. Import account&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Test the Accounting import works correctly&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master data management-&gt;Import data-&gt;Import File loader&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the chart of accounts. This chart of accounts must be the same as selected for the&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/To_see_sample_data#Client" title="Acceptance Testing/To see sample data" style="color: rgb(72, 156, 6); "&gt;initial client&lt;/a&gt; set up otherwise the process import accounts wouldn't overwrite the default values.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the format file= Accounting-Accounts&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark Header first line&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click Process&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/ShDeOOYijII/AAAAAAAABzs/FV88LoLqpII/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 204px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/ShDeOOYijII/AAAAAAAABzs/FV88LoLqpII/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337009894394596482" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;Please verify the new imported accounts are in this temporary window&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDffpCrPdI/AAAAAAAABz0/J8mDfm6NG6A/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 289px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDffpCrPdI/AAAAAAAABz0/J8mDfm6NG6A/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337011293120052690" /&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Go to the database manager software and execute the next sentences:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;update c_elementvalue set value = 'xx' || value where ad_client_id = v_client;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;The parameter v_client is the ID of the client that you have already created&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;delete from c_elementvalue_operand;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Commit;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go into any of the records that are in the window Import Account and click on button "Import accounts" and:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Update default marked&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Delete imported marked&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Create new combination not marked&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go again to the database manager software, and execute the next statement:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;delete from c_elementvalue where value like 'xx%' and ad_client_id =v_client;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;commit;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;If you cannot execute correctly the last statement, means the import accounts has failed&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Please see &lt;a href="http://wiki.openbravo.com/wiki/Chart_of_Accounts_Testing_Test_3" title="Chart of Accounts Testing Test 3" style="color: rgb(72, 156, 6); "&gt;Chart of accounts&lt;/a&gt; for more information&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;pre&gt;&lt;blockquote&gt;select name, ad_client_id from ad_client ;&lt;br /&gt;NAME                      AD_CLIENT_ID&lt;br /&gt;------------------------- ------------&lt;br /&gt;System                               0&lt;br /&gt;SampleClient                   1000000&lt;br /&gt;&lt;br /&gt;update c_elementvalue set value = 'xx' || value where ad_client_id = 1000000 ;&lt;br /&gt;&lt;br /&gt;1356行が更新されました。&lt;br /&gt;&lt;br /&gt;delete from c_elementvalue_operand;&lt;br /&gt;&lt;br /&gt;0行が削除されました。  commit ;&lt;/blockquote&gt;&lt;/pre&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDjY9qeeZI/AAAAAAAABz8/0qlm_T4IQ9c/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 208px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/ShDjY9qeeZI/AAAAAAAABz8/0qlm_T4IQ9c/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337015576443124114" /&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDj2SnO0mI/AAAAAAAAB0E/insGfIoWbr8/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 346px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShDj2SnO0mI/AAAAAAAAB0E/insGfIoWbr8/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5337016080282866274" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;pre&gt;&lt;blockquote&gt;SQL&gt; select count(*) from c_elementvalue;&lt;br /&gt;&lt;br /&gt;COUNT(*)&lt;br /&gt;----------&lt;br /&gt;    2712&lt;br /&gt;&lt;br /&gt;SQL&gt; delete from c_elementvalue where value like 'xx%' and ad_client_id = 1000000 ;&lt;br /&gt;&lt;br /&gt;1356行が削除されました。&lt;br /&gt;&lt;br /&gt;SQL&gt; commit ;&lt;/blockquote&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7073612733690972742?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7073612733690972742/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-account.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7073612733690972742'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7073612733690972742'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-account.html' title='Import account'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/ShDeOOYijII/AAAAAAAABzs/FV88LoLqpII/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4806915663895809921</id><published>2009-05-17T19:38:00.005+09:00</published><updated>2009-05-17T21:00:50.106+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Physical inventory</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;19. Create Physical inventory&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create inventory in order to test other features without needed of purchasing or producing anything&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Warehouse management--&gt;Transactions--&gt;Physical inventory&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill the mandatory fields and save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click button "Create Inventory Count List"&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Select a storage bin=Standard&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Inventory Quantity=0&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click Ok&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to lines and for each line write in the "Quantity count" box 10000 and fill the attribute set value&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move back to the header and process (Process inventory count)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;Go to Warehouse management--&gt;Analysis tools--&gt;Stock report and click HTML format. Products should be shown&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;在庫数は入力したが　Stock report は表示されない。&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_2OHNjIcI/AAAAAAAABzc/EziK_ay6bZs/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 182px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_2OHNjIcI/AAAAAAAABzc/EziK_ay6bZs/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336754805771805122" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_8S18ljmI/AAAAAAAABzk/cniUuv7vbWo/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 205px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_8S18ljmI/AAAAAAAABzk/cniUuv7vbWo/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336761484106370658" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4806915663895809921?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4806915663895809921/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-physical-inventory.html#comment-form' title='1 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4806915663895809921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4806915663895809921'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-physical-inventory.html' title='Create Physical inventory'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_2OHNjIcI/AAAAAAAABzc/EziK_ay6bZs/s72-c/1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1484800878426276764</id><published>2009-05-17T19:11:00.001+09:00</published><updated>2009-05-17T19:37:49.217+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Edit Business partner</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;18. Edit Business partner&lt;/b&gt; &lt;/pre&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Note: If you don't want to edit all the business partner using the application please use &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Edit_business_partner_properties_script" title="Acceptance Testing/Edit business partner properties script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Edit_business_partner_properties_script_PostgreSQL" title="Acceptance Testing/Edit business partner properties script PostgreSQL" style="color: rgb(72, 156, 6); "&gt;this PostgreSQL script&lt;/a&gt;&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Test the way of editing a business partner. Example for "CUSTOMER A"&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Preconditions:&lt;/b&gt; set some sales representatives.&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data management--&gt;Business partner&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on search button from the toolbar&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Write "SALESMAN A" in the name box and click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Employee tab and edit the values:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Mark Sales Representative and save.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Do the same for SALESMAN B.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_i77sVrAI/AAAAAAAABzE/h7qVrG4O5l0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 193px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_i77sVrAI/AAAAAAAABzE/h7qVrG4O5l0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336733602721147906" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:Verdana;font-size:13px;"&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data management--&gt;Business partner&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on search button from the toolbar&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Write "CUSTOMER A" in the name box and click OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Customer tab and edit the values:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Invoice Terms: Customer schedule After Delivery&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Invoice Schedule: Schedule Customer A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Price list: Customer A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Form of Payment: Money Order&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Payment Terms: 30 days, 5&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Sales Representative: Salesman A&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_o6TWfKmI/AAAAAAAABzU/E-cXAoFOBHg/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 316px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_o6TWfKmI/AAAAAAAABzU/E-cXAoFOBHg/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336740171781974626" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1484800878426276764?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1484800878426276764/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-business-partner.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1484800878426276764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1484800878426276764'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-business-partner.html' title='Edit Business partner'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_i77sVrAI/AAAAAAAABzE/h7qVrG4O5l0/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-912799274993546659</id><published>2009-05-17T18:49:00.003+09:00</published><updated>2009-05-26T22:01:36.964+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Edit products</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;p    style="line-height: 12pt;    padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; font-family:Verdana, Arial, sans-serif;font-size:11px;color:black;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal; font-size:13px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;17. Edit products&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Note: If you don't want to edit all the products using the application please use &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Edit_products_properties_script" title="Acceptance Testing/Edit products properties script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Edit_products_properties_script_PostgreSQL" title="Acceptance Testing/Edit products properties script PostgreSQL" style="color: rgb(72, 156, 6); "&gt;this PostgreSQL script&lt;/a&gt;&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Test the way of editing a product. Example for product "Raw material A"&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on search button from the toolbar&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Write "RMA" in the "Search Key" box and press OK&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Edit the values:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Tax Category=VAT 10%&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark Purchase&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Not mark Sale&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Attribute set=Serial number&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_hzCSU2fI/AAAAAAAABy8/BwUG4xioX4I/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 277px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_hzCSU2fI/AAAAAAAABy8/BwUG4xioX4I/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336732350360639986" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Next : &lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS'; font-size: 13px; "&gt;&lt;a href="http://openbravo-erp.blogspot.com/2009/05/create-bom-production.html" style="text-decoration: none; color: rgb(128, 0, 128); "&gt;Create BOM production&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-912799274993546659?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/912799274993546659/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-products.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/912799274993546659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/912799274993546659'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/edit-products.html' title='Edit products'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_hzCSU2fI/AAAAAAAABy8/BwUG4xioX4I/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1766625718390978399</id><published>2009-05-17T18:45:00.004+09:00</published><updated>2009-05-17T18:46:42.065+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Invoice Schedule</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;16. Create Invoice Schedule&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create an invoice schedule to use in Generate invoices test case&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Business Partner Setup-&gt;Invoice schedule&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name: Schedule customer A&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Invoice Frequency: Monthly&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Day of the Month: 1&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Invoice Cut-Off Day: 31&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg_c2eHJsoI/AAAAAAAABy0/ip6wVHUmLn0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 143px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg_c2eHJsoI/AAAAAAAABy0/ip6wVHUmLn0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336726911811433090" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1766625718390978399?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1766625718390978399/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-invoice-schedule.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1766625718390978399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1766625718390978399'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-invoice-schedule.html' title='Create Invoice Schedule'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_GRrE56uLdI8/Sg_c2eHJsoI/AAAAAAAABy0/ip6wVHUmLn0/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-5300439753843459293</id><published>2009-05-17T18:30:00.004+09:00</published><updated>2009-05-17T18:42:41.938+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Payment term</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;15. Create Payment term&lt;/b&gt; &lt;/pre&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Note: If you don't want to create all the payment terms using the application please use &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Create_payment_terms_script" title="Acceptance Testing/Create payment terms script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Create_payment_terms_script_PostgreSQL" title="Acceptance Testing/Create payment terms script PostgreSQL" style="color: rgb(72, 156, 6); "&gt;this PostgreSQL&lt;/a&gt;&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create payment terms to add to business partner. Do as example "30 days, 5"&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Business partner setup-&gt;Payment Term&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Value=30d/5&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Name=30 days, 5&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark "Fixed Due Date"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Maturity Date 1=5&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Offset Month Due=1&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; Doing the example for "30 days, 5", remember to remove from the script the code related to this issue.&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_b0eOmr9I/AAAAAAAABys/klrnfqEu64I/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 102px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_b0eOmr9I/AAAAAAAABys/klrnfqEu64I/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336725777971326930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre&gt;&lt;blockquote&gt;DECLARE&lt;br /&gt;v_paymentterm_id NUMBER(10);&lt;br /&gt;v_client_id NUMBER(10);&lt;br /&gt;BEGIN&lt;br /&gt;SELECT MAX(AD_CLIENT_ID) INTO v_client_id FROM AD_CLIENT;&lt;br /&gt;&lt;br /&gt;SELECT COALESCE(MAX(C_PAYMENTTERM_ID),999999) +1 INTO v_paymentterm_id FROM C_PAYMENTTERM;&lt;br /&gt;&lt;br /&gt;INSERT INTO C_PAYMENTTERM&lt;br /&gt;(C_PAYMENTTERM_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY,&lt;br /&gt; NAME, ISDUEFIXED, NETDAYS, FIXMONTHOFFSET, ISNEXTBUSINESSDAY, ISDEFAULT, VALUE, ISVALID)&lt;br /&gt;VALUES&lt;br /&gt; (v_paymentterm_id, v_client_id, 0, 'Y', SYSDATE, 100, SYSDATE, 100, '90 DAYS', 'N', 0, 3, 'N', 'N', '90d', 'N');&lt;br /&gt;ad_update_sequence();&lt;br /&gt;commit;&lt;br /&gt;END;&lt;/blockquote&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-5300439753843459293?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/5300439753843459293/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-payment-term.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5300439753843459293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/5300439753843459293'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-payment-term.html' title='Create Payment term'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sg_b0eOmr9I/AAAAAAAABys/klrnfqEu64I/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3057954463020025822</id><published>2009-05-17T17:16:00.007+09:00</published><updated>2009-05-17T19:33:33.448+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Pricelist</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;14. Create Pricelist&lt;/b&gt; &lt;/pre&gt;&lt;p style="line-height: 12pt; font-family: Verdana, Arial, sans-serif; font-size: 11px; color: black; padding-top: 0px; padding-bottom: 0px; margin-top: 1ex; margin-bottom: 0px; "&gt;Note: If you don't want to create all the pricelist using the application please use &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Create_pricelist_script" title="Acceptance Testing/Create pricelist script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Create_pricelist_script_postgreSQL" title="Acceptance Testing/Create pricelist script postgreSQL" style="color: rgb(72, 156, 6); "&gt;this PostgreSQL script&lt;/a&gt;&lt;/p&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create pricelist for all the products. Do as example SALES pricelist&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data management-&gt;Pricing-&gt;Pricelist&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill Name=SALES mark Sales price list, currency=EUR&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to tab Price list version&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill Name=Sales, Price List Adjustment= Standard and valid from date=01-01-2000&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to tab Product price&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click new and select Product "A Final goods". Uncheck the flag "Stocked" in order to find the product&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill for each price (List price, Standard price, price limit) fill 2. Do the same for "B Final goods", "C Final goods"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; Doing the example for "SALES", remember to remove from the script the code related to this issue.&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_H1gsqrUI/AAAAAAAAByk/z0XlrTYvAPY/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 152px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_H1gsqrUI/AAAAAAAAByk/z0XlrTYvAPY/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336703805581602114" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;Oracle Script を実行する際には&lt;br /&gt;&lt;blockquote&gt;ALTER SESSION SET NLS_DATE_FORMAT='DD/MM/YYYY'  ;&lt;/blockquote&gt;&lt;br /&gt;が必要。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg_nI05CmPI/AAAAAAAABzM/7QTOMce31wk/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 112px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg_nI05CmPI/AAAAAAAABzM/7QTOMce31wk/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336738222280186098" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3057954463020025822?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3057954463020025822/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-pricelist.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3057954463020025822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3057954463020025822'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-pricelist.html' title='Create Pricelist'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sg_H1gsqrUI/AAAAAAAAByk/z0XlrTYvAPY/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4489596696950417450</id><published>2009-05-17T17:01:00.005+09:00</published><updated>2009-05-17T18:09:38.809+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Attribute set</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;13. Create Attribute set&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create sets of attributes for the Products.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Product Setup-&gt;Attribute Set&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New, fill name=Serial number&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark Serial No.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Run &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Attribute_set_script" title="Acceptance Testing/Attribute set script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Attribute_set_script_postgreSQL" title="Acceptance Testing/Attribute set script postgreSQL" style="color: rgb(72, 156, 6); "&gt;this PostgreSQL script&lt;/a&gt; to create the rest of sets&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg_Ebf8U-sI/AAAAAAAAByc/WvPrImxIcBU/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 104px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg_Ebf8U-sI/AAAAAAAAByc/WvPrImxIcBU/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336700060167371458" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;pre&gt;&lt;blockquote&gt;&lt;br /&gt;DECLARE&lt;br /&gt;v_attributeset_id NUMBER(10);&lt;br /&gt;v_client_id NUMBER(10);&lt;br /&gt;&lt;br /&gt;BEGIN&lt;br /&gt;&lt;br /&gt;SELECT MAX(AD_CLIENT_ID) INTO v_client_id FROM AD_CLIENT;&lt;br /&gt;SELECT COALESCE(MAX(M_ATTRIBUTESET_ID),999999)+1 INTO v_attributeset_id FROM  M_ATTRIBUTESET;&lt;br /&gt;&lt;br /&gt;INSERT INTO M_ATTRIBUTESET (M_ATTRIBUTESET_ID, AD_CLIENT_ID, AD_ORG_ID, ISACTIVE, CREATED,CREATEDBY, UPDATED, UPDATEDBY, NAME, ISLOT, ISGUARANTEEDATE, ISSERNO)&lt;br /&gt;VALUES(v_attributeset_id, v_client_id, 0, 'Y', sysdate, 100,sysdate,100,'Lots','Y','Y','N');&lt;br /&gt;   &lt;br /&gt;AD_UPDATE_SEQUENCE;&lt;br /&gt;COMMIT;&lt;br /&gt;END;&lt;/blockquote&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4489596696950417450?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4489596696950417450/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-attribute-set.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4489596696950417450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4489596696950417450'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-attribute-set.html' title='Create Attribute set'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg_Ebf8U-sI/AAAAAAAAByc/WvPrImxIcBU/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3966461576482388440</id><published>2009-05-17T15:24:00.003+09:00</published><updated>2009-05-17T18:08:48.829+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Import Taxes</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;12. Import Taxes&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Import from the temporary tax table to the final one&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Import Data-&gt;Import Tax&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Entry in edition mode and click on button Import Tax and then OK&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;Take a look in the field Import Error Message to see if there are any errors and Go to Financial management-&gt;Accounting-&gt;Setup-&gt;Tax rate and verify that all the taxes are there&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-tutBbosI/AAAAAAAAByM/H-UizTnGgNM/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 354px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-tutBbosI/AAAAAAAAByM/H-UizTnGgNM/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336675101328515778" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;手動で画面よりインターフェイステーブルに VAT 3% 　だけ登録し、インターフェイス処理を実行。&lt;/div&gt;&lt;div&gt;Tax Rate の登録を確認&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-uqYCAf1I/AAAAAAAAByU/1JEkmh8FoXI/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 254px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-uqYCAf1I/AAAAAAAAByU/1JEkmh8FoXI/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336676126485938002" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3966461576482388440?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3966461576482388440/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-taxes.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3966461576482388440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3966461576482388440'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-taxes.html' title='Import Taxes'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-tutBbosI/AAAAAAAAByM/H-UizTnGgNM/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4235615189693765654</id><published>2009-05-17T14:25:00.008+09:00</published><updated>2009-05-17T18:08:25.123+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Import products / Business partner</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;10. Import products&lt;br /&gt;11. Import Business partners&lt;/b&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Import from the temporary product table to the final one&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Import Data-&gt;Import Products&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Entry in edition mode and click on button Import Product and then OK&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;Take a look in the field Import Error Message to see if there are any errors and Go to Master Data Management-&gt;Product and verify that all the products are there&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;この画面で　”Imoprot Products" をクリックすることで一時テーブルから最終の位置に登録される。&lt;div&gt;　&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 153, 0);"&gt;Product inserted: 9&lt;/span&gt;&lt;/span&gt; 　　と表示されている。&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg-f68q4zOI/AAAAAAAABx8/MvRjmuwJzGs/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 365px; height: 400px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg-f68q4zOI/AAAAAAAABx8/MvRjmuwJzGs/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336659918524566754" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;この処理により Business Partner の場合、　I_BPartner インターフェイステーブルから C_BPartner テーブルをはじめとした、いくつかのテーブルへの処理が実行されている。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg-n_9QnBwI/AAAAAAAAByE/ean9JlPA8Ng/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 292px; height: 400px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg-n_9QnBwI/AAAAAAAAByE/ean9JlPA8Ng/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336668800675153666" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4235615189693765654?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4235615189693765654/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-products-business-partner.html#comment-form' title='1 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4235615189693765654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4235615189693765654'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-products-business-partner.html' title='Import products / Business partner'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sg-f68q4zOI/AAAAAAAABx8/MvRjmuwJzGs/s72-c/1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-3386444541000498182</id><published>2009-05-17T14:08:00.006+09:00</published><updated>2009-05-17T18:07:19.574+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Product/Business Partner category</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;8. Create Product category&lt;br /&gt;9. Create BusinessPartner Category&lt;/b&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt;Create a product category to import the data from the temporal tables to the final tables.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master data management-&gt;Product Setup-&gt;Product Category&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill value=RM; Name=Raw materials and save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Create Product categories for BOM (Bill of Materials) and FG (Finished Goods) with &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Products_Categories_script" title="Acceptance Testing/Products Categories script" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt; or &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Products_Categories_script_postgreSQL" title="Acceptance Testing/Products Categories script postgreSQL" style="color: rgb(72, 156, 6); "&gt;this postgreSQL script&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; Please create these categories with the values RM, BOM and FG respectively in order to import the products that belong to that category.&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-b73Nuh5I/AAAAAAAABx0/Go_rwO6hGMw/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 137px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-b73Nuh5I/AAAAAAAABx0/Go_rwO6hGMw/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336655536193439634" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Raw Material 以外は　Script が用意されているので、これを実行。&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;DECLARE&lt;br /&gt;v_client_id number(10);&lt;br /&gt;v_product_category_id number(10);&lt;br /&gt;&lt;br /&gt;BEGIN&lt;br /&gt;SELECT MAX(AD_CLIENT_ID) INTO v_client_id FROM AD_CLIENT;&lt;br /&gt;SELECT MAX(M_PRODUCT_CATEGORY_ID)+1 INTO v_product_category_id FROM  M_PRODUCT_CATEGORY;&lt;br /&gt;INSERT INTO M_PRODUCT_CATEGORY (M_PRODUCT_CATEGORY_ID, AD_CLIENT_ID, AD_ORG_ID,&lt;br /&gt;ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, PLANNEDMARGIN)&lt;br /&gt;VALUES (v_product_category_id, v_client_id, 0 , 'Y', sysdate , 100, sysdate, 100, 'BOM', 'BOMs', 0);&lt;br /&gt;v_product_category_id:=v_product_category_id + 1;&lt;br /&gt;INSERT INTO M_PRODUCT_CATEGORY (M_PRODUCT_CATEGORY_ID, AD_CLIENT_ID, AD_ORG_ID,&lt;br /&gt;ISACTIVE, CREATED, CREATEDBY, UPDATED, UPDATEDBY, VALUE, NAME, PLANNEDMARGIN)&lt;br /&gt;VALUES (v_product_category_id, v_client_id, 0 , 'Y', sysdate , 100, sysdate, 100, 'FG', 'Final goods',0);&lt;br /&gt;AD_UPDATE_SEQUENCE();&lt;br /&gt;commit;&lt;br /&gt;end;&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-3386444541000498182?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/3386444541000498182/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-product-category.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3386444541000498182'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/3386444541000498182'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-product-category.html' title='Create Product/Business Partner category'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-b73Nuh5I/AAAAAAAABx0/Go_rwO6hGMw/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4893764239521530565</id><published>2009-05-17T13:18:00.010+09:00</published><updated>2009-05-25T20:05:20.763+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Import file loader</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;7.Import file loader&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Test the import data process for Products, Business partner and taxes.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Import Data-&gt;Import File Loader&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select the file I_Products.txt and the format for the products&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click OK. This is only to verify that the file is well format&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select again the file and the format. Click Process&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Do the same for Business partners and taxes&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Import Data&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify that the products are in the Import Product window&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify that the Business partners are in the Import Business partner window&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Verify that the taxes are in the Import tax window&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; To import use the .txt that are in &lt;a href="http://wiki.openbravo.com/wiki/images/d/d5/I_Businesspartner.txt" class="internal" title="I Businesspartner.txt" style="color: rgb(72, 156, 6); "&gt;Business partner&lt;/a&gt;, &lt;a href="http://wiki.openbravo.com/wiki/images/c/cd/I_Products.txt" class="internal" title="I Products.txt" style="color: rgb(72, 156, 6); "&gt;Products&lt;/a&gt; and &lt;a href="http://wiki.openbravo.com/wiki/images/6/6d/I_Tax.txt" class="internal" title="I Tax.txt" style="color: rgb(72, 156, 6); "&gt;taxes&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-RU2oS4LI/AAAAAAAABxs/XEL9GSLvTFs/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 141px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-RU2oS4LI/AAAAAAAABxs/XEL9GSLvTFs/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336643870905262258" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Product データロード用の書式が手入力したものなのでまずはエラーとなることを予想していたが、１度目で Load 成功。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;"Process" をクリックすることで、実際の Loading が実行される。&lt;/div&gt;&lt;div&gt;Taxes が "Process" でエラーとなる。　( 2.40 )&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ProcessRunError と表示されるだけで、エラーの原因が表示されない&lt;/div&gt;&lt;div&gt;試しに　"Format file: Taxes: Complete" を選択すると書式チェックの段階でフリーズしてしまった。&lt;/div&gt;&lt;div&gt;６行程度のデータなので手動で入力してもこの部分はたいした工数にはならない。&lt;/div&gt;&lt;div&gt;Skip&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;このエラーの原因を検索していて以下のガイドを見つけた&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="color: rgb(54, 54, 54);   font-weight: bold; line-height: 24px; font-family:arial;font-size:20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="color: rgb(54, 54, 54);   font-weight: bold; line-height: 24px; font-family:arial;font-size:20px;"&gt;OPENBRAVO CHART OF ACCOUNTS TESTING GUIDE&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.scribd.com/doc/2923732/OPENBRAVO-CHART-OF-ACCOUNTS-TESTING-GUIDE"&gt;http://www.scribd.com/doc/2923732/OPENBRAVO-CHART-OF-ACCOUNTS-TESTING-GUIDE&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;a href="http://www.scribd.com/doc/2923732/OPENBRAVO-CHART-OF-ACCOUNTS-TESTING-GUIDE"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4893764239521530565?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4893764239521530565/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-file-loader.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4893764239521530565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4893764239521530565'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/import-file-loader.html' title='Import file loader'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg-RU2oS4LI/AAAAAAAABxs/XEL9GSLvTFs/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6346815157293618250</id><published>2009-05-16T23:24:00.009+09:00</published><updated>2009-05-24T16:31:00.269+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create Import Loader Format</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg7NkjNHk3I/AAAAAAAABxk/ttQ8z58dmeM/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 282px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg7NkjNHk3I/AAAAAAAABxk/ttQ8z58dmeM/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336428636289864562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Interfaceテーブルはいくか用意されているが残念ながら BOM については用意されていない。&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Interface テーブルに対して import するデータの書式はカスタム定義可能であるため、この項にて動作確認。&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;6.Create Import Loader Format&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short Description:&lt;/b&gt; Create the import format loader for &lt;a href="http://wiki.openbravo.com/wiki/images/d/d5/I_Businesspartner.txt" class="internal" title="I Businesspartner.txt" style="color: rgb(72, 156, 6); "&gt;Business partner&lt;/a&gt;, &lt;a href="http://wiki.openbravo.com/wiki/images/c/cd/I_Products.txt" class="internal" title="I Products.txt" style="color: rgb(72, 156, 6); "&gt;Products&lt;/a&gt; and &lt;a href="http://wiki.openbravo.com/wiki/images/6/6d/I_Tax.txt" class="internal" title="I Tax.txt" style="color: rgb(72, 156, 6); "&gt;taxes&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Master Data Management-&gt;Import Data-&gt;Import Loader Format&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Name "Product"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Table "I_Product"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Format "Comma Separated"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to Field Format and create new records:&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg7MqqyxKeI/AAAAAAAABxc/mXbn7RDhpoQ/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 165px;" src="http://4.bp.blogspot.com/_GRrE56uLdI8/Sg7MqqyxKeI/AAAAAAAABxc/mXbn7RDhpoQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336427641894414818" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Business partner, Taxes 用には SQLが用意されている。&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;C:\OpenbravoERP24&gt;sqlplus erp/xxxx @6_format_loader.sql&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-6346815157293618250?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/6346815157293618250/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-import-loader-format.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6346815157293618250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/6346815157293618250'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-import-loader-format.html' title='Create Import Loader Format'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sg7NkjNHk3I/AAAAAAAABxk/ttQ8z58dmeM/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-2715161729049601091</id><published>2009-05-16T23:02:00.007+09:00</published><updated>2009-05-24T16:29:15.929+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create role</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Shj3MXYrHPI/AAAAAAAAB5E/1xANZ5NZPsg/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5.Create role&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short description:&lt;/b&gt; Create a role to relate to the user "userA"&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login with userA&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to General setup-&gt;Security-&gt;Role&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill Name "Sales"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Select "Client+Organization"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Mark the check Manual and save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click Grant Access: Select "Sales management" and Access "All"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to Org Access and click New. Select org *&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and select org Pamplona.&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to User Assignment and select "userA"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt; Login with "userA" and click on "User info". Select the Role (Sales). Verify that you can only access Sales management module windows.&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg7Hl7Q9qmI/AAAAAAAABxU/IeJEdJb3G_g/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 229px;" src="http://1.bp.blogspot.com/_GRrE56uLdI8/Sg7Hl7Q9qmI/AAAAAAAABxU/IeJEdJb3G_g/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336422062858545762" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Shj3MXYrHPI/AAAAAAAAB5E/1xANZ5NZPsg/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/Shj3MXYrHPI/AAAAAAAAB5E/1xANZ5NZPsg/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5339289150055718130" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 257px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;作成した Sales ロールでログインすると Sales 用のメニューしか表示されなくなったが、選択した先の Window の表示でエラーになるのはまだ権限設定を行なっていないからだろうか。&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-2715161729049601091?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/2715161729049601091/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-role.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2715161729049601091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/2715161729049601091'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-role.html' title='Create role'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/Sg7Hl7Q9qmI/AAAAAAAABxU/IeJEdJb3G_g/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-9118833322192698608</id><published>2009-05-16T22:44:00.009+09:00</published><updated>2009-05-24T16:12:45.769+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Create User</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4.Create user&lt;/b&gt; &lt;/pre&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short Description:&lt;/b&gt; Create a user to use for the next test cases&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login with user created by the initial client setup, SampleClientAdmin/SampleClientAdmin&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go to General setup-&gt;Security-&gt;User&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click New and fill the mandatory field:&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Organization: *&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;First Name "userA"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Name "userA"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Username "userA"&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Save&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill the password and save. Password "userA"&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Move to User Roles and click New and select the SampleClientAdmin role.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt; Verify that you can login with the new user and you have access to all windows&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg7ECh1gV7I/AAAAAAAABxM/rSryeJaX6A0/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 263px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg7ECh1gV7I/AAAAAAAABxM/rSryeJaX6A0/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336418156202186674" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span" style="font-size: 48px; line-height: 19px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:7;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:48px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px;font-family:Verdana;font-size:13px;"&gt;&lt;s&gt;Openbravo ユーザーでログインして、一旦、自分の Role を　&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;SampleClientUser &lt;/span&gt;に変更して&lt;/s&gt;&lt;/span&gt;&lt;s&gt;&lt;/s&gt;&lt;/div&gt;&lt;s style="text-decoration: none;"&gt;&lt;div style=""&gt;&lt;span class="Apple-style-span"   style="line-height: 19px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="Apple-style-span" style="text-decoration: line-through;"&gt;Create User しないと、この作成したユーザーの Role に　&lt;/span&gt;&lt;span class="Apple-style-span" style="text-decoration: line-through;font-weight: bold; "&gt;SampleClientUser 　&lt;/span&gt;をアサインできない。&lt;/span&gt;&lt;/div&gt;&lt;/s&gt;&lt;br /&gt;Client作成時に自動作成される　User/Password = SampleClientAdmin/SampleClientAdmin&lt;div&gt;にてログインして、 userA を作成する。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-9118833322192698608?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/9118833322192698608/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-user.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9118833322192698608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9118833322192698608'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-user.html' title='Create User'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg7ECh1gV7I/AAAAAAAABxM/rSryeJaX6A0/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1741906230941463909</id><published>2009-05-16T21:47:00.012+09:00</published><updated>2009-05-17T18:14:01.001+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>M_Pricelist.C_Currency_ID に Null</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 13px; line-height: 19px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1.Initial client setup&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg62RvpMFSI/AAAAAAAABxE/DuHgTM9r2jM/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 108px;" src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg62RvpMFSI/AAAAAAAABxE/DuHgTM9r2jM/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336403024443872546" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="https://issues.openbravo.com/view.php?id=8246"&gt;issue8246&lt;/a&gt; として登録されて、fix されているが、Patch がダウンロードできないようでもあり、&lt;/div&gt;&lt;blockquote&gt;alter table m_pricelist  modify ( c_currency_id number(10) null ) ;&lt;/blockquote&gt;&lt;pre&gt;SQL&gt; desc m_pricelist ;&lt;br /&gt;名前               NULL?    型&lt;br /&gt;------------------ -------- -------------&lt;br /&gt;M_PRICELIST_ID     NOT NULL NUMBER(10)&lt;br /&gt;AD_CLIENT_ID       NOT NULL NUMBER(10)&lt;br /&gt;AD_ORG_ID          NOT NULL NUMBER(10)&lt;br /&gt;ISACTIVE           NOT NULL CHAR(1)&lt;br /&gt;CREATED            NOT NULL DATE&lt;br /&gt;CREATEDBY          NOT NULL NUMBER(10)&lt;br /&gt;UPDATED            NOT NULL DATE&lt;br /&gt;UPDATEDBY          NOT NULL NUMBER(10)&lt;br /&gt;NAME               NOT NULL NVARCHAR2(60)&lt;br /&gt;DESCRIPTION                 NVARCHAR2(255)&lt;br /&gt;BASEPRICELIST_ID            NUMBER(10)&lt;br /&gt;ISTAXINCLUDED      NOT NULL CHAR(1)&lt;br /&gt;ISSOPRICELIST      NOT NULL CHAR(1)&lt;br /&gt;ISDEFAULT          NOT NULL CHAR(1)&lt;br /&gt;C_CURRENCY_ID               NUMBER(10)&lt;br /&gt;ENFORCEPRICELIMIT  NOT NULL CHAR(1)&lt;br /&gt;&lt;/pre&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Verdana; font-size: 13px; line-height: 19px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2.Delete client&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;しかし　&lt;span class="Apple-style-span" style="color: rgb(204, 0, 0);"&gt;ora-1400&lt;/span&gt; が発生しているにもかかわらず &lt;span class="Apple-style-span" style="color: rgb(204, 0, 0);"&gt;ad_client&lt;/span&gt; テーブルにはデータが insert されてしまっているため、 "Delete Client" で削除しなくてはならない。&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1741906230941463909?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1741906230941463909/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/mpricelistccurrencyid-null.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1741906230941463909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1741906230941463909'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/mpricelistccurrencyid-null.html' title='M_Pricelist.C_Currency_ID に Null'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg62RvpMFSI/AAAAAAAABxE/DuHgTM9r2jM/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-9096256660412649840</id><published>2009-05-16T21:44:00.009+09:00</published><updated>2009-05-24T16:09:09.908+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>Initial client setup</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShjwdDU3vTI/AAAAAAAAB48/LdPMurELOHQ/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;Initial client setup&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Short Description:&lt;/b&gt; Test the Initial Client Setup process&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Additional data:&lt;/b&gt; Use the System Administrator Role for this test&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Steps&lt;/b&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;Login as Openbravo/openbravo&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click on icon "user info" and select the role "System Administrator"&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;&lt;span class="Apple-style-span"   style="  line-height: normal; font-family:Georgia;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_GRrE56uLdI8/SheHy7KM_YI/AAAAAAAAB4E/7vDLTIIP6Rk/s1600-h/1.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_GRrE56uLdI8/SheHy7KM_YI/AAAAAAAAB4E/7vDLTIIP6Rk/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5338885192214707586" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 268px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Go General Setup -&gt; Client-&gt; Initial client setup&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Fill the data and chart of accounts according &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/To_see_sample_data#Client" title="Acceptance Testing/To see sample data" style="color: rgb(72, 156, 6); "&gt;Client sample data&lt;/a&gt;&lt;/li&gt;&lt;li style="line-height: 12pt; "&gt;Click OK&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li style="line-height: 12pt; "&gt;&lt;b&gt;Issues to verify:&lt;/b&gt; Verify that the &lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing/Initial_client_set_up_log" title="Acceptance Testing/Initial client set up log" style="color: rgb(72, 156, 6); "&gt;output log&lt;/a&gt; is correct&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ここで指定した、&lt;b&gt;SampleClientAdmin &lt;/b&gt;ユーザーが自動的に作成される。&lt;/div&gt;&lt;div&gt;このユーザーでログイン(　Password = SampelClientAdmin ) し、&lt;/div&gt;&lt;div&gt;以後、ユーザー &lt;b&gt;userA &lt;/b&gt;を作成する。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShjwdDU3vTI/AAAAAAAAB48/LdPMurELOHQ/s1600-h/1.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShjwdDU3vTI/AAAAAAAAB48/LdPMurELOHQ/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5339281740147440946" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 400px; height: 360px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Reference data などインストールに問題がある場合など、この時点でエラーとなる。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/ShgPsedS6hI/AAAAAAAAB4k/v3zWrZUZ8-Q/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 397px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/ShgPsedS6hI/AAAAAAAAB4k/v3zWrZUZ8-Q/s400/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5339034615012321810" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-9096256660412649840?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/9096256660412649840/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/initial-client-setup.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9096256660412649840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/9096256660412649840'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/initial-client-setup.html' title='Initial client setup'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_GRrE56uLdI8/SheHy7KM_YI/AAAAAAAAB4E/7vDLTIIP6Rk/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-8018321125408683548</id><published>2009-05-16T21:43:00.000+09:00</published><updated>2009-05-17T18:12:34.386+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Administration master data'/><title type='text'>2.2 Administration master data</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1.Initial client setup&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2.Delete client&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3.Import/Export Translation&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-8018321125408683548?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/8018321125408683548/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/22-administration-master-data.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8018321125408683548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/8018321125408683548'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/22-administration-master-data.html' title='2.2 Administration master data'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-4743215673973527269</id><published>2009-05-16T18:22:00.007+09:00</published><updated>2009-05-16T19:48:24.351+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>Create Table / Custom Table Test</title><content type='html'>&lt;div&gt;&lt;br /&gt;Acceptance Testing &lt;br /&gt;2. Test cases&lt;br /&gt; &lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Application_Dictionary" style="color: rgb(72, 156, 6); "&gt;2.1&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Application_Dictionary" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Application_Dictionary" style="color: rgb(72, 156, 6); "&gt;Application Dictionary&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;がカスタムテーブルとその画面のテストケースであることがわかったためテーブルは作成したものの作業は中断し、 Skip する。&lt;div&gt;&lt;br /&gt;&lt;/div&gt;Acceptance_Testing 用 Script1.sql&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing"&gt;http://wiki.openbravo.com/wiki/Acceptance_Testing&lt;/a&gt;&lt;br /&gt;&lt;div&gt;Execute &lt;a href="http://wiki.openbravo.com/wiki/Upgraders_Testing/Create_tables_%28Oracle%29" title="Upgraders Testing/Create tables (Oracle)" style="color: rgb(72, 156, 6); "&gt;this Oracle script&lt;/a&gt;&lt;pre&gt;&lt;br /&gt;/********C_ROOM TABLE**********/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE TABLE C_ROOM&lt;br /&gt;(&lt;br /&gt;C_ROOM_ID          NUMBER(10)    NOT NULL,&lt;br /&gt;AD_CLIENT_ID       NUMBER(10)    NOT NULL,&lt;br /&gt;AD_ORG_ID          NUMBER(10)    NOT NULL,&lt;br /&gt;ISACTIVE           CHAR(1 BYTE)  DEFAULT 'Y'       NOT NULL,&lt;br /&gt;CREATED            DATE          DEFAULT SYSDATE   NOT NULL,&lt;br /&gt;CREATEDBY          NUMBER(10)    NOT NULL,&lt;br /&gt;UPDATED            DATE          DEFAULT SYSDATE  NOT NULL,&lt;br /&gt;UPDATEDBY          NUMBER(10)    NOT NULL,&lt;br /&gt;NAME  NVARCHAR2(60) NOT NULL,&lt;br /&gt;DESCRIPTION        NVARCHAR2(255),&lt;br /&gt;ROOMTYPE           CHAR(2 BYTE),&lt;br /&gt;LOCATION           NVARCHAR2(255)&lt;br /&gt;)&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTUSED    0&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   1&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;LOGGING&lt;br /&gt;NOCOMPRESS&lt;br /&gt;NOCACHE&lt;br /&gt;NOPARALLEL&lt;br /&gt;MONITORING;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE UNIQUE INDEX C_ROOM_KEY ON C_ROOM&lt;br /&gt;(C_ROOM_ID)&lt;br /&gt;LOGGING&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;NOPARALLEL;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOM ADD (&lt;br /&gt;CONSTRAINT C_ROOM_ISACTIVE_CHECK&lt;br /&gt;CHECK (ISACTIVE IN ('Y', 'N')));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOM ADD (&lt;br /&gt;CONSTRAINT C_ROOM_KEY&lt;br /&gt;PRIMARY KEY&lt;br /&gt;(C_ROOM_ID)&lt;br /&gt;USING INDEX&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;INITIAL          64K&lt;br /&gt;MINEXTENTS       1&lt;br /&gt;MAXEXTENTS       2147483645&lt;br /&gt;PCTINCREASE      0&lt;br /&gt;));&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOM ADD (&lt;br /&gt;CONSTRAINT C_ROOM_ORG&lt;br /&gt;FOREIGN KEY (AD_ORG_ID)&lt;br /&gt;REFERENCES AD_ORG (AD_ORG_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOM ADD (&lt;br /&gt;CONSTRAINT ADCLIENT_C_ROOM&lt;br /&gt;FOREIGN KEY (AD_CLIENT_ID)&lt;br /&gt;REFERENCES AD_CLIENT (AD_CLIENT_ID));&lt;br /&gt;&lt;br /&gt;/***************C_ROOMSCHEDULE*********/&lt;br /&gt;CREATE TABLE C_ROOMSCHEDULE&lt;br /&gt;(&lt;br /&gt;C_ROOMSCHEDULE_ID  NUMBER(10)    NOT NULL,&lt;br /&gt;AD_CLIENT_ID       NUMBER(10)    NOT NULL,&lt;br /&gt;AD_ORG_ID          NUMBER(10)    NOT NULL,&lt;br /&gt;ISACTIVE           CHAR(1 BYTE)  DEFAULT 'Y'        NOT NULL,&lt;br /&gt;CREATED            DATE          DEFAULT SYSDATE   NOT NULL,&lt;br /&gt;CREATEDBY          NUMBER(10)    NOT NULL,&lt;br /&gt;UPDATED            DATE          DEFAULT SYSDATE   NOT NULL,&lt;br /&gt;UPDATEDBY          NUMBER(10)    NOT NULL,&lt;br /&gt;C_ROOM_ID          NUMBER(10)    NOT NULL,&lt;br /&gt;TOPIC NVARCHAR2(255),&lt;br /&gt;RESERVATIONDATE    DATE          NOT NULL,&lt;br /&gt;STARTTIME          DATE          NOT NULL,&lt;br /&gt;ENDTIME            DATE          NOT NULL,&lt;br /&gt;AD_USER_ID         NUMBER(10),&lt;br /&gt;FREQUENCY          CHAR(2 BYTE)&lt;br /&gt;)&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTUSED    0&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   1&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;LOGGING&lt;br /&gt;NOCOMPRESS&lt;br /&gt;NOCACHE&lt;br /&gt;NOPARALLEL&lt;br /&gt;MONITORING;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE UNIQUE INDEX C_ROOMSCHEDULE_KEY ON C_ROOMSCHEDULE&lt;br /&gt;(C_ROOMSCHEDULE_ID)&lt;br /&gt;LOGGING&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;NOPARALLEL;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT C_ROOMSCHEDULE_ISACTIVE_CHECK&lt;br /&gt;CHECK (ISACTIVE IN ('Y', 'N')));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT C_ROOMSCHEDULE_KEY&lt;br /&gt;PRIMARY KEY&lt;br /&gt;(C_ROOMSCHEDULE_ID)&lt;br /&gt;USING INDEX&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;INITIAL          64K&lt;br /&gt;MINEXTENTS       1&lt;br /&gt;MAXEXTENTS       2147483645&lt;br /&gt;PCTINCREASE      0&lt;br /&gt;));&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT C_ROOMSCHEDULE_ORG&lt;br /&gt;FOREIGN KEY (AD_ORG_ID)&lt;br /&gt;REFERENCES AD_ORG (AD_ORG_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT ADCLIENT_C_ROOMSCHEDULE&lt;br /&gt;FOREIGN KEY (AD_CLIENT_ID)&lt;br /&gt;REFERENCES AD_CLIENT (AD_CLIENT_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT C_ROOMSCHEDULE_USER&lt;br /&gt;FOREIGN KEY (AD_USER_ID)&lt;br /&gt;REFERENCES AD_USER (AD_USER_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMSCHEDULE ADD (&lt;br /&gt;CONSTRAINT C_ROOMSCHEDULE_ROOM&lt;br /&gt;FOREIGN KEY (C_ROOM_ID)&lt;br /&gt;REFERENCES C_ROOM (C_ROOM_ID));&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*****************C_ROOMATTEND***********/&lt;br /&gt;&lt;br /&gt;CREATE TABLE C_ROOMATTEND&lt;br /&gt;(&lt;br /&gt;C_ROOMATTEND_ID           NUMBER(10)          NOT NULL,&lt;br /&gt;AD_CLIENT_ID NUMBER(10)          NOT NULL,&lt;br /&gt;AD_ORG_ID    NUMBER(10)          NOT NULL,&lt;br /&gt;ISACTIVE     CHAR(1 BYTE)        DEFAULT 'Y'        NOT NULL,&lt;br /&gt;CREATED      DATE   DEFAULT SYSDATE  NOT NULL,&lt;br /&gt;CREATEDBY    NUMBER(10)          NOT NULL,&lt;br /&gt;UPDATED      DATE   DEFAULT SYSDATE   NOT NULL,&lt;br /&gt;UPDATEDBY    NUMBER(10)          NOT NULL,&lt;br /&gt;C_ROOMSCHEDULE_ID            NUMBER(10)  NOT NULL,&lt;br /&gt;MEETINGROLE  NVARCHAR2(255),&lt;br /&gt;TYPEATTENDER CHAR(2 BYTE),&lt;br /&gt;DEPARTMENT   CHAR(2 BYTE),&lt;br /&gt;AD_USER_ID   NUMBER(10),&lt;br /&gt;C_BPARTNER_IDNUMBER(10)&lt;br /&gt;)&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTUSED    0&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   1&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;LOGGING&lt;br /&gt;NOCOMPRESS&lt;br /&gt;NOCACHE&lt;br /&gt;NOPARALLEL&lt;br /&gt;MONITORING;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE UNIQUE INDEX C_ROOMATTEND_KEY ON C_ROOMATTEND&lt;br /&gt;(C_ROOMATTEND_ID)&lt;br /&gt;LOGGING&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;       INITIAL          64K&lt;br /&gt;       MINEXTENTS       1&lt;br /&gt;       MAXEXTENTS       2147483645&lt;br /&gt;       PCTINCREASE      0&lt;br /&gt;       BUFFER_POOL      DEFAULT&lt;br /&gt;      )&lt;br /&gt;NOPARALLEL;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT C_ROOMATTEND_ISACTIVE_CHECK&lt;br /&gt;CHECK (ISACTIVE IN ('Y', 'N')));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT C_ROOMATTEND_KEY&lt;br /&gt;PRIMARY KEY&lt;br /&gt;(C_ROOMATTEND_ID)&lt;br /&gt;USING INDEX&lt;br /&gt;TABLESPACE USERS&lt;br /&gt;PCTFREE    10&lt;br /&gt;INITRANS   2&lt;br /&gt;MAXTRANS   255&lt;br /&gt;STORAGE    (&lt;br /&gt;INITIAL          64K&lt;br /&gt;MINEXTENTS       1&lt;br /&gt;MAXEXTENTS       2147483645&lt;br /&gt;PCTINCREASE      0&lt;br /&gt;));&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT ADCLIENT_C_ROOMATTEND&lt;br /&gt;FOREIGN KEY (AD_CLIENT_ID)&lt;br /&gt;REFERENCES AD_CLIENT (AD_CLIENT_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT AUSER_C_ROOMATTEND&lt;br /&gt;FOREIGN KEY (AD_USER_ID)&lt;br /&gt;REFERENCES AD_USER (AD_USER_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT ADORG_C_ROOMATTEND&lt;br /&gt;FOREIGN KEY (AD_ORG_ID)&lt;br /&gt;REFERENCES AD_ORG (AD_ORG_ID));&lt;br /&gt;&lt;br /&gt;ALTER TABLE C_ROOMATTEND ADD (&lt;br /&gt;CONSTRAINT BPARTNER_C_ROOMATTEND&lt;br /&gt;FOREIGN KEY (C_BPARTNER_ID)&lt;br /&gt;REFERENCES C_BPARTNER (C_BPARTNER_ID));&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-4743215673973527269?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/4743215673973527269/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-table.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4743215673973527269'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/4743215673973527269'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/create-table.html' title='Create Table / Custom Table Test'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7772364326059313219</id><published>2009-05-16T18:21:00.005+09:00</published><updated>2009-05-23T14:04:41.768+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing Application Dictionary'/><title type='text'>2.1 Application Dictionary</title><content type='html'>この章はカスタマイズテーブル(テーブルを追加する場合）の機能に関するものであるため、先に実施する必要はない。&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: &lt;br /&gt;2px; -webkit-border-vertical-spacing: 2px; font-family:Verdana;font-size:13px;"&gt;&lt;span class="tocnumber"&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Application_Dictionary" style="color: rgb(72, 156, 6); "&gt;2.1&lt;/a&gt;&lt;/span&gt;&lt;a href="http://wiki.openbravo.com/wiki/Acceptance_Testing#Application_Dictionary" style="color: rgb(72, 156, 6); "&gt; &lt;/a&gt;&lt;span class="toctext"&gt;&lt;ahref="http://wiki.openbravo.com/wiki/acceptance_testing#application_dictionary" style="color: rgb(72, 156, 6); "&gt;Application Dictionary&lt;/ahref="http://wiki.openbravo.com/wiki/acceptance_testing#application_dictionary"&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;font-family:Verdana;font-size:13px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; "&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;1.Create tables&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;2.Create functions&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;3.Create references&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;4.Add tables to dictionary&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;pre style="background-color: rgb(255, 255, 255); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(72, 158, 6); border-right-color: rgb(72, 158, 6); border-bottom-color: rgb(72, 158, 6); border-left-color: rgb(72, 158, 6); line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; "&gt;&lt;b&gt;5.Create window&lt;/b&gt;&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7772364326059313219?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7772364326059313219/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/21-application-dictionary.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7772364326059313219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7772364326059313219'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/21-application-dictionary.html' title='2.1 Application Dictionary'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-7008489571983097448</id><published>2009-05-16T15:44:00.012+09:00</published><updated>2009-05-16T23:36:42.663+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Acceptance_Testing'/><title type='text'>ORA-600　[evapls1]</title><content type='html'>Oracle XE が推奨されない理由はすぐにわかることになる。&lt;br /&gt;&lt;ul&gt;&lt;li&gt;C:\oraclexe\app\oracle\admin\XE\bdump\alert.log&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;Sat May 16 15:25:28 2009&lt;br /&gt;Errors in file c:\oraclexe\app\oracle\admin\xe\udump\xe_ora_3492.trc:&lt;br /&gt;ORA-00600: 内部エラー・コード、引数: [evapls1],[],[],[],[],[],[],[]&lt;br /&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;AppsOpenbravo/config/Openbravo.properties　にて alter session している部分に追加することもできそうであるが&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;bbdd.sessionConfig=ALTER SESSION SET NLS_DATE_FORMAT='YYYY/MM/DD' NLS_NUMERIC_CHARACTERS='.,' &lt;span class="Apple-style-span"   style="  white-space: pre; font-family:-webkit-monospace;font-size:13px;"&gt;"&lt;a href="http://www.orafaq.com/parms/parm1457.htm"&gt;_optimizer_filter_pred_pullup&lt;/a&gt;"=false&lt;/span&gt;&lt;/blockquote&gt;&lt;span class="Apple-style-span"   style="  white-space: pre; font-family:-webkit-monospace;font-size:13px;"&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;このパラメータについては &lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 0);"&gt;alter system&lt;/span&gt;&lt;/span&gt; により再起動後も有効&lt;br /&gt;(use cost-based flter predicate pull up transformation)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;C:\Users\Administrator&gt;sqlplus&lt;br /&gt;&lt;br /&gt;SQL*Plus: Release 10.2.0.1.0 - Production on 土 5月 16 15:27:03 2009&lt;br /&gt;Copyright (c) 1982, 2005, Oracle.  All rights reserved.&lt;br /&gt;&lt;br /&gt;ユーザー名を入力してください: sys&lt;br /&gt;パスワードを入力してください:&lt;br /&gt;ERROR:&lt;br /&gt;ORA-28009: connection as SYS should be as SYSDBA or SYSOPER&lt;br /&gt;&lt;br /&gt;ユーザー名を入力してください: sys as sysdba&lt;br /&gt;パスワードを入力してください:&lt;br /&gt;&lt;br /&gt;Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production&lt;br /&gt;に接続されました。&lt;br /&gt;SQL&gt; alter system  set "_optimizer_filter_pred_pullup"=false;&lt;br /&gt;&lt;br /&gt;システムが変更されました。&lt;/pre&gt;&lt;pre&gt;shutdown immediate ; startup ;&lt;/pre&gt;&lt;pre&gt;SQL&gt; set lines 120&lt;/pre&gt;&lt;pre&gt;SQL&gt; show parameters _opt&lt;br /&gt;&lt;br /&gt;NAME                                 TYPE                   VALUE&lt;br /&gt;------------------------------------ ---------------------- --------&lt;br /&gt;_optimizer_filter_pred_pullup        boolean                FALSE&lt;br /&gt;filesystemio_options                 string&lt;br /&gt;object_cache_optimal_size            integer                102400&lt;br /&gt;plsql_optimize_level                 integer                2&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-7008489571983097448?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/7008489571983097448/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/ora-600evapls1.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7008489571983097448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/7008489571983097448'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/ora-600evapls1.html' title='ORA-600　[evapls1]'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1481120719338250170</id><published>2009-05-16T13:25:00.023+09:00</published><updated>2009-05-16T23:38:27.530+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>ReInstall - Clean up demodata</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg5RMnl4jrI/AAAAAAAABw8/oJqwmzQDkYI/s1600-h/1.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;Demodata を削除する&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Opebravo ERP は Oracleのユーザーを１つ追加している&lt;/div&gt;&lt;div&gt;&lt;blockquote&gt;SQL&gt; select username , created from dba_users order by created desc ;&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;Seed Data,Table&lt;br /&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;AppsOpenbravo\src-db\database\masterdata&lt;/div&gt;&lt;div&gt;AppsOpenbravo\src-db\database\model\tables&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;接続ユーザー名の設定&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;div&gt;AppsOpenbravo/config/Openbravo.properties:bbdd.user=Oracle_User&lt;/div&gt;&lt;div&gt;AppsOpenbravo/WebContent/WEB-INF/Openbravo.properties:bbdd.user=Oracle_User&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;データは Xml 形式であるため、 Oracleユーザーを変更して、再度 Installer を実行&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;Install : C:\OpenbravoERP24&lt;/div&gt;&lt;div&gt;C:\Program Files\Java\jdk1.6.0_13&lt;br /&gt;&lt;/div&gt;&lt;div&gt;C:\Program Files\ant\bin\antRun.bat&lt;br /&gt;&lt;/div&gt;&lt;div&gt;C:\Program Files\ant\bin\ant.cmd&lt;br /&gt;&lt;/div&gt;&lt;div&gt;C:\Program Files\ant\bin\ant.bat&lt;br /&gt;&lt;/div&gt;&lt;div&gt;C:\Program Files\apache-tomcat-6.0.18&lt;br /&gt;&lt;/div&gt;&lt;div&gt;C:\oraclexe\app\oracle\product\10.2.0\server\BIN&lt;br /&gt;&lt;/div&gt;&lt;div&gt;usernaem : erp&lt;/div&gt;&lt;div&gt;Context name : openbravo24&lt;/div&gt;&lt;div&gt;Demo Ddata : no&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; 　webapps に新しいフォルダ&lt;/div&gt;&lt;div&gt;  （apache-tomcat-6.0.18\webapps\&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;openbravo24.war&lt;/span&gt;&lt;/span&gt;）が作成されていることを確認し、    &lt;/div&gt;&lt;div&gt;&lt;s&gt;  uriworkermap.properties を更新(/openbravo24/*=jakarta) し、&lt;/s&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 102, 102);"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;webapps/openbravo24.war ファイルを　openbravo.war　に rename し、&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;  Tomcat を再起動。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;* openbravo.war と openbravo24.war ２つのプロセスが起動してしまっていた。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg5RMnl4jrI/AAAAAAAABw8/oJqwmzQDkYI/s1600-h/1.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_GRrE56uLdI8/Sg5RMnl4jrI/AAAAAAAABw8/oJqwmzQDkYI/s320/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336291885708775090" style="float: left; margin-top: 0px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; cursor: pointer; width: 320px; height: 204px; " /&gt;&lt;/a&gt;Openbravo の&lt;br /&gt;&lt;div&gt;Password を&lt;/div&gt;&lt;div&gt;変更&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ここで ユーザー指定で export しておく。&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;Export: Release 10.2.0.1.0 - Production on 土 5月 16 14:57:59 2009&lt;br /&gt;Copyright (c) 1982, 2005, Oracle.  All rights reserved.&lt;br /&gt;&lt;br /&gt;ユーザー名: erp&lt;br /&gt;パスワード:&lt;br /&gt;&lt;br /&gt;接続先: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production&lt;br /&gt;配列フェッチ・バッファ・サイズを入力してください: 4096 &gt;&lt;br /&gt;&lt;br /&gt;エクスポート・ファイル: EXPDAT.DMP &gt;&lt;br /&gt;&lt;br /&gt;2またはUを指定(デフォルト):ユーザー 、3またはTを指定:表 &gt; U&lt;br /&gt;&lt;br /&gt;権限をエクスポートしますか。 (yes/no): yes &gt;&lt;br /&gt;&lt;br /&gt;表データをエクスポートしますか。 (yes/no): yes &gt;&lt;br /&gt;&lt;br /&gt;エクステントを圧縮しますか。 (yes/no): yes &gt;&lt;br /&gt;&lt;br /&gt;JA16SJISTILDEキャラクタ・セットおよびAL16UTF16 NCHARキャラクタ・セットでエクスポートを実行します&lt;br /&gt;サーバーではAL32UTF8キャラクタ・セットを使用します(キャラクタ・セットの変換可能)&lt;br /&gt;. プリスキーマ・プロシージャ型オブジェクトとアクションをエクスポート中&lt;br /&gt;. ユーザーERPの外部関数ライブラリ名をエクスポート中&lt;br /&gt;. PUBLICタイプのシノニムをエクスポート中&lt;br /&gt;. プライベート・タイプのシノニムをエクスポート中&lt;br /&gt;. ユーザーERPのオブジェクト型定義をエクスポート中&lt;br /&gt;ERPのオブジェクトをエクスポートします...&lt;br /&gt;. データベース・リンクをエクスポート中&lt;br /&gt;. 順序番号をエクスポート中&lt;br /&gt;. クラスタ定義をエクスポート中&lt;br /&gt;. ERPの表をエクスポートします... 従来型パス経由...&lt;br /&gt;.. 表       AD_ACCOUNTINGRPT_ELEMENT       0&lt;br /&gt;.. 表                       AD_ALERT       0&lt;br /&gt;.. 表              AD_ALERTRECIPIENT       0&lt;br /&gt;.. 表                   AD_ALERTRULE      19&lt;br /&gt;.. 表               AD_ALERTRULE_TRL       0&lt;br /&gt;.. 表                  AD_ATTACHMENT       0&lt;br /&gt;.. 表               AD_AUXILIARINPUT      61&lt;br /&gt;.. 表                     AD_CALLOUT      81&lt;br /&gt;.. 表                   AD_CHANGELOG       0&lt;br /&gt;.. 表                      AD_CLIENT       1&lt;br /&gt;.. 表                  AD_CLIENTINFO       1&lt;br /&gt;.. 表                      AD_COLUMN    7925&lt;br /&gt;.. 表               AD_COLUMN_ACCESS       0&lt;br /&gt;.. 表                    AD_DATATYPE      15&lt;br /&gt;.. 表                AD_DEPENDENCIES       0&lt;br /&gt;.. 表                   AD_DEVELOPER     100&lt;br /&gt;.. 表                   AD_DIMENSION       4&lt;br /&gt;.. 表                     AD_ELEMENT    1756&lt;br /&gt;.. 表                 AD_ELEMENT_TRL       0&lt;br /&gt;.. 表                       AD_FIELD    7820&lt;br /&gt;.. 表                  AD_FIELDGROUP      35&lt;br /&gt;.. 表              AD_FIELDGROUP_TRL       0&lt;br /&gt;.. 表                   AD_FIELD_TRL       0&lt;br /&gt;.. 表                        AD_FORM      30&lt;br /&gt;.. 表                 AD_FORM_ACCESS      14&lt;br /&gt;.. 表                    AD_FORM_TRL       0&lt;br /&gt;.. 表               AD_HEARTBEAT_LOG       0&lt;br /&gt;.. 表              AD_ID_TRANSLATION       0&lt;br /&gt;.. 表                       AD_IMAGE       7&lt;br /&gt;.. 表                   AD_IMPFORMAT       3&lt;br /&gt;.. 表               AD_IMPFORMAT_ROW      43&lt;br /&gt;.. 表                    AD_LANGUAGE      97&lt;br /&gt;.. 表                        AD_MENU     429&lt;br /&gt;.. 表                    AD_MENU_TRL       0&lt;br /&gt;.. 表                     AD_MESSAGE    5713&lt;br /&gt;.. 表                 AD_MESSAGE_TRL       0&lt;br /&gt;.. 表                AD_MODEL_OBJECT    1360&lt;br /&gt;.. 表        AD_MODEL_OBJECT_MAPPING    2522&lt;br /&gt;.. 表                       AD_MONTH      12&lt;br /&gt;.. 表                        AD_NOTE       0&lt;br /&gt;.. 表                         AD_ORG       1&lt;br /&gt;.. 表                     AD_ORGINFO       0&lt;br /&gt;.. 表                   AD_PINSTANCE       0&lt;br /&gt;.. 表               AD_PINSTANCE_LOG       0&lt;br /&gt;.. 表              AD_PINSTANCE_PARA       0&lt;br /&gt;.. 表                  AD_PREFERENCE      12&lt;br /&gt;.. 表                     AD_PROCESS     293&lt;br /&gt;.. 表              AD_PROCESS_ACCESS      48&lt;br /&gt;.. 表                AD_PROCESS_PARA     266&lt;br /&gt;.. 表            AD_PROCESS_PARA_TRL       0&lt;br /&gt;.. 表          AD_PROCESS_SCHEDULING       0&lt;br /&gt;.. 表                 AD_PROCESS_TRL       0&lt;br /&gt;.. 表               AD_RECORD_ACCESS       0&lt;br /&gt;.. 表                   AD_REFERENCE     308&lt;br /&gt;.. 表               AD_REFERENCE_TRL       0&lt;br /&gt;.. 表                    AD_REF_LIST     734&lt;br /&gt;.. 表                AD_REF_LIST_TRL       0&lt;br /&gt;.. 表                  AD_REF_SEARCH      15&lt;br /&gt;.. 表           AD_REF_SEARCH_COLUMN      48&lt;br /&gt;.. 表                   AD_REF_TABLE      95&lt;br /&gt;.. 表           AD_REGISTRATION_INFO       1&lt;br /&gt;.. 表                        AD_ROLE       1&lt;br /&gt;.. 表              AD_ROLE_ORGACCESS       1&lt;br /&gt;.. 表                  AD_SCRIPT_SQL     670&lt;br /&gt;.. 表                    AD_SEQUENCE     444&lt;br /&gt;.. 表                     AD_SESSION       1&lt;br /&gt;.. 表                      AD_SYSTEM       1&lt;br /&gt;.. 表                 AD_SYSTEM_INFO       1&lt;br /&gt;.. 表                         AD_TAB     516&lt;br /&gt;.. 表                       AD_TABLE     443&lt;br /&gt;.. 表                AD_TABLE_ACCESS       0&lt;br /&gt;.. 表                     AD_TAB_TRL       0&lt;br /&gt;.. 表                        AD_TASK       8&lt;br /&gt;.. 表                 AD_TASK_ACCESS       7&lt;br /&gt;.. 表                    AD_TASK_TRL       0&lt;br /&gt;.. 表              AD_TEXTINTERFACES    1967&lt;br /&gt;.. 表          AD_TEXTINTERFACES_TRL       0&lt;br /&gt;.. 表                        AD_TREE       9&lt;br /&gt;.. 表                     AD_TREEBAR       0&lt;br /&gt;.. 表                    AD_TREENODE     438&lt;br /&gt;.. 表                  AD_TREENODEBP       1&lt;br /&gt;.. 表                  AD_TREENODEMM       0&lt;br /&gt;.. 表                  AD_TREENODEPR       1&lt;br /&gt;.. 表                        AD_USER       2&lt;br /&gt;.. 表                  AD_USER_ROLES       2&lt;br /&gt;.. 表                    AD_VAL_RULE     105&lt;br /&gt;.. 表                     AD_WF_NODE      61&lt;br /&gt;.. 表                 AD_WF_NODENEXT      48&lt;br /&gt;.. 表                 AD_WF_NODE_TRL       0&lt;br /&gt;.. 表                      AD_WINDOW     194&lt;br /&gt;.. 表               AD_WINDOW_ACCESS      75&lt;br /&gt;.. 表                  AD_WINDOW_TRL       0&lt;br /&gt;.. 表                    AD_WORKFLOW      11&lt;br /&gt;.. 表             AD_WORKFLOW_ACCESS       2&lt;br /&gt;.. 表                AD_WORKFLOW_TRL       0&lt;br /&gt;.. 表                     AT_COMMAND       0&lt;br /&gt;.. 表                 AT_COMMAND_TRL       0&lt;br /&gt;.. 表                        AT_LINE       0&lt;br /&gt;.. 表                    AT_ROLLOGIN       0&lt;br /&gt;.. 表                        AT_TEST       0&lt;br /&gt;.. 表                AT_TESTDOCUMENT       0&lt;br /&gt;.. 表            AT_TESTDOCUMENTLINE       0&lt;br /&gt;.. 表                 A_AMORTIZATION       0&lt;br /&gt;.. 表             A_AMORTIZATIONLINE       0&lt;br /&gt;.. 表                        A_ASSET       0&lt;br /&gt;.. 表                   A_ASSET_ACCT       0&lt;br /&gt;.. 表               A_ASSET_ADDITION       0&lt;br /&gt;.. 表                 A_ASSET_CHANGE       0&lt;br /&gt;.. 表             A_ASSET_CHANGE_AMT       0&lt;br /&gt;.. 表                  A_ASSET_GROUP       0&lt;br /&gt;.. 表             A_ASSET_GROUP_ACCT       0&lt;br /&gt;.. 表                    A_ASSET_USE       0&lt;br /&gt;.. 表                   C_ACCTSCHEMA       0&lt;br /&gt;.. 表           C_ACCTSCHEMA_DEFAULT       0&lt;br /&gt;.. 表           C_ACCTSCHEMA_ELEMENT       0&lt;br /&gt;.. 表                C_ACCTSCHEMA_GL       0&lt;br /&gt;.. 表             C_ACCTSCHEMA_TABLE       0&lt;br /&gt;.. 表                     C_ACCT_RPT       0&lt;br /&gt;.. 表               C_ACCT_RPT_GROUP       0&lt;br /&gt;.. 表                C_ACCT_RPT_NODE       0&lt;br /&gt;.. 表                     C_ACTIVITY       0&lt;br /&gt;.. 表                         C_BANK       0&lt;br /&gt;.. 表                  C_BANKACCOUNT       0&lt;br /&gt;.. 表             C_BANKACCOUNT_ACCT       0&lt;br /&gt;.. 表                C_BANKSTATEMENT       0&lt;br /&gt;.. 表            C_BANKSTATEMENTLINE       0&lt;br /&gt;.. 表                     C_BPARTNER       0&lt;br /&gt;.. 表            C_BPARTNER_DISCOUNT       0&lt;br /&gt;.. 表            C_BPARTNER_LOCATION       0&lt;br /&gt;.. 表               C_BP_BANKACCOUNT       0&lt;br /&gt;.. 表             C_BP_CUSTOMER_ACCT       0&lt;br /&gt;.. 表             C_BP_EMPLOYEE_ACCT       0&lt;br /&gt;.. 表                     C_BP_GROUP       0&lt;br /&gt;.. 表                C_BP_GROUP_ACCT       0&lt;br /&gt;.. 表               C_BP_SALCATEGORY       0&lt;br /&gt;.. 表               C_BP_TAXCATEGORY       0&lt;br /&gt;.. 表               C_BP_VENDOR_ACCT       0&lt;br /&gt;.. 表               C_BP_WITHHOLDING       0&lt;br /&gt;.. 表                       C_BUDGET       0&lt;br /&gt;.. 表                   C_BUDGETLINE       0&lt;br /&gt;.. 表                     C_CALENDAR       0&lt;br /&gt;.. 表                     C_CAMPAIGN       0&lt;br /&gt;.. 表                         C_CASH       0&lt;br /&gt;.. 表                     C_CASHBOOK       0&lt;br /&gt;.. 表                C_CASHBOOK_ACCT       0&lt;br /&gt;.. 表                     C_CASHLINE       0&lt;br /&gt;.. 表                      C_CHANNEL       0&lt;br /&gt;.. 表                       C_CHARGE       0&lt;br /&gt;.. 表                  C_CHARGE_ACCT       0&lt;br /&gt;.. 表                         C_CITY       0&lt;br /&gt;.. 表                   C_COMMISSION       0&lt;br /&gt;.. 表                C_COMMISSIONAMT       0&lt;br /&gt;.. 表             C_COMMISSIONDETAIL       0&lt;br /&gt;.. 表               C_COMMISSIONLINE       0&lt;br /&gt;.. 表                C_COMMISSIONRUN       0&lt;br /&gt;.. 表              C_CONVERSION_RATE       0&lt;br /&gt;.. 表                      C_COUNTRY     240&lt;br /&gt;.. 表                  C_COUNTRY_TRL     239&lt;br /&gt;.. 表                     C_CURRENCY     172&lt;br /&gt;.. 表                 C_CURRENCY_TRL     171&lt;br /&gt;.. 表                 C_DEBT_PAYMENT       0&lt;br /&gt;.. 表       C_DEBT_PAYMENT_BALANCING       0&lt;br /&gt;.. 表     C_DEBT_PAYMENT_BAL_REPLACE       0&lt;br /&gt;.. 表                     C_DISCOUNT       0&lt;br /&gt;.. 表                      C_DOCTYPE       1&lt;br /&gt;.. 表                  C_DOCTYPE_TRL       2&lt;br /&gt;.. 表                C_DP_MANAGEMENT       0&lt;br /&gt;.. 表            C_DP_MANAGEMENTLINE       0&lt;br /&gt;.. 表                      C_ELEMENT       0&lt;br /&gt;.. 表                 C_ELEMENTVALUE       0&lt;br /&gt;.. 表         C_ELEMENTVALUE_OPERAND       0&lt;br /&gt;.. 表             C_ELEMENTVALUE_TRL       0&lt;br /&gt;.. 表                  C_EXTERNALPOS       0&lt;br /&gt;.. 表         C_EXTERNALPOS_CATEGORY       0&lt;br /&gt;.. 表          C_EXTERNALPOS_PRODUCT       0&lt;br /&gt;.. 表                         C_FILE       0&lt;br /&gt;.. 表                       C_GLITEM       0&lt;br /&gt;.. 表                  C_GLITEM_ACCT       0&lt;br /&gt;.. 表                     C_GREETING       0&lt;br /&gt;.. 表                 C_GREETING_TRL       0&lt;br /&gt;.. 表                    C_INCOTERMS       0&lt;br /&gt;.. 表                C_INTERORG_ACCT       0&lt;br /&gt;.. 表                      C_INVOICE       0&lt;br /&gt;.. 表                  C_INVOICELINE       0&lt;br /&gt;.. 表    C_INVOICELINE_ACCTDIMENSION       0&lt;br /&gt;.. 表            C_INVOICELINE_OFFER       0&lt;br /&gt;.. 表              C_INVOICESCHEDULE       0&lt;br /&gt;.. 表                   C_INVOICETAX       0&lt;br /&gt;.. 表             C_INVOICE_DISCOUNT       0&lt;br /&gt;.. 表                     C_LOCATION       0&lt;br /&gt;.. 表                       C_NATION       0&lt;br /&gt;.. 表               C_NONBUSINESSDAY       0&lt;br /&gt;.. 表                        C_ORDER       0&lt;br /&gt;.. 表                    C_ORDERLINE       0&lt;br /&gt;.. 表              C_ORDERLINE_OFFER       0&lt;br /&gt;.. 表                     C_ORDERTAX       0&lt;br /&gt;.. 表                C_ORGASSIGNMENT       0&lt;br /&gt;.. 表                  C_PAYMENTTERM       0&lt;br /&gt;.. 表              C_PAYMENTTERMLINE       0&lt;br /&gt;.. 表              C_PAYMENTTERM_TRL       0&lt;br /&gt;.. 表                       C_PERIOD       0&lt;br /&gt;.. 表                C_PERIODCONTROL       0&lt;br /&gt;.. 表                        C_PHASE       0&lt;br /&gt;.. 表                      C_PROJECT       0&lt;br /&gt;.. 表                 C_PROJECTISSUE       0&lt;br /&gt;.. 表                  C_PROJECTLINE       0&lt;br /&gt;.. 表                 C_PROJECTPHASE       0&lt;br /&gt;.. 表              C_PROJECTPROPOSAL       0&lt;br /&gt;.. 表          C_PROJECTPROPOSALLINE       0&lt;br /&gt;.. 表          C_PROJECTPROPOSALTASK       0&lt;br /&gt;.. 表                  C_PROJECTTASK       0&lt;br /&gt;.. 表                  C_PROJECTTYPE       0&lt;br /&gt;.. 表                 C_PROJECT_ACCT       0&lt;br /&gt;.. 表               C_PROJECT_VENDOR       0&lt;br /&gt;.. 表             C_PROMISSORYFORMAT       0&lt;br /&gt;.. 表                       C_REGION     210&lt;br /&gt;.. 表                   C_REMITTANCE       0&lt;br /&gt;.. 表               C_REMITTANCELINE       0&lt;br /&gt;.. 表         C_REMITTANCE_PARAMETER       0&lt;br /&gt;.. 表              C_REMITTANCE_TYPE       0&lt;br /&gt;.. 表           C_REVENUERECOGNITION       0&lt;br /&gt;.. 表      C_REVENUERECOGNITION_PLAN       0&lt;br /&gt;.. 表       C_REVENUERECOGNITION_RUN       0&lt;br /&gt;.. 表              C_SALARY_CATEGORY       0&lt;br /&gt;.. 表         C_SALARY_CATEGORY_COST       0&lt;br /&gt;.. 表                  C_SALESREGION       0&lt;br /&gt;.. 表                 C_SERVICELEVEL       0&lt;br /&gt;.. 表             C_SERVICELEVELLINE       0&lt;br /&gt;.. 表                   C_SETTLEMENT       0&lt;br /&gt;.. 表                         C_TASK       0&lt;br /&gt;.. 表                          C_TAX       0&lt;br /&gt;.. 表                  C_TAXCATEGORY       0&lt;br /&gt;.. 表              C_TAXCATEGORY_TRL       0&lt;br /&gt;.. 表                   C_TAXPAYMENT       0&lt;br /&gt;.. 表                  C_TAXREGISTER       0&lt;br /&gt;.. 表              C_TAXREGISTERLINE       0&lt;br /&gt;.. 表             C_TAXREGISTER_TYPE       0&lt;br /&gt;.. 表       C_TAXREGISTER_TYPE_LINES       0&lt;br /&gt;.. 表                     C_TAX_ACCT       0&lt;br /&gt;.. 表                   C_TAX_REPORT       0&lt;br /&gt;.. 表                      C_TAX_TRL       0&lt;br /&gt;.. 表                     C_TAX_ZONE       0&lt;br /&gt;.. 表                          C_UOM       9&lt;br /&gt;.. 表               C_UOM_CONVERSION       0&lt;br /&gt;.. 表                      C_UOM_TRL       9&lt;br /&gt;.. 表             C_VALIDCOMBINATION       0&lt;br /&gt;.. 表                  C_WITHHOLDING       0&lt;br /&gt;.. 表             C_WITHHOLDING_ACCT       0&lt;br /&gt;.. 表                         C_YEAR       0&lt;br /&gt;.. 表                      FACT_ACCT       0&lt;br /&gt;.. 表                  FACT_ACCT_CFS       0&lt;br /&gt;.. 表                    GL_CATEGORY       1&lt;br /&gt;.. 表                     GL_JOURNAL       0&lt;br /&gt;.. 表                GL_JOURNALBATCH       0&lt;br /&gt;.. 表                 GL_JOURNALLINE       0&lt;br /&gt;.. 表                I_BANKSTATEMENT       0&lt;br /&gt;.. 表                     I_BPARTNER       0&lt;br /&gt;.. 表                   I_BUDGETLINE       0&lt;br /&gt;.. 表                 I_ELEMENTVALUE       0&lt;br /&gt;.. 表                    I_GLJOURNAL       0&lt;br /&gt;.. 表                    I_INVENTORY       0&lt;br /&gt;.. 表                      I_INVOICE       0&lt;br /&gt;.. 表                        I_ORDER       0&lt;br /&gt;.. 表                      I_PRODUCT       0&lt;br /&gt;.. 表                          I_TAX       0&lt;br /&gt;.. 表                         MA_CCP       0&lt;br /&gt;.. 表                   MA_CCP_GROUP       0&lt;br /&gt;.. 表                   MA_CCP_SHIFT       0&lt;br /&gt;.. 表                  MA_COSTCENTER       0&lt;br /&gt;.. 表         MA_COSTCENTER_EMPLOYEE       0&lt;br /&gt;.. 表               MA_COSTCENTER_IC       0&lt;br /&gt;.. 表          MA_COSTCENTER_MACHINE       0&lt;br /&gt;.. 表          MA_COSTCENTER_VERSION       0&lt;br /&gt;.. 表                   MA_GLOBALUSE       0&lt;br /&gt;.. 表                   MA_INCIDENCE       0&lt;br /&gt;.. 表               MA_INDIRECT_COST       0&lt;br /&gt;.. 表         MA_INDIRECT_COST_VALUE       0&lt;br /&gt;.. 表                     MA_MACHINE       0&lt;br /&gt;.. 表              MA_MACHINESTATION       0&lt;br /&gt;.. 表                MA_MACHINE_COST       0&lt;br /&gt;.. 表                MA_MACHINE_TYPE       0&lt;br /&gt;.. 表                 MA_MAINTENANCE       0&lt;br /&gt;.. 表             MA_MAINT_OPERATION       0&lt;br /&gt;.. 表                  MA_MAINT_PART       0&lt;br /&gt;.. 表           MA_MAINT_PERIODICITY       0&lt;br /&gt;.. 表             MA_MAINT_SCHEDULED       0&lt;br /&gt;.. 表                MA_MAINT_WORKER       0&lt;br /&gt;.. 表               MA_MEASURE_GROUP       0&lt;br /&gt;.. 表               MA_MEASURE_SHIFT       0&lt;br /&gt;.. 表                MA_MEASURE_TIME       0&lt;br /&gt;.. 表              MA_MEASURE_VALUES       0&lt;br /&gt;.. 表                     MA_PC_CASE       0&lt;br /&gt;.. 表                     MA_PC_TEST       0&lt;br /&gt;.. 表                    MA_PC_VALUE       0&lt;br /&gt;.. 表            MA_PERIODIC_CONTROL       0&lt;br /&gt;.. 表                 MA_PL_EMPLOYEE       0&lt;br /&gt;.. 表                       MA_PL_IC       0&lt;br /&gt;.. 表              MA_PL_INVOICELINE       0&lt;br /&gt;.. 表                  MA_PL_MACHINE       0&lt;br /&gt;.. 表                     MA_PROCESS       0&lt;br /&gt;.. 表                 MA_PROCESSPLAN       0&lt;br /&gt;.. 表         MA_PROCESSPLAN_VERSION       0&lt;br /&gt;.. 表                     MA_SECTION       0&lt;br /&gt;.. 表                    MA_SEQUENCE       0&lt;br /&gt;.. 表             MA_SEQUENCEPRODUCT       0&lt;br /&gt;.. 表           MA_SEQUENCE_EMPLOYEE       0&lt;br /&gt;.. 表                 MA_SEQUENCE_IC       0&lt;br /&gt;.. 表            MA_SEQUENCE_MACHINE       0&lt;br /&gt;.. 表                     MA_TOOLSET       0&lt;br /&gt;.. 表              MA_TOOLSETPROCESS       0&lt;br /&gt;.. 表                 MA_TOOLSETUSED       0&lt;br /&gt;.. 表                MA_TOOLSET_TYPE       0&lt;br /&gt;.. 表                  MA_WEEMPLOYEE       0&lt;br /&gt;.. 表                 MA_WEINCIDENCE       0&lt;br /&gt;.. 表             MA_WORKREQUIREMENT       0&lt;br /&gt;.. 表                 MA_WORKSTATION       0&lt;br /&gt;.. 表                     MA_WRPHASE       0&lt;br /&gt;.. 表              MA_WRPHASEPRODUCT       0&lt;br /&gt;.. 表                    MRP_PLANNER       0&lt;br /&gt;.. 表             MRP_PLANNINGMETHOD       0&lt;br /&gt;.. 表         MRP_PLANNINGMETHODLINE       0&lt;br /&gt;.. 表             MRP_RUN_PRODUCTION       0&lt;br /&gt;.. 表         MRP_RUN_PRODUCTIONLINE       0&lt;br /&gt;.. 表               MRP_RUN_PURCHASE       0&lt;br /&gt;.. 表           MRP_RUN_PURCHASELINE       0&lt;br /&gt;.. 表              MRP_SALESFORECAST       0&lt;br /&gt;.. 表          MRP_SALESFORECASTLINE       0&lt;br /&gt;.. 表                    M_ATTRIBUTE       0&lt;br /&gt;.. 表            M_ATTRIBUTEINSTANCE       0&lt;br /&gt;.. 表                 M_ATTRIBUTESET       1&lt;br /&gt;.. 表         M_ATTRIBUTESETINSTANCE       1&lt;br /&gt;.. 表                 M_ATTRIBUTEUSE       0&lt;br /&gt;.. 表               M_ATTRIBUTEVALUE       0&lt;br /&gt;.. 表                      M_COSTING       0&lt;br /&gt;.. 表               M_DISCOUNTSCHEMA       0&lt;br /&gt;.. 表           M_DISCOUNTSCHEMALINE       0&lt;br /&gt;.. 表                      M_FREIGHT       0&lt;br /&gt;.. 表              M_FREIGHTCATEGORY       0&lt;br /&gt;.. 表                        M_INOUT       0&lt;br /&gt;.. 表                    M_INOUTLINE       0&lt;br /&gt;.. 表         M_INTERNAL_CONSUMPTION       0&lt;br /&gt;.. 表     M_INTERNAL_CONSUMPTIONLINE       0&lt;br /&gt;.. 表                    M_INVENTORY       0&lt;br /&gt;.. 表                M_INVENTORYLINE       0&lt;br /&gt;.. 表                      M_LOCATOR       0&lt;br /&gt;.. 表                 M_LOCATOR_TYPE       0&lt;br /&gt;.. 表                          M_LOT       0&lt;br /&gt;.. 表                       M_LOTCTL       0&lt;br /&gt;.. 表                     M_MATCHINV       0&lt;br /&gt;.. 表                      M_MATCHPO       0&lt;br /&gt;.. 表                     M_MOVEMENT       0&lt;br /&gt;.. 表                 M_MOVEMENTLINE       0&lt;br /&gt;.. 表                        M_OFFER       0&lt;br /&gt;.. 表               M_OFFER_BPARTNER       0&lt;br /&gt;.. 表               M_OFFER_BP_GROUP       0&lt;br /&gt;.. 表              M_OFFER_PRICELIST       0&lt;br /&gt;.. 表                M_OFFER_PRODUCT       0&lt;br /&gt;.. 表               M_OFFER_PROD_CAT       0&lt;br /&gt;.. 表                 M_PERPETUALINV       0&lt;br /&gt;.. 表                    M_PRICELIST       0&lt;br /&gt;.. 表            M_PRICELIST_VERSION       0&lt;br /&gt;.. 表                      M_PRODUCT       0&lt;br /&gt;.. 表                   M_PRODUCTION       0&lt;br /&gt;.. 表               M_PRODUCTIONLINE       0&lt;br /&gt;.. 表               M_PRODUCTIONPLAN       0&lt;br /&gt;.. 表                 M_PRODUCTPRICE       0&lt;br /&gt;.. 表                 M_PRODUCT_ACCT       0&lt;br /&gt;.. 表                  M_PRODUCT_BOM       0&lt;br /&gt;.. 表             M_PRODUCT_CATEGORY       0&lt;br /&gt;.. 表        M_PRODUCT_CATEGORY_ACCT       0&lt;br /&gt;.. 表             M_PRODUCT_CUSTOMER       0&lt;br /&gt;.. 表                  M_PRODUCT_ORG       0&lt;br /&gt;.. 表                   M_PRODUCT_PO       0&lt;br /&gt;.. 表             M_PRODUCT_TEMPLATE       0&lt;br /&gt;.. 表                  M_PRODUCT_TRL       0&lt;br /&gt;.. 表                  M_PRODUCT_UOM       0&lt;br /&gt;.. 表                       M_RAPPEL       0&lt;br /&gt;.. 表              M_RAPPEL_BPARTNER       0&lt;br /&gt;.. 表               M_RAPPEL_INVOICE       0&lt;br /&gt;.. 表               M_RAPPEL_PRODUCT       0&lt;br /&gt;.. 表       M_RAPPEL_PRODUCTCATEGORY       0&lt;br /&gt;.. 表                 M_RAPPEL_SCALE       0&lt;br /&gt;.. 表                    M_REPLENISH       0&lt;br /&gt;.. 表                  M_REQUISITION       0&lt;br /&gt;.. 表              M_REQUISITIONLINE       0&lt;br /&gt;.. 表             M_REQUISITIONORDER       0&lt;br /&gt;.. 表                     M_SERNOCTL       0&lt;br /&gt;.. 表                      M_SHIPPER       0&lt;br /&gt;.. 表               M_STORAGE_DETAIL       0&lt;br /&gt;.. 表              M_STORAGE_PENDING       0&lt;br /&gt;.. 表                   M_SUBSTITUTE       0&lt;br /&gt;.. 表                  M_TRANSACTION       0&lt;br /&gt;.. 表                    M_WAREHOUSE       0&lt;br /&gt;.. 表               M_WAREHOUSE_ACCT       0&lt;br /&gt;.. 表            M_WAREHOUSE_SHIPPER       0&lt;br /&gt;.. 表                    M_WH_PERIOD       0&lt;br /&gt;.. 表           M_WH_PERIOD_INVOICED       0&lt;br /&gt;.. 表                  M_WH_SCHEDULE       0&lt;br /&gt;.. 表          M_WH_SCHEDULE_PRODUCT       0&lt;br /&gt;.. 表              R_CONTACTINTEREST       0&lt;br /&gt;.. 表                 R_INTERESTAREA       0&lt;br /&gt;.. 表                     R_MAILTEXT       0&lt;br /&gt;.. 表                      R_REQUEST       0&lt;br /&gt;.. 表                R_REQUESTACTION       0&lt;br /&gt;.. 表             R_REQUESTPROCESSOR       0&lt;br /&gt;.. 表       R_REQUESTPROCESSOR_ROUTE       0&lt;br /&gt;.. 表                  R_REQUESTTYPE       0&lt;br /&gt;.. 表             R_RESOURCEPLANCOST       0&lt;br /&gt;.. 表                  S_EXPENSETYPE       0&lt;br /&gt;.. 表                     S_RESOURCE       0&lt;br /&gt;.. 表           S_RESOURCEASSIGNMENT       0&lt;br /&gt;.. 表                 S_RESOURCETYPE       0&lt;br /&gt;.. 表          S_RESOURCEUNAVAILABLE       0&lt;br /&gt;.. 表                  S_TIMEEXPENSE       0&lt;br /&gt;.. 表              S_TIMEEXPENSELINE       0&lt;br /&gt;.. 表                     S_TIMETYPE       0&lt;br /&gt;.. 表                           TEST       0&lt;br /&gt;.. 表                 TIME_DIMENSION       0&lt;br /&gt;.. 表               T_INVENTORYVALUE       0&lt;br /&gt;.. 表                    T_REPLENISH       0&lt;br /&gt;.. 表              T_REPORTSTATEMENT       0&lt;br /&gt;.. 表                    T_SELECTION       0&lt;br /&gt;.. 表                   T_SELECTION2       0&lt;br /&gt;.. 表                        T_SPOOL       0&lt;br /&gt;. シノニムをエクスポート中&lt;br /&gt;. ビューをエクスポート中&lt;br /&gt;. ストアド・プロシージャをエクスポート中&lt;br /&gt;. 演算子をエクスポート中&lt;br /&gt;. 参照整合性制約をエクスポート中&lt;br /&gt;. トリガーをエクスポート中&lt;br /&gt;. 索引タイプをエクスポート中&lt;br /&gt;. ビットマップ、ファンクションおよび拡張可能索引をエクスポート中&lt;br /&gt;. ポスト可能なアクションをエクスポート中&lt;br /&gt;. マテリアライズド・ビューをエクスポート中&lt;br /&gt;. スナップショット・ログをエクスポート中&lt;br /&gt;. ジョブ・キューをエクスポート中&lt;br /&gt;. リフレッシュ・グループと子をエクスポート中&lt;br /&gt;. ディメンションをエクスポート中&lt;br /&gt;. ポストスキーマ・プロシージャ型オブジェクトとアクションをエクスポート中&lt;br /&gt;. 統計をエクスポート中&lt;br /&gt;エクスポートは警告なしで正常終了しました。&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://wiki.openbravo.com/wiki/How_to_Move_Openbravo"&gt;http://wiki.openbravo.com/wiki/How_to_Move_Openbravo&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://wiki.openbravo.com/wiki/Archive:ERP/2.40/Openbravo_Development_Environment_ODE"&gt;http://wiki.openbravo.com/wiki/Archive:ERP/2.40/Openbravo_Development_Environment_ODE&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1481120719338250170?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1481120719338250170/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/reinstall-for-cleanup-demodata.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1481120719338250170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1481120719338250170'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/reinstall-for-cleanup-demodata.html' title='ReInstall - Clean up demodata'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_GRrE56uLdI8/Sg5RMnl4jrI/AAAAAAAABw8/oJqwmzQDkYI/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-1377593634419577368</id><published>2009-05-16T12:55:00.007+09:00</published><updated>2009-05-16T22:52:44.250+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Hearbeat Configuration</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg45g13myZI/AAAAAAAABw0/acqjAORD52s/s1600-h/1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 300px;" src="http://2.bp.blogspot.com/_GRrE56uLdI8/Sg45g13myZI/AAAAAAAABw0/acqjAORD52s/s320/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5336265844859521426" /&gt;&lt;/a&gt;&lt;br /&gt;設定しようとすると Internal Error となる。&lt;br /&gt;%CATALINA_HOME%/logs のログファイルには&lt;br /&gt;エラーが出力されないため、 &lt;a href="http://iis.museum-in-cloud.com/joomla/index.php?option=com_content&amp;amp;view=article&amp;amp;id=106:troubleshootingphp&amp;amp;catid=23:phponwindowstrainingkit-rc1&amp;amp;Itemid=134"&gt;IIS の失敗ログを&lt;br /&gt;設定&lt;/a&gt;したところ、　Tomcat との接続自体が&lt;br /&gt;500 Internal Error となってしまったため&lt;br /&gt;Disable とする。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4254106428060406436-1377593634419577368?l=openbravo-erp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://openbravo-erp.blogspot.com/feeds/1377593634419577368/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/hearbeat-configuration.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1377593634419577368'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4254106428060406436/posts/default/1377593634419577368'/><link rel='alternate' type='text/html' href='http://openbravo-erp.blogspot.com/2009/05/hearbeat-configuration.html' title='Hearbeat Configuration'/><author><name>kwin786</name><uri>http://www.blogger.com/profile/11636870499038520354</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_GRrE56uLdI8/Sg45g13myZI/AAAAAAAABw0/acqjAORD52s/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4254106428060406436.post-6352649975877180832</id><published>2009-05-16T12:18:00.005+09:00</published><updated>2009-05-16T22:53:00.726+09:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install'/><title type='text'>Oracle XE　は推奨されていない</title><content type='html'>Express　Edtion の 4G の制限はERPでは現実的ではないが、制限事項を解った上で動かすことは問題ない。&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Verdana;font-size:13px;"&gt;&lt;a name="bugnotes" id="bugnotes"&gt;&lt;div id="bugnotes_open" style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; "&gt;&lt;table class="width100" cellspacing="1" style="width: 100%; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(204, 204, 204); border-right-color: rgb(204, 204, 204); border-bottom-color: rgb(204, 204, 204); border-left-color: rgb(204, 204, 204); "&gt;&lt;tbody&gt;&lt;tr class="bugnote" id="c3148" style="vertical-align: top; "&gt;&lt;td class="bugnote-note-public" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; text-align: left; background-color: rgb(232, 232, 232); color: rgb(0, 0, 0); width: 75%; "&gt;alter session set "_optimizer_filter_pred_pullup"=false;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/a&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="color: rgb(94, 94, 94);   line-height: 18px; font-family:Arial;font-size:13px;"&gt;&lt;blockquote&gt;&lt;span class="msgtitle"   style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; font-weight: bold; text-decoration: none; background-image: url(http://forge.openbravo.com/themes/openbravo/images/tools/forum/msgtitleicon.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; padding-left: 0px; line-height: 26px; color: rgb(66, 69, 71);   background-position: 0% 50%; font-family:Arial, Helvetica, sans-serif;font-size:14px;"&gt;&lt;a href="http://forge.openbravo.com/plugins/espforum/view.php?group_id=100&amp;amp;forumid=549511&amp;amp;topicid=6993723" style="text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="text-decoration: underline;"&gt;Oracle 10g express edition in Openbravo &lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class="msgdate" title="04/21/2009 12:55"    style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; font-weight: normal; text-decoration: none; padding-left: 10px;   font-family:Arial, Helvetica, sans-serif;font-size:10px;color:initial;"&gt;&lt;a href="http://forge.openbravo.com/plugins/espforum/view.php?group_id=100&amp;amp;forumid=549511&amp;amp;topicid=6993723"&gt;04/21/2009 12:55&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style=" ;font-size:13px;"&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 140%; font-size: 13px; color: rgb(94, 94, 94); font-family: Arial, Helvetica, sans-serif; "&gt;Do &lt;b&gt;not&lt;/b&gt; use Oracle XE 10g. It's 4GB storage limitation makes it useless for heavy development in a few days, and it has a &lt;a rel="nofollow" title="https://issues.openbravo.com/view.php?id=2591" class="external text" href="https://issues.openbravo.com/view.php?id=2591" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; font-weight: normal; color: rgb(88, 166, 24); "&gt;bug&lt;/a&gt; that happens usually when using Openbravo ERP. Therefore, the recommended version is &lt;i&gt;Standard Edition&lt;/i&gt; 11g (&gt;=11.1.0.6.0).&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 140%; font-size: 13px; color: rgb(94, 94, 94); font-family: Arial, Helvetica, sans-serif; "&gt;Source:&lt;a href="http://wiki.openbravo.com/wiki/Development_Stack_Setup" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; font-weight: normal; color: rgb(88, 166, 24); "&gt;http://wiki.openbravo.com/wiki/Development_Stack_Setup&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-hei
