Bapi_salesorder_change alt UOM not updating

Hello gurus,
I am using BAPI_SALESORDER_CHANGE to change the sales order items data .
In that i am passing Denominator (Divisor) for Conversion of Sales Qty and Numerator (factor) for conversion of sales quantity
values to bapi structure fileds
bapisditm-sales_unit = 'KG'
'bapisditm-salqtyden','bapisditm-salqtynum'
bapisditmx-salqtyden  = 'X',bapisditmx-salqtynum  = 'X' update flags.
but the given values are not updating.it is updating what we define in the alternative uom values in unit of measure tab of mm01 transaction.
kindly look into this.
thanks in advance,
padmaja.

Hi
Use the BAPI
BAPI_TRANSACTION_COMMIT
Regards
Sagar

Similar Messages

  • BAPI_SALESORDER_CHANGE - not updating ITEM CATEGORY(VBAP-PSTYV)

    Hi all,
    I have used bapi to change sales order  but the Item category(pstyv) is not updating .
    please tell me whether it needs to be passed to the bapi structure , if passed then how to retrieve (table) the item cateogry(pstyv) for the material.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
                EXPORTING
                  salesdocument               = e_vbeln
                 ORDER_HEADER_IN             = wa_hdr
                  order_header_inx           = wa_hdrx
                tables
                  return                     = i_ret
                 ORDER_ITEM_IN               = i_item
                 ORDER_ITEM_INX              = i_itemx
                 SCHEDULE_LINES              = i_sch
                 SCHEDULE_LINESx             = i_schx
                  EXTENSIONIN                = i_parex.
              endif.
    please help me out.

    Hi,
    I think if you use FM BAPI_SALESORDER_CHANGE, you have to explicitly specify the field and its value you want to change. So put the value you want in the field ORDER_ITEM_IN-ITEM_CATEG and also "X" to ORDER_ITEM_INX-ITEM_CATEG and see what happen.
    Hope it helps,
    Chang

  • BAPI_SALESORDER_CHANGE field REF_DOC (VGBEL) not updated

    Hi,
    I use BAPI BAPI_SALESORDER_CHANGE to update link between sales order and contract. It means updated field VGBEL (for VBAK and VBAP)
    It works fine for sales order header : VBAK-VGBEL is updated.
    But it doesn't work for VBAP-VGBEL.
    I have tried to update other fields on vbap with the BAPI and it works fine.
    I copy bellow source code used (it is a test program)
    Do you have any ideas why VGBEL is not updated?
    thanks in advance for your help.
    Luc
    source code:
    REPORT ZLM01 .
    tables vbak.
    Tables and structures used in BAPI
    DATA : wt_order_header_in  LIKE bapisdh1,      " Order Header Fields
           wt_order_header_inx LIKE bapisdh1x.   " Order Header checkbox
    DATA : t_bapiret            LIKE bapiret2   OCCURS 0 WITH HEADER LINE.
    DATA : t_bapiret2           LIKE bapiret2   OCCURS 0 WITH HEADER LINE.
    DATA : s_bapiret2           LIKE bapiret2   OCCURS 0 WITH HEADER LINE.
    DATA : wt_order_item_in    LIKE bapisditm  OCCURS 0 WITH HEADER LINE.
    DATA : wt_order_item_inx   LIKE bapisditmx OCCURS 0 WITH HEADER LINE.
    DATA : wt_partnerchange    LIKE bapiparnrc OCCURS 0 WITH HEADER LINE.
    DATA : wt_schedule_in      LIKE bapischdl  OCCURS 0 WITH HEADER LINE.
    DATA : wt_schedule_inx     LIKE bapischdlx OCCURS 0 WITH HEADER LINE.
    DATA : wt_sales_text       LIKE bapisdtext OCCURS 0 WITH HEADER LINE.
    clear : wt_order_header_in , wt_order_header_inx, t_bapiret2.
    Header
    wt_order_header_inx-updateflag = 'U'.
    wt_order_header_in-refdoc_cat  = 'G'.
    wt_order_header_inx-refdoc_cat = 'X'.
    wt_order_header_in-ref_doc     = '0040001508'.
    wt_order_header_inx-ref_doc    = 'X'.
    *ligne 1
    wt_order_item_in-itm_number  = '000010'.
    wt_order_item_inx-itm_number = '000010'.
    wt_order_item_inx-updateflag = 'U'.
    wt_order_item_in-ref_doc     = '0040001508'.
    wt_order_item_inx-ref_doc    = 'X'.
    wt_order_item_in-ref_doc_it     = '000010'.
    wt_order_item_inx-ref_doc_it    = 'X'.
    append wt_order_item_in.
    append wt_order_item_inx.
    call function 'BAPI_SALESORDER_CHANGE'
         EXPORTING
              salesdocument    = '0000025246'
              order_header_in  = wt_order_header_in
              order_header_inx = wt_order_header_inx
         TABLES
              order_item_in   = wt_order_item_in
              order_item_inx  = wt_order_item_inx
              return           = t_bapiret2.
    loop at t_bapiret2.
    write :/ t_bapiret2.
    endloop.
    call function 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
              wait   = 'X'
         IMPORTING
              return = s_bapiret2.
    move-corresponding s_bapiret2 to t_bapiret.
    append t_bapiret. clear t_bapiret.

    i give one example :
    pass SCHEDULE_LINES .
    REPORT  ZSALESORDER_CHANGE MESSAGE-ID 38.
    Selection Screen Definitions *
    PARAMETERS: p_vbeln TYPE vbap-vbeln OBLIGATORY, "Order Number
    p_posnr TYPE vbap-posnr OBLIGATORY, "Order Item
    p_etenr TYPE vbep-etenr OBLIGATORY, "Schedule Line
    p_reqqty TYPE bapischdl-req_qty OBLIGATORY. " Order Qty
    Internal Tables/Structures/Variables for calling BAPI. *
    DATA: i_hdr TYPE bapisdh1,
    i_hdrx TYPE bapisdh1x,
    i_ret TYPE bapiret2 OCCURS 0 WITH HEADER LINE,
    wa_ret TYPE bapiret2.
    DATA: BEGIN OF i_sched OCCURS 10.
    INCLUDE STRUCTURE bapischdl.
    DATA: END OF i_sched.
    DATA: BEGIN OF i_schedx OCCURS 10.
    INCLUDE STRUCTURE bapischdlx.
    DATA: END OF i_schedx.
    START-OF-SELECTION Event *
    START-OF-SELECTION.
    *" Initialize internal tables.
    REFRESH: i_sched, i_schedx, i_ret.
    CLEAR: i_sched, i_schedx, i_ret.
    *" Fill required ORDER_HEADER_IN data.
    i_hdrx-updateflag = 'U'.
    *" Fill required SCHEDULE_LINES data.
    i_sched-itm_number = p_posnr.
    i_sched-sched_line = p_etenr.
    i_sched-req_qty = p_reqqty.
    i_schedx-updateflag = 'U'.
    i_schedx-itm_number = p_posnr.
    i_schedx-sched_line = p_etenr.
    i_schedx-req_qty = 'X'.
    APPEND i_sched.
    APPEND i_schedx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = p_vbeln
    order_header_in = i_hdr
    order_header_inx = i_hdrx
    TABLES
    return = i_ret
    schedule_lines = i_sched
    schedule_linesx = i_schedx.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    LOOP AT i_ret.
    WRITE / i_ret-message.
    ENDLOOP.

  • Sale Order change BAPI - Storage loc not updated

    Hi Everybody,
    Iam using "BAPI_SALESORDER_CHANGE", to change the sale order items.
    First iam calling above bapi with switch B, for new pricing & then second time for material change.
    When i change any material number, it is getting updated correctly.
    But the storage location, even though iam passing in the bapi it is not updated, & is blank - updation flag is also passed.
    When i execute sale order change again it is updated - ie, for any material change for first bapi call, storage loc is not updated - for 2nd bapi call storage loc is updation - for same input in both the cases.
    Is there any way to update the storage loc is first call of sales order change bapi.
    Below is the parameters iam passing in bapi :
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = LS_SALESDOCUMENT
          ORDER_HEADER_IN    = LT_HEADER_IN
          ORDER_HEADER_INX   = LT_HEADER_X
        TABLES
          RETURN                            = LT_RETURN
          ORDER_ITEM_IN               = LT_ITEMS
          ORDER_ITEM_INX             = LT_ITEM_X
          ORDER_CFGS_REF          = LT_CFGS_REF
          ORDER_CFGS_INST         =  LT_PARTS
          ORDER_CFGS_VALUE     = LT_VALUES
          ORDER_CFGS_BLOB        = LT_CUBLOB
          ORDER_CFGS_VK            = LT_CUVK
          ORDER_CFGS_REFINST   = LT_CUREF
          SCHEDULE_LINES            = LT_SCHEDULE_L
          SCHEDULE_LINESX         = LT_SCHEDULE_X
          ORDER_TEXT                   = LT_TEXT
          CONDITIONS_IN                = LT_CONDITION_L
          CONDITIONS_INX              = LT_CONDITION_X.
    Any help is appreciated.
    Regards,
    Nagarajan.J

    Hi,
    Storage location is updated only when same sale order bapi is called another time with required details.
    rgs,
    Nagarajan J

  • Remote file template not updating on website

    Hello I am very very new to dreamweaver and have been handed a website that I have to maintain and make changes to.
    The website uses a template called index with further nested templates as shown
    The index template contains the code for the Menu Bar and footer and although I have been able to make other updates and changes I am finding that any changes to the code on this template do not show up on the site. The strange thing is that both the local and remote code has updated as I would like it is just the website itself that is not changing. When I view the website source code it is different to the remote file code. I assume that the link between the two is somehow broken but I do not know how to fix it. Is there a trick to fixing such a problem or am I wrong about this being the problem?
    Here is the remote file code which is that same as the local code - I have out the code that is not updating in bold and underlined it:
    <body>
    <div class="container">
      <div class="header">
        <div id="header_top">
          <div id="text_only"><a href="http://www.genesi-fp7.eu/betsie/parser.pl">Text-only</a> </div>
           <div id="admin"><a href="../admin/index.php">admin</a> </div>
          <div id="search"><a href="../webpages/search/search.html">search</a></div>
          <div id="header_middle">
            <div id="logo_left"><img src="../images/500px-Flag_of_Europe.svg.png" alt="European Union" width="167" height="111" border="0" /></div>
            <div id="logo_middle"><img src="../images/Genesi_Logo.png" alt="GENESI" width="620" height="111" border="0" /></div>
            <div id="logo_right"><a href="http://cordis.europa.eu/home_en.html"><img src="../images/fp7.png" alt="Seventh Framework Programme" width="154" height="111" border="0" /></a></div>
          </div>
          <div id="header_bottom">
            <ul id="MainMenu" class="MenuBarHorizontal">
              <li><a href="../index.html">home</a> </li>
              <li><a href="../webpages/news/news.php">news</a></li>
    <li><a href="../webpages/programme/programme_wp1.html">programme</a></li>
    <li><a href="../webpages/consortium/consortium_0.html">consortium</a></li>
    <li><a href="../webpages/downloads/downloads.php">downloads</a></li>
    <li><a href="../webpages/links/links.html">links</a></li>
              <li><a href="../webpages/contact/contact.html">Contact</a></li>
            </ul>
          </div>
        </div>
        <!-- end .header --></div>
      <!-- TemplateBeginEditable name="mainSection" -->
      <div class="mainSection">
        <h1>here is the main section </h1>
      </div>
      <!-- TemplateEndEditable -->
      <div class="footer">
        <div id="footer_top">This project is co-financed by the <a href="http://ec.europa.eu/index_en.htm">European Commission</a> and made possible within the <a href="http://cordis.europa.eu/fp7/home_en.html">VII Framework Programme</a></div>
        <div id="footer_middle">Page maintained by <a href="mailto:[email protected]">Molly Buckingham</a> &middot; Last update: <!-- #BeginDate format:En2 -->03-Apr-2013<!-- #EndDate -->
        </div>
        <div id="footer_bottom">
          <div>&copy; 2012 <a href="../webpages/consortium/consortium_1.html">G.EN.ESI Consortium</a> &middot; <a href="../webpages/footer/Disclaimer.html">Disclaimer</a> &middot; <a href="../webpages/footer/privacy_notice.html">Privacy Statement</a></div>
        </div>
        <!-- end .footer --></div>
    And here is the source code from the website - again the code is underlined and in bold
    <!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div class="container">
      <div class="header">
        <div id="header_top">
          <div id="text_only"><a href="http://www.genesi-fp7.eu/betsie/parser.pl">Text-only</a> </div>
           <div id="admin"><a href="../../admin/index.php">admin</a> </div>
          <div id="search"><a href="../search/search.html">search</a></div>
          <div id="header_middle">
            <div id="logo_left"><img src="../../images/500px-Flag_of_Europe.svg.png" alt="European Union" width="167" height="111" border="0" /></div>
            <div id="logo_middle"><img src="../../images/Genesi_Logo.png" alt="GENESI" width="620" height="111" border="0" /></div>
            <div id="logo_right"><a href="http://cordis.europa.eu/home_en.html"><img src="../../images/fp7.png" alt="Seventh Framework Programme" width="154" height="111" border="0" /></a></div>
          </div>
          <div id="header_bottom">
            <ul id="MainMenu" class="MenuBarHorizontal">
              <li><a href="../../index.html">home</a> </li>
              <li><a href="../news/news.php">news</a></li>
    <li><a href="../programme/programme_wp1.html">programme</a></li>
    <li><a href="consortium_1.html">consortium</a></li>
    <li><a href="../downloads/downloads.php">downloads</a></li>
    <li><a href="../links/links.html">links</a></li>
              <li><a href="../contact/contact.html">Contact</a></li>
            </ul>
          </div>
        </div>
        <!-- end .header --></div>
      <div class="mainSection">
        <div class="SubMenuBar">
          <ul id="SubMenu" class="MenuBarVertical">
             <li><a href="consortium_1.html">Universit&agrave; Politecnica Delle Marche</a></li>
          <li><a href="consortium_2.html">Granta Design Ltd</a></li>
          <li><a href="consortium_3.html">Faber s.p.a.</a></li>
          <li><a href="consortium_4.html">Sibuet Environnement</a></li>
          <li><a href="consortium_5.html">Bonfiglioli Vectron Gmbh</a></li>
          <li><a href="consortium_6.html">ENEA</a></li>
          <li><a href="consortium_7.html">University of Bath</a></li>
          <li><a href="consortium_8.html">Grenoble Institute of Technology</a></li>
          </ul>
        </div>
        <!-- InstanceBeginEditable name="content" -->
        <div class="content">
          <h1><strong>The Università Politecnica delle Marche</strong></h1>
          <p><img src="../../images/delle_Marche.jpg" alt="The Università Politecnica delle Marche" width="142" height="142" />The Università Politecnica delle Marche(UNIVPM)  is situated in the Marche Region (area of  Ancona) that is the one of most important European industrial districts related  to the household appliances, in fact many European leader companies such as  Indesit , Elica, Ariston TG, Faber, and many others, have their headquarters  there. Thanks to this geographical position UNIVPM has many collaborations with  these companies and it has matured a vast skill on research topics related to  the household appliances field. UNIVPM has 5 faculties, 550 professors (the  largest is the Engineering Faculty with 180 professors), 12 technical Departments  and 17,000 students; it participates to 23 academic spin-off. The central administration  of UNIVPM has a management department which gives support to technical departments  in European project set up, negotiation and administration of the grant  agreement, draft and negotiation of the consortium agreement as well as project  financial reporting. In this project will be involved the Department of  Mechanics that has a remarkable experience on European Projects since it has  been coordinator of 6th and 7th FP projects and it is involved in 9 active  European projects.  In particular, UNIVPM  coordinates the G.EN.ESI project from an administrative and technical point of  view.</p>
          <p>The scientific contact at the Università Politecnica delle Marche for the G.EN.ESI  project is Prof. Michele Germani. </p>
        </div>
        <!-- InstanceEndEditable --></div>
          <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("SubMenu", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
      </script>
      <div class="footer">
        <div id="footer_top">This project is co-financed by the <a href="http://ec.europa.eu/index_en.htm">European Commission</a> and made possible within the <a href="http://cordis.europa.eu/fp7/home_en.html">VII Framework Programme</a></div>
        <div id="footer_middle">Page maintained by <a href="mailto:[email protected]">Chunlei Li</a> &middot; Last update: <!-- #BeginDate format:En2 -->25-Apr-2012<!-- #EndDate -->
        </div>
        <div id="footer_bottom">
          <div>&copy; 2012 <a href="consortium_1.html">G.EN.ESI Consortium</a> &middot; <a href="../footer/Disclaimer.html">Disclaimer</a> &middot; <a href="../footer/privacy_notice.html">Privacy Statement</a></div>
        </div>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MainMenu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Thank you in advance for your help

    Jon Fritz that did actually work for some of the pages but not others. I upadted each invidivual page, except the main page as I have not finished the content and now some of the pages are acting strangely.
    Here is the website http://www.genesi-fp7.eu/index.html
    As you can see every page except the 'Contacts' and 'Links' page is now reading the correct code when you click on the 'Consortium' tab. The strange thing however is that the footer has updated on the 'Links' page suggesting that this part of the template has updated. Both these pages are based on the Index-misc nested template. The code is copied here:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <link href="../styles/genesi.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/MainMenu.css" rel="stylesheet" type="text/css" />
    <link href="../SpryAssets/SubMenu.css" rel="stylesheet" type="text/css" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="google-site-verification" content="3L2ZN1aLnNO1X__brL1UzpHsgkiL7NdjWT8oJnAxF64" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>G.EN.ESI</title>
    <!-- InstanceEndEditable -->
    <!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <!-- InstanceBeginEditable name="head" -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div class="container">
      <div class="header">
        <div id="header_top">
          <div id="text_only"><a href="http://www.genesi-fp7.eu/betsie/parser.pl">Text-only</a> </div>
           <div id="admin"><a href="../admin/index.php">admin</a> </div>
          <div id="search"><a href="../webpages/search/search.html">search</a></div>
          <div id="header_middle">
            <div id="logo_left"><img src="../images/500px-Flag_of_Europe.svg.png" alt="European Union" width="167" height="111" border="0" /></div>
            <div id="logo_middle"><img src="../images/Genesi_Logo.png" alt="GENESI" width="620" height="111" border="0" /></div>
            <div id="logo_right"><a href="http://cordis.europa.eu/home_en.html"><img src="../images/fp7.png" alt="Seventh Framework Programme" width="154" height="111" border="0" /></a></div>
          </div>
          <div id="header_bottom">
            <ul id="MainMenu" class="MenuBarHorizontal">
              <li><a href="../index.html">home</a> </li>
              <li><a href="../webpages/news/news.php">news</a></li>
    <li><a href="../webpages/programme/programme_wp1.html">programme</a></li>
    <li><a href="../webpages/consortium/consortium_0.html">consortium</a></li>
    <li><a href="../webpages/downloads/downloads.php">downloads</a></li>
    <li><a href="../webpages/links/links.html">links</a></li>
              <li><a href="../webpages/contact/contact.html">Contact</a></li>
            </ul>
          </div>
        </div>
        <!-- end .header --></div>
      <!-- InstanceBeginEditable name="mainSection" -->
      <div class="mainSection">
        <div class="SubMenuBar"><!-- TemplateBeginEditable name="subMenu" -->
          <ul id="SubMenu" class="MenuBarVertical">
            <li><a href="#">MISC</a></li>
          </ul>
        <!-- TemplateEndEditable --></div>
        <!-- TemplateBeginEditable name="content" -->
        <div class="content">
          <h1>Introduction to the G.EN.ESI Project</h1>
          <p>The sustainability of industrial products, particularly  household appliances, is an important issue today.  Energy consumption in the  residential/domestic sector is about 20% of world consumption, and associated  greenhouse gas emissions exceed 35%.   Household appliances contribute greatly to these values and thus require  particular attention as far as sustainability is concerned.</p>
          <p>It is well known that decisions taken during the early  design of products are very important in determining total product cost.  It is possible to hypothesize the same for  environmental impacts – i.e. the sustainability of a product is largely  determined during the early design stage. In order to allow designers to make  well-informed decisions, new design methods and tools are needed to provide the  basis for determining the degree of sustainability of a given product or  process.  Many eco-design procedures and  tools have been developed but they are often far from a practical day-by-day  application in company engineering departments, and they are not well  integrated with computer-aided design tools.   This project wants to make up for this limitation and to develop an eco-design  methodology (called G.EN.ESI) and a related software design tool (called the  G.EN.ESI platform) able to help product designers in ecological design choices,  without losing sight of cost and typical practicalities of industry. The  software platform will propose a guided process towards eco-design among  several design choices based on the different scenarios of product lifecycle.  The proposed approach will be applied to the household appliance field but it  can be easily extended to other mechatronic products.</p>
          <p>The project started in February 2012 and will continue until  January 2015.</p>
        </div>
        <!-- TemplateEndEditable --></div>
          <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("SubMenu", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
      </script>
      <!-- InstanceEndEditable -->
      <div class="footer">
        <div id="footer_top">This project is co-financed by the <a href="http://ec.europa.eu/index_en.htm">European Commission</a> and made possible within the <a href="http://cordis.europa.eu/fp7/home_en.html">VII Framework Programme</a></div>
        <div id="footer_middle">Page maintained by <a href="mailto:[email protected]">Molly Buckingham</a> &middot; Last update: <!-- #BeginDate format:En2 -->03-Apr-2013<!-- #EndDate -->
        </div>
        <div id="footer_bottom">
          <div>&copy; 2012 <a href="../webpages/consortium/consortium_1.html">G.EN.ESI Consortium</a> &middot; <a href="../webpages/footer/Disclaimer.html">Disclaimer</a> &middot; <a href="../webpages/footer/privacy_notice.html">Privacy Statement</a></div>
        </div>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MainMenu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Murray do you suggest that I try and get rid of the nested templates or am I biting off more than I can chew after two days of self training?
    Thank you

  • DreamWeaver Template change not updating children webpages?

    Hi Group,
    Sorry for my newbie question here.
    I loaded an HTML webpage, and saved it out as a DreamWeaver Template file.
    I then created webpages from the template file (( File - New - Page From Template - Site - Template), and made sure that the "Update Page when Template Changes" check box was selected/checked.
    I then created several chldren webpages, and saved them as .html files.
    I decided to change the navbar system - part of the uneditiabel region in the template - by opening the template file and edit-ing that file, and then saving it as the same DreamWeaver template file.
    However, the webpages did Not Update to reflect the navbar changes in the template fle !??!???
    Can someone tell me what I'm doing wrong?
    I believe it is something that I'm doing incorrectly with DreamWeaver ..
    Here is the HTML if anyone is interested.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <!-- TemplateBeginEditable name="DocTitle" -->
    <title>CNC Joe's  WorkShop - - Home Page </title>
    <!-- TemplateEndEditable --> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link href="../style.css" rel="stylesheet" type="text/css" media="screen" />
    <!-- Keep the http-equiv meta tag for IE8 -->
      <meta http-equiv="X-UA-Compatible" content="IE=8" />
    <!-- Link the CSS file here -->
    <link rel="stylesheet" type="text/css" media="screen,projection" href="../style.css" />
    </head>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <body>
    <div id="wrapper">
    <a name="top"></a>
    <a href="index.html" target="_self" title="CNC-Joe's Home Page" >
    <img src="../joesworkshoplogo.gif" width="770px" height="300px" alt="CNC Joe's  WorkShop - Home Page" />
    </a>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -->
    <!-- BEGIN OF PULL DOWN MENU -->
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -->
    <div class="mainmenu">
    <ul>
          <li class="li_nc"><a href="index.html" target="_self" >Home</a></li>
          <li class="li_hc"><a href="cad.html" target="_self" >CAD</a><ul class="ul_ch">
             <li class="li_nc"><a href="cad_intellicad.html" target="_self" >IntelliCAD</a></li>
             <li class="li_nc"><a href="cad_draftsight.html" target="_self" >DraftSight</a></li>
             <li class="li_nc"><a href="cad_progesoft.html" target="_self" >Progesoft</a></li>
          </ul></li>
          <li class="li_hc"><a href="cam_html" target="_self" >CAM</a><ul class="ul_ch">
             <li class="li_nc"><a href="cam_mach3.html" target="_self" >Mach3</a></li>
             <li class="li_nc"><a href="cam_vcarve.html" target="_self" >V-Carve</a></li>
             <li class="li_nc"><a href="cam_cut3d.html" target="_self" >Cut 3D</a></li>
             <li class="li_nc"><a href="cam_bobcadcam.html" target="_self" >Bob-CAD-CAM</a></li>
             <li class="li_nc"><a href="cam_meshcam.html" target="_self" >Mesh CAM</a></li>
             <li class="li_nc"><a href="cam_deskcnc.html" target="_self" >Desk CNC</a></li>
          </ul></li>
          <li class="li_hc"><a href="projects.html" target="_self" >Projects</a><ul class="ul_ch">
             <li class="li_nc"><a href="projects_zzeroplate.html" target="_self" >Z Zero Plate</a></li>
             <li class="li_nc"><a href="projects_x0y0edgefinder.html" target="_self" >X0-Y0 Edge Finder</a></li>
             <li class="li_nc"><a href="projects_digitizingtouchprobe.html" target="_self" >Digitizing Touch Probe</a></li>
             <li class="li_nc"><a href="projects_millwebcam.html" target="_self" >Mill Web CAM</a></li>
             <li class="li_nc"><a href="projects_laseredgefinder.html" target="_self" >Laser Pointer Edge Finder</a></li>
             <li class="li_nc"><a href="projects_davidlaserscanner.html" target="_self" >David Laser Scanner</a></li>
          </ul></li>
          <li class="li_hc"><a href="reference.html" target="_self" >Reference</a><ul class="ul_ch">
             <li class="li_nc"><a href="ref_gcodes.html" target="_self" >G-codes</a></li>
             <li class="li_nc"><a href="ref_nema.html" target="_self" >NEMA Motor Info</a></li>
             <li class="li_nc"><a href="ref_vbearings.html" target="_self" >V-Bearings</a></li>
             <li class="li_nc"><a href="ref_linearguides.html" target="_self" >Linear Guides</a></li>
          </ul></li>
          <li class="li_hc"><a href="offtopictopics.html" target="_self" >Off-Topic Topics</a><ul class="ul_ch">
             <li class="li_nc"><a href="ott_backyardfoundry.html" target="_self" >BackYard Foundry</a></li>
             <li class="li_nc"><a href="ott_blacksmithing.html" target="_self" >BlackSmithing</a></li>
          </ul></li>
          <li class="li_nc"><a href="links.html" target="_self" >Links</a></li>
          <li class="li_nc"><a href="contact.html" target="_self" >Contact</a></li>
    </ul>
    </div>
    <!-- END OF PULL DOWN MENU -->
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -->
    <!-- END OF PULL DOWN MENU -->
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -->
    <!-- TemplateBeginEditable name="content" -->
    <h2>Projects: Digitizing Touch Probe:</h2>
    <ul>
    <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
        <li> </li>
    </ul>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ -->       
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ -->
    <!-- End of Editable Region - the rest is Boiler Plate -->       
    <!-- TemplateEndEditable -->  
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ -->
      <br />
      <p><a href="#top" >Back To Top...</a></p>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ -->
    <!-- Footer Region                                                                                    -->
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ -->
    <div id="footer">
    <hr />
      <p>
      <a href="http://validator.w3.org/check?uri=referer">
      <img class="logos" src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional"  height="31" width="88" /></a>
      <a href="http://jigsaw.w3.org/css-validator/check/referer">
       <img  style="border:0;width:88px;height:31px"
        class="logos" src="http://jigsaw.w3.org/css-validator/images/vcss"
        alt="Valid CSS!" />
      </a>
    </p>
      <h5><strong><i>
       This website is for educational purposes only. Any resemblance to any person - living or dead - is purely coincidental
      </i></strong></h5>    
      </div>
    </div><!-- end Div Wrapper -->
    </body>
    </html>

    Additional Info:
    No -I haven't been able to get the DW Template feature to work on other sites - this is my first application of it to a website (actually it's the whole reason for getting DreamWeaver... I know it works, I know that I'm doing something wrong.. I just don't know what it is...)
    All the .HTML files (index.html, cad.html, cam.html, etc. etc.)  are in the website's root directory.
    The Template file is in its own sub-directory folder named "Templates".
    Right now even the .css file is in the root directory....
    Thank You for trying to help me -  I greatly appreciate it.
    Joe

  • Template not updating pages on save

    I created a template, then created pages based on that template. I make a change to the template, save, it says it will update my 10 pages, then the log shows that 0 pages were updated. I check the pages, they didn't update. What's the problem? Why are my pages not updated?
    Thanks,
    KoffeeKat

    Are you working with valid code?
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Do you have an editable region in your Template's <head> tags?
    Can you post your Template code into a reply?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Home page weather display will not update how to fix this?

    On my home page, my.Yahoo, I have selected "weather" for one of the displays. In the past this display kept pace with the current day but now it is stuck on a day and will not update to the current day. I have re-booted, terminated FireFox, restarted it, turned the computer off and back on, and the weather still is stuck and will not update.

    A couple more suggestions:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • I can not update my phone because itunes says i am not connected to the internet, but i am connected

    I can not update my phone because itunes says i am not connected to the internet, but i am connected to the internet.

    Download the last IOS you need and install it.
    Download iOS 4.3.5 Links
    iOS 4.3.5 download (iPad)
    iOS 4.3.5 download (iPad 2) (WIFI)
    iOS 4.3.5 download (iPad 2) (GSM)
    iOS 4.3.5 download (iPhone 4) (GSM)
    iOS 4.3.5 download(iPhone 3GS)
    iOS 4.3.5 download (iPod touch 4th generation)
    iOS 4.3.5 download (iPod touch 3rd generation)
    Step 1: Download and install latest version of Apple iTunes
    Step 2: Sync your iPhone with iTunes
    Step 3: From iTunes sidebar, select your device (in devices section on sidebar)
    Step 4: Press and hold Shift key (Windows) or Alt key (for Mac) and click on “Update”.
    Step 5: Select the location of .ipsw file you want to restore or load on to iPhone
    Step 6: That’s all from your end, now iTunes will perform some automated steps to complete the installation. Your iPhone will restart once the progress is complete.
    Good luck !!

  • CS4- Pictures will not update until I choose a tool

    When I try to do anything to a picture the effect or change will not occur until I click on a tool.  Then it will instantly show the change I made.  Doesn't matter what tool I choose and doesn't matter what the change..i.e. sharpen....using a filter etc.  Also, for instance, if I choose unsharp mask (doesn't matter what I choose...this is just an example) the picture will not show in the preview window unless I choose the plus or minus symbol beside the 100% and will not show in the preview until I choose one also.  I've tried this on several different layers.  I already had the latest 11.0.1 I believe and have not updated or installed anything lately.  Did a complete virus scan.  My old drivers were working fine but updated to the new ones to try and see if it would help.....amd/ati radeon 3100.  Used shift + CNTL + ALT to clear my preferences....I have tried it with GL on and off.  In short I have tried everything I can think of.  Basically everything works perfectly except after you make any kind of change you have to click a tool or something else before you see the change.  Even clicking the little eye symbol beside each layer will not let you ...see or hide...that layer until you click the eye symbol and then click a tool. Sometimes on starting the application all the choices are greyed out....even exit....until I click a tool.   Anyone got any ideas?  Thanks for your help.  I don't want to have to resinstall...I am on vacation for the next 3 weeks and would like to be able to edit my pictures.

    av8rphoto wrote:
    I already had the latest 11.0.1 I believe
    Did you actually check?  (Help > About Photoshop)
    Re-installing  Photoshop from the DVD or saved download (and updating) is not such a mammoth task by the way.
    There was a similar snag reported some months ago, maybe a forum search would find the posting.

  • Do not update in qty for asset transaction

    Dear all,
    the system update the qty field in asset master data when transaction take effects. But there is any why that qty field in asset master data do not update  after transaction takes place like when transfer from one asset "a" to asset "b" with t code ABUMN.
    asset a with qty 1 and asset b with qty 2 in the master record,
    when transfer from a to b the system must not update the qty field in asset master data that the system updates to 3.
    How can the system do update qty ?????
    regards

    Hi,
    This is the standard behaviour of the system.
    If a transfer takes place from asset X to asset Y, then the system adds the sending asset's qty to receving asset's qty, only if the both UOM are same.
    Often users create an asset master with values in qty fields also, but that qty field should be blank only, since the qty will be added to it through asset transaction only.(if earlier qty is 0 and transaction qty is 1, then it would be 0+1=1)
    In your case you might have created your second asset with 2 qty and transfered 1 qty from sending asset, so the system added the both quantities in receiving asset. ( 1+2=3), as you are aware of this.
    Thanks,
    Srinu

  • IPhoto is not update events and photos ( make key photo)

    hi
    i erase all my computer data, and make a backup with time machine.
    and i restore all data again ..
    all works perfect and great.
    but iPhoto is not working good.
    here is a picture of my iphoto how looks like ...
    iPhoto is not updating all my events and pictures...
    it show the same picture .... and
    if i make a picture key frame to show on events ... is not working again ...
    please help ... what can I do. ?
    here is the picture ...
    some events working
    and some events not...
    and inside on an event .... the same problem
    some pictures working and some pitures not.
    thanks for any help.

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to rebuild the thumbnails. It can take 3 or 4 goes for this to work

  • Lighthouse password does not update on password change

    The Lighthouse password is not updating when a password is changed in AD by ctrl-alt-del and received by the JMS Listener adapter. All of the user's assigned resource passwords change, except Lighthouse. When the user has a capability, the Lighthouse password updates consistently.
    Using IDM 7.1.1.
    How can we get the Lighthouse password to update without a capability assigned to the user?
    Thanks,
    Richard

    WalterLaan wrote:
    I believe the GTK L&F feel ignores the background of components. ..I just checked on an Ubuntu Linux box (using the system PLAF) and confirmed your belief. I could set the FG to any color I wanted, but the BG stayed white.
    Edit 1:
    And I'd have done that when I first saw the post, if the OP had posted an SSCCE. ;-)
    Edited by: AndrewThompson64 on Nov 24, 2009 10:22 PM

  • Cinnamon launcher does not update on application install

    Cinnamon launcher does not update on application install. For example, when I do:
    pacman -S chromium
    Then chromium installs but it does not appear in the cinnamon launcher (search does not work as well). It only appears after I logout and log in again.
    Last edited by n3ziniuka5 (2015-06-02 19:16:44)

    This happens to me sometimes but only when Firefox updates, what I do is press "Alt + F2" and type "restart". This will restart cinnamon without closing any of your windows that you had, NOTE that typing reboot will reboot your system like when you type in the command line so dont confuse the two.

  • Mac time freezes and not updating

    After upgrading to osx yosemeti the mac time freezes frequently and not updating...I have to manually everytime to see the current time..

    System Preferences/Date & Time/Date & Time - is it set to Set date and Time automatically? If so, try the following.
    Do a backup.
    Quit the application.
    In Finder hold down the option/alt key while selecting the Go menu item. Select Library. Then go to Preferences/com.apple.systempreferences.plist. Move the .plist to your desktop.
    Restart and test. If it works okay, delete the plist from the desktop. 
    If the same, return the .plist to where you got it from, overwriting the newer ones.
    If you want to make your user library permanently visible, run the below command in Applications/Utilities/Terminal.
    chflags nohidden ~/Library/
    You will need to do that after any updates.

Maybe you are looking for

  • Need advice about ipod

    I have a problem with my nano. It doesn't turn off. I have had success each time by resetting it but haveto do it frequently (every few weeks). At what point should I send it back for a replacement? I still have 6 mo. on my extended warranty.

  • Best practise for my class problem

    Hello, I'm quite new to java and I want to implement this: 1. I have a frame class containing a splitpane with two panels jUpPanel (is up) and jDownPanel (is down in the splipane) dervied from JPanel. public class TestFrame extends JFrame { public JU

  • Moving pictures

    Hi everyone How do you move pictures from your camera roll to the picture folder ? Any other way than plugging into PC Tried creating a new folder but the stay in camera roll and deleting them in camera roll also deletes them in folder

  • Finding out what the other is on my iPad?

    what is the "other " storage on an ipad  it is taking up to much space and i don't know what is comprised of.

  • 10.2.0.1 client installation failed because of operating system version

    Hi Guys, When i tried to install oracle client 10.2.0.1 I encountered an error saying that the operating system must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2. I'm using RHEL 5, are there any ways to install 10.2.0.x clie