View cart adds another order?

Hi, We have a website that has the add to cart button. Today, I am trying to add the view cart button to the pages (I think I have to add them to all), but when I tested on the first and second pages I added them to, it adds another order.  Here are the pages I have added the view cart buttons to: http://snowblowerskids.com/asc0310-a/ http://snowblowerskids.com/asc1545-a/ So if you order a set of skids on one page, then another set on the next, then hit the view cart button, whatever page you are on, it adds another set to the order form. Thanks in advance for any help. LS

Hi
This is SAP standard functionality. Internally SAP sorts the order based on first column say (Line number / Catalog Product Number, etc..). Nothing much can done here.. I guess so.. 
Anyways, we can change the sort oder of the Shopping cart line items programmatically using BADI - BBP_DOC_CHANGE_BADI or using BBP_CATALOG_TRANSFER BADI. )
<b>P.S.: Read the standard documentation of the BADIs using SE18 Transaction.</b>
<u>Please go through the link below -></u>
Re: changing sort order of SC items?
<u>Other related link -></u>
Re: The Purpose of  "Renumber Items" button at PO Item data
Regards
- Atul

Similar Messages

  • Is there a good way to replace the "view cart" text with another text?

    I have this big issue i'm still stuck with, i hope someone can help me.
    I need to change the text "view cart" in the cart-summary module. I have learned that i can do this with javascript: http://forums.adobe.com/message/4409239#4409239
    But there are problems:
    When i use this javascript:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <script>
    $(function () {
      $(".cartSummaryLink").text("Afrekenen");
    $(function () {
      $(".cartLink").text("Winkelwagen is geleegd");
    </script>
    The "view cart" is replaced with "afrekenen".
    BUT:
    When i add another product in the large product layout the text "view cart" is back...
    When i delete a product in the cart  the "view cart" text is also back
    When i refres the page the "view cart" text is replaced again with "afrekenen"
    So i thought, to use some javascript to refresh the page when a product is added:
    <script type="text/javascript">
    function AddProductExtras(){
    document.location.reload(true);
    </script>
    This works but you can see that the text changes from "afrekenen" to "view cart" and back to "afrekenen" Also the page is rebuild again which is not a very good solution.  So here are my questions:
    Is there a better work around?
    If not, is there a way that when a product is deleted in the cart the page can also be refreshed?
    Thanks,
    Frank

    Hello Mario,
    Here's my site where i'm working on:
    http://grootaartseuronics.businesscatalyst.com/index.html
    The cartsummary module is located at the right sitebar.
    The code is:
    <div id="plh_winkelwagen">
    <div class="cart-summary">{module_shoppingcartsummary,vertical,}</div>
    </div>
    The CSS is:
    #plh_winkelwagen {
    float: right;
    width: 160px;
    height: 100px;
    margin: 20px;
    background-color: #FFC;
    background-image:url(../Images/Winkelmandje_nieuw_25.png);
    -webkit-border-radius: 15px; /* Safari */
    -webkit-border-radius: 15px; /* Safari */
    -moz-border-radius: 15px; /* Firefox */
    -moz-border-radius: 15px; /* Firefox */
    border-radius: 15px; /* CSS */
    border-radius: 15px; /* CSS3 */
    .shop-main .cart-summary {
    float: right;
    width: 40%;
    So with your solution I should remove the background plh_winkelwagen en create or put it in the a.cartsummarylink? Or should i keep the plh-winkelwagen and just add your solution. I can create a png the same size as the: winkelmandje_nieuw_25.png with the "afrekenen" text in it?
    Thanks,
    Frank

  • How to Add Sales order from one database to another database

    Hi All,
    I am trying to add sales order with sales order object.
    I have completed connectivity from one database to another database.
    but i am unable to post sales order with orders object.
    My code is
    ObjSales = objMain.objUtilities.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                ObjSales.DocDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.DocDueDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.TaxDate = Date.Parse(System.DateTime.Now().ToString("d"))
                ObjSales.CardCode = "C0006"
               ObjSales.Series = 92
                ObjSales.PaymentGroupCode = 3
                ObjSales.Comments = "vivek"
               ObjSales.Lines.Add()
               ObjSales.Lines.SetCurrentLine(1)
               ObjSales.Lines.ItemCode = "5127"
               ObjSales.Lines.Quantity = 100
               ObjSales.Lines.UnitPrice = 10
               ObjSales.Lines.WarehouseCode = "01"
                ObjSales.Lines.TaxCode = "0"
                ObjSales.Lines.DiscountPercent = "0.00"
                ObjSales.DocTotal = 1000
                 If ObjSales.Add <> 0 Then
                   objMain.objApplication.SetStatusBarMessage("Sales or Not Posted", SAPbouiCOM.BoMessageTime.bmt_Short, True)
                   Exit Sub
                else
                  objMain.objUtilities.ShowSuccessMessage("Sales Order Posted successfully")
                End If
    The above code is executing successfully.But the Sales order is not getting added.
    Thanks in advance.

    Hi Vivek,
    If the code you posted is not throwing any errors, then the order really does get created. Apparently just not to both databases, am I correct ?
    vivek.Y wrote:
    > I have completed connectivity from one database to another database.
    That means that apparently you have not gotten this bit right.
    Generally speaking if you want to create an order into two databases, you first need to connect to both databases and create separate order objects for each database. So you need to do this bit twice; once for each database. Something like this:
    ObjSales1 = objMain.objUtilities1.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    ObjSales2 = objMain.objUtilities2.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
    Then at the end you also need to add both objects separately:
    If ObjSales1.Add <> 0 Then
    etc.
    If ObjSales2.Add <> 0 Then
    etc
    Good luck,
    Johan

  • Add customer fields in Shopping cart and purchase order

    Hi,
    I have to add fields(moder of transport, country origin, country destination and more) in Shopping cart and purchase order in SRM system and remotle i have to update the same data in R/3 System.
    could you please guide how to add the fields in screen.
    regards
    Shakeer

    Hi
    We have done this type of requirement several times in our previous SRM Implementations.
    <b>You need to create an Append Structure in the Standard Structure to create the custom fields in your case.</b>
    <u>Refer this link below for details.</u>
    http://help.sap.com/saphelp_47x200/helpdata/en/cf/21eb61446011d189700000e8322d00/frameset.htm
    <b>Define the fields of the append structure. You can proceed as when creating a normal structure with two restrictions (see Creating Structures).
    The fields of an append structure must lie in the customer namespace, that is the field names must begin with ZZ or YY. This prevents conflicts with fields inserted in the table by SAP.</b>
    http://help.sap.com/saphelp_srm50/helpdata/en/5b/c9df3b6ac34b44e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/28/857a1867b52e4f8472c5d49209a675/frameset.htm
    <u>BBP_CUF_BADI_2 BADI will be used to control the properties (hide/unhide, input/output enable or disable) for those customer fields you created in the above append structures.
    BBP_DOC_CHANGE_BADI for defaulting or modifying the customer field contents, incase required.
    BBP_DOC_CHECK_BADI for issuing customer messages for the customer field contents (incase data is entered incorrectly) , incase required.</u>
    Let me know incase you face any issues.
    Regards
    - Atul

  • View Cart Link Missing

    I have no clue what I have done but my view cart link that shows up after adding something to the shopping cart is missing from the page. How do I get it back? How did I remove it? I am still relatively  new to this and keep stumblin gover silly things like this.

    Didn't help.
    Here's my CSS and link
    http://bffnew.businesscatalyst.com/home
    html,body {
              height: 100%;
              margin: 0;
    h2{
        color: #f7f7f7;
        font-size:30px;
    h3{
    color: #f7f7f7;  
    body{
              margin:0;
              font:13px/15px Arial, Helvetica, sans-serif;
              color:#000000;
              background:url(../images/BffNewBG.png) no-repeat;
              min-width:990px;
    img {border:0;}
    form, fieldset{
              margin:0;
              padding:0;
              border:0;
    input,textarea,
    select{
              font:100% Arial, Helvetica, sans-serif;
              vertical-align: middle;
    input[type=text], input[type=password], input[type=file], textarea{-webkit-appearance:none;}
    a{
              color:#0087e1;
              text-decoration:none;
              outline:none;
    a:hover{text-decoration:underline;}
    #wrapper{
              width:990px;
              margin:0 auto;
              min-height:100%;
    #header{
              height:1%;
              padding:12px 0 0;
              position:relative;
              z-index:1;
    #header:after{
              display:block;
              clear:both;
              content:'';
    .header-block{
              overflow:hidden;
              margin:0 0 31px;
    .logo{
              background:url(../images/logo.jpg) no-repeat;
              margin:0;
              float:left;
              overflow:hidden;
              width:82px;
              height:30px;
              text-indent:-9999px;
    .logo a{
              height:100%;
              display:block;
    .slogan{
              float:left;
              background:url(../images/sp.jpg) no-repeat 0 9px;
              padding:6px 0 3px 35px;
              margin:0 0 0 34px;
    .header-block ul{
              margin:0;
              padding:1px 0 0;
              list-style:none;
              overflow:hidden;
              float:right;
              font:21px/23px Arial, Helvetica, sans-serif;
              width:228px;
    .header-block li{
              float:left;
              background:url(../images/sp.jpg) no-repeat 0 6px;
              margin:0 1px 0 -1px;
              padding:0 14px 0 23px;
    .header-block li a{
              float:left;
              margin:3px 0 0;
    * +html .header-block li a{margin:1px 0 0;}
    .header-block li span{
              float:left;
              margin:3px 0 0;
    .cartSummaryLink,
    .cart-link{
              float:right;
              text-indent:-9999px;
              overflow:hidden;
              background:url(../images/myitems.jpg) no-repeat;
              width:22px;
              height:18px;
              margin:11px 0 0 14px;
    .cartSummaryLink{display:none;}
    .header-panel{
              background:url(../images/navigation.jpg) no-repeat;
              height:57px;
    .header-panel:after,
    .header-panel ul:after{
              display:block;
              clear:both;
              content:'';
    .header-panel ul{
              float:left;
              margin:0;
              padding:0;
              list-style:none;
              font:18px/20px Arial, Helvetica, sans-serif;
              text-transform:uppercase;
    .header-panel ul li{
              float:left;
              border-right:1px solid #dfdfdf;
              padding:2px 1px;
              position:relative;
              margin:0 1px 0 -1px;
    .header-panel ul li a {
              float:left;
              padding:21px 30px 0;
              height:32px;
              color:#333333;
    * +html .header-panel ul li a{
              padding:16px 30px 0;
              height:37px;
    .header-panel ul li:hover a,
    .header-panel ul li a:hover {
              background:#ececec;
              text-decoration:none;
    .header-panel ul li.home a {
              margin:-2px 0 0;
              height:32px;
              padding:23px 30px 0;
    * +html .header-panel ul li.home a{
              padding:18px 30px 0;
              height:35px;
    .header-panel ul li.home:hover a,
    .header-panel ul li.home a:hover {
              background:url(../images/homeHover.jpg) no-repeat;
    .header-panel ul li:hover{position:relative;}
    .header-panel ul li:hover ul{display:block;}
    .header-panel ul li ul{
              padding:0 15px 12px;
              position:absolute;
              top: 47px;
              background:#eaeaea;
              z-index:3;
              left:-1px;
              width:208px;
              display:none;
              margin:10px 0 0;
              border-top:1px solid #fff;
    .header-panel ul li ul li{
              float:none;
              border-right:0;
              padding:0;
              border-bottom:1px solid #e3e3e3;
              vertical-align:top;
              height:1%;
    .header-panel ul li ul li a{
              padding:10px 10px 9px;
              display:block;
              color:#666666;
              text-decoration:none;
              height:auto;
              font-size:12px;
              margin:0;
              background:none !important;
              float:none;
    .header-panel ul li ul li a:hover{
              background:#2489CC !important;
              color:#fff;
    .search-form{
              float:right;
              width:252px;
              height:25px;
              background:url(../images/search.png) no-repeat;
              margin:11px 33px 0 0;
              position:relative;
              padding:9px 0 0;
    .search-box{
              overflow:hidden;
              padding:0;
    .search-form .submit {
              float:left;
              width:16px;
              height:14px;
              background:url(../images/bSearch.png) no-repeat;
              border:none;
              text-indent:-9999px;
              line-height:0;
              padding:0;
              margin:2px 0 0 15px;
              cursor:pointer;
    .search-form .text {
              float:right;
              background:none;
              border:0;
              width: 195px;
              font-size:12px;
              color:#666;
              outline:none;
              padding:0;
              margin:0 15px 0 0;
    #main{
              overflow:hidden;
              padding:0 0 100px;
    .main-frame{
              background:#fff;
              border:1px solid #dfdfdf;
              border-top:0px;
              padding:32px 32px 43px;
              overflow:hidden;
    .gallery{
              position:relative;
              overflow:hidden;
              width:922px;
              border:1px solid #DEDEDE;
              margin:0 0 24px;
    .gallery-holder{
              position:relative;
              overflow:hidden;
              width:922px;
              height:287px;
    .gallery-holder ul{
              width:99999px;
              margin:0;
              padding:0;
              list-style:none;
    .gallery-holder ul li{
              float:left;
              width:922px;
              height:287px;
    .gallery-holder ul li img{display:block;}
    .switcher{
              position:absolute;
              right:26px;
              bottom:26px;
              background:url(../images/slideshow_violator.png) no-repeat;
              width:82px;
              height:24px;
              margin:0;
              padding:14px 0 0 16px;
              list-style:none;
    .switcher ul{
              margin:0;
              padding:0;
              list-style:none;
    .switcher li{
              float:left;
              margin:0 7px 0 0;
    .switcher li a{
              float:left;
              text-indent:-9999px;
              overflow:hidden;
              width:11px;
              height:11px;
              background:url(../images/slide_navigation_noactive.png) no-repeat;
    .switcher li a:hover,
    .switcher ul li a.active{
              background:url(../images/slide_navigation_hover.png) no-repeat;
    .main-holder{
              overflow:hidden;
              height:1%;
    #sidebar{
              float:left;
              width:230px;
              padding:8px 0 0;
    .sidebar-box{
              border:1px solid #e3e3e3;
              overflow:hidden;
              padding:0 0 5px;
              margin:0 0 32px;
    .sidebar-box h2{
              background:#f9f9f9 url(../images/tBox.jpg) 10px 13px no-repeat;
              padding:8px 0 6px 27px;
              font:19px/21px Arial, Helvetica, sans-serif;
              color:#333;
              margin:0 0 4px;
              border-bottom:1px solid #dfdfdf;
              text-transform:uppercase;
    .sidebar-box h2 a{color:#333;}
    .sidebar-box ul{
              margin:0;
              padding:0 12px 0 10px;
              list-style:none;
              overflow:hidden;
    .sidebar-box ul li{
              padding:1px 0;
              border-top:1px solid #e3e3e3;
              margin:-1px 0 1px;
    .sidebar-box ul li a{
              padding:11px 8px;
              display:block;
              color:#666666;
              text-decoration:none;
              font-size:12px;
    .sidebar-box ul li a:hover,
    .sidebar-box ul li.active a{
              color:#3F9FFF;
              background:#fbfafa;
    .sidebar-box ol{
              margin:0;
              padding:0 0 20px 29px;
              color:#666;
              counter-reset:section;
              list-style:none;
    .announcement-list{
              font:13px/18px Arial, Helvetica, sans-serif;
              padding:10px 13px;
    .announcement-list h3{
              margin:0 0 10px;
              font:bold 13px/15px Arial, Helvetica, sans-serif;
    .announcement-list h3 .date{
              display:block;
              margin:0;
    .announcement-list p{margin:0;}
    .sidebar-box ol li:before,
    .sidebar-box ol li .list-item-before {
              content:''counter(section)'.';
              counter-increment:section;
              margin:0 0 -16px -20px;
              position:relative;
              display:block;
              width:27px;
    .sidebar-box ol li{
               list-style-type:expression(
               function(t){
               t.runtimeStyle.listStyleType = 'none';
               t.insertAdjacentHTML('afterBegin','<span class="list-item-before">' + (++t.parentNode.IEcounter || (t.parentNode.IEcounter = 1)) + '. </span>');
               }(this)
    .sidebar-box ol li{margin:17px 0 0;}
    .sidebar-box ol li a{color:#1aade4;}
    #icons{
              overflow:hidden;
              padding:0 0 0 32px;
    #icons img{
              float:left;
              margin:0 3px 0 0;
    #content{
              float:right;
              width:664px;
              overflow:hidden;
    #content h2{
              font:24px/27px Arial, Helvetica, sans-serif;
              background:url(../images/tContent.jpg) no-repeat 0 6px;
              padding:3px 0 0 28px;
              margin:0 0 26px;
              text-transform:uppercase;
    .system-message h1,
    .system-error-message h1,
    .user-info h2,
    .shop-checkout h1,
    .announcement-details h1{
              font:24px/27px Arial, Helvetica, sans-serif;
              margin:0 0 26px;
              text-transform:uppercase;
              color:#2489CC;
    .products,
    .productfeaturelist,
    .productSmall{
              overflow:hidden;
              margin:0;
              padding:6px 0 0;
              list-style:none;
              width:990px;
    .shop-main ul.productSmall{margin:0 0 30px;}
    #content .products,
    #content .productfeaturelist{
              width:710px;
              padding:0 0 1px 3px;
              border-bottom:1px solid #e3e3e3;
    .products li,
    .productfeaturelist li,
    .productSmall li{
              float:left;
              width:270px;
              padding:0 58px 30px 0
    #content .products li,
    #content .productfeaturelist li{
              width:308px;
              padding:0 43px 30px 0;
    .shop-product-large .image .productPopletsItem img{margin:0 10px;}
    .products li img,
    .productfeaturelist li img,
    .shop-product-large .image img,
    .productSmall td img,
    .productSmall li img{
              display:block;
              border:1px solid #e3e3e3 !important;
              margin:0 auto 10px;
    .products h3,
    .productfeaturelist h3,
    .productSmall h3{
              margin:0;
              font:24px/27px Arial, Helvetica, sans-serif;
              overflow:hidden;
    .products h3 .cufon{float:left;}
    .cufon-active .products h3{line-height:29px;}
    .products h3 a,
    .productfeaturelist h3 a,
    .productSmall h3 a{color:#666;}
    .products h3 a:hover,
    .productfeaturelist h3 a:hover,
    .productSmall h3 a:hover{text-decoration:none;}
    .products span.price,
    .productfeaturelist span.price,
    .productSmall .price{
              color:#3F9FFF;
              font:12px/15px Arial, Helvetica, sans-serif;
    .shop-product-large li.price{
              color:#3F9FFF;
              font:24px/27px Arial, Helvetica, sans-serif;
              display:block;
              text-align:right;
              margin:0 0 29px;
    .shop-product-large .description{
              border-bottom:1px solid #e3e3e3;
              margin:0 0 27px;
              padding:0 0 8px          ;
    .paging{
              overflow:hidden;
              font-size:12px;
              border-top:1px solid #E3E3E3;
              padding:32px 0 0;
    .shop-main .footer{
              float:right;
    .previous-holder{float:left;}
    .next-holder{float:right;}
    .pagination-holder{
              float:left;
              padding:8px 10px 0 0;
    .pagination-holder a{
              padding:0 8px;
              color:#333;
              text-decoration:underline;
    .pagination-holder a:hover{text-decoration:none;}
    .paging ul li.prev a,
    .paging ul li.next a{
              float:left;
              text-indent:-9999px;
              overflow:hidden;
              width:29px;
              height:27px;
              background:url(../images/gpPrev.jpg) no-repeat;
              margin:-7px -7px 0 0;
    .paging ul li.next a{
              background:url(../images/gpNext.jpg) no-repeat;
              margin:-7px -16px 0 11px;
    .paging ul li span{
              letter-spacing:2px;
              float:left;
              margin:0 0 0 -4px;
    .paging ul li a:hover,
    .paging ul li.active a{text-decoration:underline;}
    #footer{
              width:990px;
              margin:-80px auto 0;
              height:80px;
    .footer-box{
              float:left;
              width:500px;
              font:14px/17px Arial, Helvetica, sans-serif;
    .footer-box p{margin:0 0 4px;}
    .footer-box span{
              display:block;
              font:12px/15px Arial, Helvetica, sans-serif;
    .add-nav{
              overflow:hidden;
    #footer ul,
    .add-nav ul{
              float:right;
              overflow:hidden;
              margin:0 -11px 0 0;
              padding:0;
              list-style:none;
              font:12px/15px Arial, Helvetica, sans-serif;
    .add-nav ul{margin:0;}
    #footer li,
    .add-nav li,
    .add-nav span{
              float:left;
              background:url(../images/sp2.jpg) no-repeat 0 4px;
              margin:0 1px 0 -1px;
              padding:0 10px 0 15px;
    .add-nav span{
              float:right;
              font:12px/15px Arial,Helvetica,sans-serif;
    #footer li a,
    .add-nav li a,
    .add-nav span a{color:#666;}
    .main-panel{
              background:#ffffff url(../images/titleExt.jpg) repeat-x;
              border:1px solid #e6e6e6;
              padding:20px 15px 16px;
              overflow:hidden;
              margin:0 0 26px;
    .main-panel .breadcrumbs{
              background:url(../images/play.png) no-repeat 0 50%;
              padding:0 0 0 29px;
              float:left;
              margin:0;
              list-style:none;
              color:#666;
              text-transform:uppercase;
              font:15px/17px Arial, Helvetica, sans-serif;
    .main-panel .breadcrumbs span{
              float:left;
              margin:0 11px 0 0;
    .main-panel .breadcrumbs a{
              color:#666;
              margin:0 8px 0 0;
              float:left;
    .header-panel ul li a .cufon{float:left;}
    .cufon-active .header-panel ul li a{line-height:24px;}
    .main-panel .breadcrumbs a:hover{text-decoration:none;}
    .container{
              overflow:hidden;
    .email-form{
              float:left;
              width:422px;
              margin:2px 0 0;
    .email-form td{padding:0 !important;}
    .email-form .text,
    .login-form .cat_textbox,
    .secure-login .cat_textbox_small,
    .system-error-message .textbox,
    .registration .cat_textbox,
    .edit .cat_textbox,
    .comment-list .cat_textbox_small,
    .comment-form .cat_textbox_small,
    .shop-checkout .cat_textbox{
              display:block;
              background:#fff;
              border:1px solid #e3e3e3;
              padding:11px 10px;
              margin:0 0 16px;
              outline:none;
              width:400px;
              color:#666;
              font:12px/15px Arial, Helvetica, sans-serif;
    .edit .cat_textbox,
    .shop-checkout .cat_textbox{display:inline;}
    .registration .cat_textbox,
    .edit .cat_textbox{margin:0;}
    .email-form textarea,
    .comment-list textarea,
    .comment-form textarea,
    .shop-checkout textarea{
              display:block;
              background:#fff;
              border:1px solid #e3e3e3;
              padding:12px 10px;
              margin:0 0 16px;
              outline:none;
              height:174px;
              max-height:174px;
              max-width:400px;
              width:400px;
              color:#666;
              font:12px/15px Arial, Helvetica, sans-serif;
              overflow:auto;
    .email-form .submit,
    .login-form .cat_button,
    .secure-login .cat_button,
    .system-error-message .button,
    .registration .cat_button,
    .edit .cat_button,
    .comment-list .submit,
    .comment-form .cat_button,
    .shop-checkout .cat_button,
    .user-info .edit-details{
              display:block;
              background:#2489CC;
              border:none;
              color:#fff;
              font:11px/15px Arial, Helvetica, sans-serif;
              padding:0;
              margin:0;
              cursor:pointer;
              width:194px;
              height:41px;
              text-transform:uppercase;
    .user-info .edit-details{
              text-align:center;
              padding:14px 0 0;
              height:27px;
              margin:10px 0 0;
    .user-info .edit-details:hover{text-decoration:none;}
    .login-form label,
    .secure-login label,
    .system-error-message label,
    .registration label,
    .edit label,
    .comment-list label,
    .comment-form label,
    .shop-checkout label{
              font:13px/15px Arial, Helvetica, sans-serif;
              margin:0 0 7px 10px;
              display:block;
    .shop-checkout select{margin:0 0 16px;}
    .comment-list .has-captcha label{margin:0 0 7px;}
    .comment-list .has-captcha .cat_textbox{
              display:block;
              background:#fff;
              border:1px solid #e3e3e3;
              padding:11px 10px;
              margin:0;
              outline:none;
              width:138px !important;
              color:#666;
              font:12px/15px Arial, Helvetica, sans-serif;
    .system-error-message{
              width:670px;
              margin:0 auto;
              padding:0;
              background:none;
              border:none;
    .container-info{
              float:right;
              width:471px;
              line-height:22px;
    .container-info h2{
              margin:0 0 17px;
              font:30px/33px Arial, Helvetica, sans-serif;
              color:#2489cc;
    .container-info p{margin:0 0 20px;}
    .cartSummaryTable{margin:13px 0 0;}
    .edit table{margin:0 0 40px;}
    .hidden{display:none;}
    .user-info dl{
              margin:0;
              overflow:hidden;
    .user-info dt{
              float:left;
              margin:0 5px 5px 0;
              width:85px;
    .user-info dd{margin:0 0 5px;}
    .user-info h2{margin:15px 0 10px 15px;}
    .order-list{margin:10px 0;}
    .order-list td{padding:6px;}
    .registration h2,
    .edit h2,
    .comment-form h5{
              color: #2489CC;
              font: 23px/27px Arial,Helvetica,sans-serif;
              margin: 0 0 16px;
    .edit h2{margin:0 0 6px 10px;}
    .registration table{margin:0 0 10px;}
    .captcha-holder strong,
    .registration .captchaimg img,
    .edit strong{display:block;}
    .registration .captchaimg,
    .comment-list .captchaimg,
    .comment-form .captchaimg{margin:0 0 10px;}
    .captcha-holder .cat_textbox{
              width:140px !important;
              padding:5px 10px;
    .blog-list{
              background:none;
              border:none;
              font:13px/15px Arial, Helvetica, sans-serif;
    .blog-post h2,
    .post-list h2{
              color: #2489CC;
              font: 29px/31px Arial,Helvetica,sans-serif !important;
              margin: 0 !important;
              border:none !important;
              padding:0 !important;
              text-transform:uppercase;
    .post-list #catforumoutput h2{
              font: 20px/23px Arial,Helvetica,sans-serif !important;
              text-indent:15px;
    .breadcrumb{display:none;}
    .blog-post h2 a:hover,
    .post-list h2 a:hover{text-decoration:none;}
    .blog-container .description{display:none;}
    .post-details,
    .post-body p{margin:0 0 5px !important;}
    .comment-list{
              background:none;
              border:none;
              padding:0;
    .comment-list h5{
              color: #2489CC;
              font: 25px/27px Arial,Helvetica,sans-serif !important;
              margin: 0 !important;
    .comments-form{margin:25px 0 0;}
    .comments-form .item,
    .comment-form .item,
    .shop-checkout .item,
    .secure-login .item{padding:0 0 10px !important;}
    .secure-login div.form{padding:0;}
    .secure-login .checkbox{
              float:left;
              margin:0;
              padding:0;
              width:16px;
              height:15px;
    .BlogRecentPost li, .BlogTagList li, .BlogPostArchive li{
              font:13px/15px Arial, Helvetica, sans-serif;
    .side-panel h4{
              margin:0 0 10px;
              font:bold 14px/17px Arial, Helvetica, sans-serif;
    .account-container{
              overflow:hidden;
    .account-container h2{
              color: #2489CC;
              font: 27px/29px Arial,Helvetica,sans-serif !important;
              margin: 0 0 20px;
    .account-container .holder{
              overflow:hidden;
    .account-container h3{
              margin:0 0 16px;
              font:bold 16px/19px Arial, Helvetica, sans-serif;
              background:none;
              border:none;
              padding:0;
              text-transform:uppercase;
    .account-container p{margin:0 0 16px 10px;}
    .account-container .column{
              float:left;
              width:450px
    .create-account{
              display:block;
              background:#2489CC;
              border:1px solid #e3e3e3;
              color:#fff;
              font:11px/15px Arial, Helvetica, sans-serif;
              width:194px;
              height:28px;
              text-transform:uppercase;
              text-align:center;
              padding:13px 0 0;
    .create-account:hover{text-decoration:none;}
    .login-form,
    .secure-login{
              width:428px;
              float:right;
              border:none;
              background:none;
              margin:0;
    .view-display{
              float:right;
              font:11px/13px Arial, Helvetica, sans-serif;
              padding:3px 4px 0 0;
    .view-display a{
              text-decoration:underline;
    .view-display a:hover{text-decoration:none;}
    .catalogueTable,
    .shop-main .header,
    .shop-cart .breadcrumbs,
    .shop-cart h1{display:none;}
    .shop-product-large{
              overflow:hidden;
              border:none;
    .shop-product-large .image{
              margin:0;
              float:left;
              padding:0;
              width:420px;
    .shop-product-large .details{
              float:right;
              padding:0;
              background:none;
              width:472px;
              margin:-6px 0 0;
              line-height:22px;
    .shop-product-large h1,
    .forum-container h1,
    .forum-posts-container h1,
    .blog-container h1{
              color:#2489CC;
              font:29px/31px Arial, Helvetica, sans-serif;
              margin:0 0 16px;
    .blog-container h1 img{margin:0 0 0 10px;}
    .shop-product-large .details p{margin:0 0 19px;}
    .shop-product-large li.instock{display:none;}
    .shop-product-large .details .quantity .productTextInput{
              display:none;
    .shop-product-large .details .quantity img{
              top:0;
              float:right;
              margin:-2px 0 0 10px;
              cursor:pointer;
    .shop-product-large ul{
              margin:0 0 66px;
              padding:0;
    .radio-holder{
              overflow:hidden;
              padding:0 0 10px 10px;
    .poplets {
        border-top:none;
        margin: 0;
        padding: 13px 0 0;
    .sitemap ul{
              margin:0;
              padding:0 0 0 20px;
              list-style:none;
              font:14px/17px Arial, Helvetica, sans-serif;
    .sitemap li{
              padding:4px 0 7px 20px;
              background:url(../images/tBox.jpg) no-repeat 0 8px;
    .sitemap li ul{padding:7px 0 0 20px;}
    table.topic-list th{
              font:14px/17px Arial, Helvetica, sans-serif !important;
    .shop-cart .cart{
              border:none;
              font:15px/17px Arial, Helvetica, sans-serif;
    .remove-link a{
              display:block;
              text-indent:-9999px;
              overflow:hidden;
              width:8px;
              height:8px;
              background:url(../images/ico-remove.gif) no-repeat;
              margin:25px auto 0;
    .shop-cart table.cart th{
              background:none;
              color:#666;
              font:18px/23px Arial, Helvetica, sans-serif;
              text-transform:uppercase;
              text-align:left;
              padding:25px 24px;
              border:none;
    .shop-cart table.cart .val td{
              padding:0;
              background:#f8f8f8;
              border:none;
    .shop-cart table.cart td.productname a{color:#666;}
    .shop-cart table.cart .val td.quantity input{
              display:block;
              background:#eaeaea;
              color:#999;
              padding:3px 0;
              margin:0;
              border:none;
              width:124px;
              text-align:center;
    .buttons-holder{
              overflow:hidden;
    .buttons-holder a{
              float:left;
              text-indent:-9999px;
              overflow:hidden;
              width:62px;
              height:20px;
              background:url(../images/ico-minus.gif) no-repeat;
    .buttons-holder a.plus{background:url(../images/ico-plus.gif) no-repeat;}
    table.cart strong{
              font:19px/21px Arial, Helvetica, sans-serif;
    .envelope{
              margin:0 0 20px;
    table.cart .invoice-total{
              vertical-align:middle;
              text-align:center;
    table.cart .invoice-total .envelope{
              border:1px solid #ebebeb;
              height: 55px;
        padding: 26px 10px 0;
        width: 268px;
    table.cart .invoice-total strong{
              color:#1a8bd7;
              font:34px/37px Arial, Helvetica, sans-serif;
    tr.shipping td{border:none;}
    tr.total td{border-bottom:1px solid #DDD;}
    table.cart td.total-section{
              vertical-align:middle;
    table.cart td.actions{
              vertical-align:top;
    table.cart .actions a{
              color:#666;
              font:14px/17px Arial, Helvetica, sans-serif;
              float:right;
    table.cart .actions a.continue-shopping{
              margin:15px 18px 0 0;
    table.cart .actions a.continue-shopping:hover{color:#999;}
    table.forum td,
    table.topic{
              font:13px/15px Arial, Helvetica, sans-serif;
    table.forum h3{
              margin:0;
              font:bold 13px/15px Arial, Helvetica, sans-serif;
    .productitemcell{
              height:70px;
              padding:27px 23px;
              border-bottom:1px solid #fff;
    .cart-image .productitemcell{
              width:121px;
              height:67px;
              padding:28px 23px 29px;
    .productitemcell img{
              display:block;
              border:1px solid #ebebeb;
              width:100%;
    .productname .productitemcell{
              width:180px;
              padding:47px 0 7px;
    .shop-cart table.cart th.productname{padding:25px 0;}
    .price-section .productitemcell{
              padding:47px 0 7px 23px;
              color:#1a8bd7;
              width:60px;
    .product-image{
              width:268px;
              height:201px;
    .product-image img{width:100%;}
    #content .product-image{
              width:auto;
              height:auto;
    .hidden{display:none;}

  • HT1947 If you add music VIDEOS to Up Next playlist, then go to look at the album cover playing screen, then go to add another song from diff playlist, no longer can see Up Next, just go to full screen mode button. Using remote app iphone 5 to play out of

    If you add music videos to Up Next playlist, then go to look at the album cover playing screen, then go to add another song from different playlist, you no longer can see Up Next, just go to full screen mode button. Using remote app iPhone 5 to play out of iTunes. It looks like it works fine for regular music, but for music videos you can't see your up next unless you go back on the computer to change once you've left the screen. When using the remote app, you shouldn't need to go to iTunes on the PC to view or edit Up Next already added. See first image, you can hit upper right and get back to Up Next (second image). Third image is music video, where you can't get back to Up Next, just swap between full screen and not. I hoped 3.0.1 would have the answer, no luck!

    wow, very nice review Makes me want to get a vision for myself.
    WebKnight wrote:
    <SPAN>
    Add the ability to randomly select a new background from a pre selected group of photos every time the player is turned on or each day.
    I would love that feature. I can't stand useing my computer with a single wall paper anymore (I have 500 anime pics that i rotate between every 2 mins ) If you could make the vision rotate background every x minutes or every time the player is turned on, it would be totally amazeningly sweet!!!! (i might have to go out and buy one then :P)
    I just hope that creative has better firmware support with the vision than they have had with the touch.
    Once again, great review

  • How to add another Chapter Page for more then 6 chapters & add right arrow?

    Hello,
    I created a project via the Magic iDVD option and it worked great and added multiple chapter pages for more then 6 chapters. Now, I manually added a submeno off of main and added 6 chapters but I need multiple pages since I have 40 chapters... I can't figure out how to add another chapter page and create a RIGHT ARROW navigation button for the next pages...
    I also looked at the map view and see that on the working pages there is page connected to page... I also cannot find a way to add a page connected vi map view...
    I have searched the forum but none of the answers were clear on how to do this... any help would be appreciated...
    Thanks! T.

    Adding the submenu is easy...making the button for it a "right arrow" is not.
    You can keep adding submenus to other submemus by navigating to the appropriate menu and then choose the "add submenu" command from the iDVD project menu. This can be done in either normal or map view.
    However, this creates a "folder" button, (or other things in some themes) not a right arrow. I agree it should be a choice! My 2nd best solution is to chage the folder button to a "text only button" and label it "More Chapters > >"
    Another solution (3rd best??) is to use command-shift-4 when you are one one of your other menus that DOES have a right arrow, and take a mini picture of the arrow. Then choose one of the oval menu buttons on the button pane, and drag this tiny picture onto the button. Re-size it to make it close to the same size as your other buttons. It will have a funny edge on it from the button style, but it will look like a right arrow.
    John B

  • I am unable to add contacts with their phone numbers. I add one press done and then it shows up but when I add another one the first one is deleted. How can I add them and make sure they stay.  Upper left hand corner there is partial circle w/ arrow

    I Unable to add contacts. I add one and then press done.  It shows up but after I add another one the first one is gone.  How do I save them?

    Hi,
    Troubleshooting a start up script can be difficult. There are some third party programs that also keep logs of start up programs, however for Firefox this may be different.
    Is Firefox a startup program? [http://www.winxptutor.com/msinfo32.htm]
    Its also possible to check the Web developer tools for any scripts in a page: [https://developer.mozilla.org/en-US/docs/Tools/Debugger]
    In the control panel there is also Administrative tools to view event logs, but this may be something a local technician can walk you through.

  • Why does the Add-ons manager take an excessive time to load and can I view my add-ons without going to the add-ons manager?

    When I start my browser up my everything that I have been working on comes up without any problem and I can open a new tab to go to another site without a problem, but when I go to the Add-ons Manager it can take over 3 minutes to load and that's if I don't stop it. My other question is can I view my add-ons, plugins, etc without having to open the Add-ons Manager?

    Check out this similar thread: [https://support.mozilla.com/en-US/questions/836711 Some websites, Mozilla included, appear to think I'm using a different version of Firefox from the one I am using; how can I fix this? | Firefox Support Forum]. Does that help?

  • How do I get itunes to add another ipad. Get gray screen.

    How do I get itunes to add another ipad. The second ipad was set up on same computer as i am trying to manage music, but I get a gray screen and itunes won't allow me to manage any music, movies, aps, etc. all screens turn gray.

    I'm afraid that the iTunes Store checks the feed when it gets round to it: as you've found it's usually in the order of 1-2 days, and there is nothing you can do to alter that.

  • Want a TN to block to ADD Purchase order Canditions Are as follows:-

    Respective Experts,
             I want a TN to block ADD Purchase Order Conditions are as follows:-
             When I add Purchase order it goes for approval and the document is saves as Draft
    Now    1) If there is 6 Purchase orders for a Vendor are pending for approval no one more Purchase Order is Added in the system.
                  It will block to user to add Purchase order.
               2) It should block to user to Add that Purchase order And That PO is not go for Approval means block to ADD Purchase order before Documnet go to approval....
               Please help me to make TN for above conditions ??
    Regards,
    Sandesh

    Hi Sandesh..
    Try This
    Create this view as PO
    SELECT count(t1.docentry) as Count,cardcode
                     FROM   odrf t1
           INNER JOIN drf1 t2 ON  t1.docentry = t2.docentry and t2.ObjType='22' where t1.docstatus='O'
            group by  cardcode
    Use this tnsp for the block
      IF @object_type = '112'
             AND @transaction_type IN ('A', 'u')
          BEGIN
              IF EXISTS(
    SELECT t1.docentry
                     FROM   odrf t1
           INNER JOIN drf1 t2
                                 ON  t1.docentry = t2.docentry and t2.ObjType='22'
                                 inner join PO t3 on t3.cardcode=t1.CardCode
                     WHERE  @list_of_cols_val_tab_del = t1.docentry and t3.count>'6'
              BEGIN
                  SET @error = -1
                  SET @error_message ='You Cannot Perfrom this Action pending purchase order'
              END
          END
    Hope Helpful
    Regards
    Kennedy

  • Adding View/tab TO service Order Item Level

    Hi All,
    I am using CRM 5.0 SP3. I need to add a new View/Tab on SERVICE ORDER at Item Level Details.
    This view consist of Some Custom Field (like IO Box, Drop down etc.)
    I have created the view but not able to understand how to add this view to the Item level details. I gone through the Cookbook, but not getting a clear idea of how to add this custom view there.
    I want to add this view like there are other view at Item level Details For Example "SLA Info","Notes" & "Partners", "Z view" (This Should be my custom view).
    Any hint will be very help full.
    Abhinav

    I assign the New z view into the viewset (ServViewSets.xml) and define the navigation link( in ServNavigationalLinks.xml as well. but when i am clicking on the link from the ServSLA, i am getting following errors.
    An exception occurred during the activation of target view ZServEvnt1 for the navigation
    An exception has occurred
    Exception Class CX_BSP_INV_PAGE
    Text: BSP Exception: Das Objekt ZServEvnt1.do in der URL/sap(bc/bsp/sap/crm_ic/ServItemViewSet.do ist nicht gültig.
    Program: CL_BSP_PAGE_BASE==============CP
    Include: CL_BSP_PAGE_BASE==============CM01A
    Source Text Row: 117
    An exception occurred in inbound plug IP_DEFAULT of target view ZServEvnt1
    An exception has occurred
    Exception Class CX_SY_REF_IS_INITIAL
    Text: Dereferencing of the NULL reference
    Program: CL_BSP_WD_WINDOW==============CP
    Include: CL_BSP_WD_WINDOW==============CM004
    Source Text Row: 47
    any help
    abhi
    Edited by: abhi on Sep 4, 2008 8:56 AM

  • J4AR - add another selection field

    Hi All,
    I have to add the another selection field to the J4AR(TCODE) . Can you please let me know the procedure?
    We  enter value to the 'selection set' field in J4AR to display access rules . We select the access rule and press the change or create button. it goes to the dynamic selection screen. We need to add another field(Delivery date in the sales order line item) to this dynamic selection screen.  
    Prad

    Hi ,
    If your server is ECC 6.0 version then use enhancement point to add the selection field.
    else copy to z program and modify it.

  • How to add another Segment field in OBC4

    Dear Experts,
    OBC4 -> select Comp. Code -> field Status Group -> select Field St. Grp -> Duuble click on Field St. Grp
    I have a requirement to make Business Place/secn field Mandatory where ever it is used in transaction F-43 , F-02 , F-48 .
    So for this am going through OBC4 . But there (Under Field status Grp.) am not getting any field named as Business Place . There exists a field Business Area . But Business Area and Business Place both are different .
    So Is it possible to add another segments named as Business Place/secn  there with 3 options Supress , Req. Entry , Opt. Entry . So that i can change it to Mandatory .
    Thanks in Advance
    Jack

    Hi,
    Check this sample process
    To get custom fields on IDOC you need to add custom segment on IDOC and for that you have to create a extension IDOC with reference to Basic IDOC.
    You can do that as explain below.
    Here for example you have basic idoc ORDERS05 and you want to add additional segments at header level - ZE1EDK01 and line item level ZE1EDP01
    1. TCode - WE31 : Create custom segments ZE1EDK01 and ZE1EDP01 with the fields you want and release these segments.
    2. TCode - WE30 : Create extension IDOC
    In WE20 enter extension IDOC name - ZORDERS05, select "Extension" option and hit "create" button. When it gives pop-up, select "create new" and enterd linked basis type as "ORDERS05". Enter proper description and save.
    3. On the next screen of WE30, select the segment under which you want to add your additional segment. Save everything.
    4. TCode - WE82. Here you link extension idoc to basic idoc and message type.
    Go into change mode. Hit "New entries button" Enter Message type = "ORDERS", basic type = "ORDERS05" and extension type = "ZORDERS05".
    Regards,
    Satish

  • Management access (view and add) to calendars

    I've done some research on this, and groups and calendar sharing don't quite seem to handle this properly for our needs...
    We have a simple hierarchy in that people on higher levels need the ability to view and add to tasks and appointments of those who report to them.
    So if Mr. Blue reports to Mr. Red, then Mr. Red as the ability to view Mr. Blue's calendar and tasks, as well as give him new appointments and tasks. But I don't want to create team calendars for this and I don't want to give Mr. Blue the same access to Mr. Red's calendar and tasks.
    Similarly, we have admins who need this type of access as well.
    How can we configure CRM on Demand to fulfill this requirement?

    Create a list in Activities called My Team's Tasks/Appointments. In the user profile make sure you specify Mr. Blue Reports to Mr. Red.
    Then Mr. Red will be able to see all his direct report's tasks. But Mr. Red's boss will not be able to see all Mr. Blue's tasks (Someone correct me if am wrong)
    Another way is sharing calendars. Mr. Blue Can share his calendar with Mr. Red, so Mr. red can see all of Mr. Blue's Appointments.
    Hope this helps.

Maybe you are looking for

  • ABAP WebDynpro - ArchiveLink - PDF Error: "File does not start with..."

    Hey community, I have a WebDynpro application in which I want to show a Archive document. I'm using FM 'ARCHIV_GET_TABLE' and then FM 'SCMS_BINARY_TO_XSTRING'. But I only get the error message: (see also attached) File does not open with "%PDF-". Loc

  • My bookmarks have suddenly all gone. What happened?

    Just opened Safari, tapped the bookmarks icon... Lo and behold, only default bookmarks are there. Same for reading list. I used it a few hours before no problem. I didn't update anything since I last used Safari. My bookmarks seem to have vanished in

  • How do I build a Scroller in Actionscript?

    I need to build a Scroller / Group / RichEditableText set of components using only Actionscript, since I need to create (perhaps) many of these, skinned on-the-fly as a result of download from the server. Can anyone provide a working example?  I can

  • What is the use of SID?

    what is the use of SID? Why system generates?

  • Dreamweaver will not load up

    Hello All.. I have a acer laptop aspire 2920, CPU T2390 @ 1.86GHZ with home edition 2GG Ram.. 32bit.. The trial download installed fine but will not open the Green logo comes up then nothing.. this happened with Trial CS3 but left it and waited for C