Jump to content

Help with IEFormElementOptionSelect


 Share

Recommended Posts

Greetings,

I have searched and tired many things to find a solution to my problem. I write this because I'd like it known that I didn't come looking for help because I was too lazy to put in the work and I'm hoping someone can show me what I'm doing wrong. I'm using this function to set a value from a choice list on a web page. The command is working because when the proper value is selected there are OnClick/Change events that fire and those cause different choices to appear under the particular field I'm focused on.

This is the actual command I'm executing. The choice has been somewhat redacted.

 _IEFormElementOptionSelect(_IEGetObjById ($oIE, "SelectedServiceProgram"), "######### SERVICES & SUPPORT")

As mentioned, this does work behind the scenes. The issue is two parts: the first is that even though the value is set it does not appear on the screen. That sounds like a 'who cares" sort of thing, but it becomes a problem when it comes time to submit the form. I have three of these fields I set and when I get to the submit button (actually triggers a download) it displays a message stating that all fields fields must be addressed. If I go back and manually set them things are fine.

So, my problem is that even though the command sets the value and executes the on click or change commands, it doesn't seem to be enough for the validation that occurs when the "submit" button is clicked. I think I need to have the values displayed and not the default text on the screen. An item of note is that the on clock or change event does cause a refresh of the screen, but I never see the value get set before this happens (I have 4 second delay between each step for debugging).

Link to comment
Share on other sites

  • Moderators

Really no way to help without a site or html (that can be inserted) that demonstrates your issue.

Wild stabs...

What is the "value" of the select control after you set the data... eg.  $oSelect1.value

What are the events the selects call with (onclick/onmousedown/onmouseup/onselect/onchange/etc)?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

<select name="SelectedServiceProgram" class="icwSelect icwRequiredItem" 
id="SelectedServiceProgram" style="width: 350px; display: none; z-index: 500;" 
onchange="fnPLDropdwnOnProgService();" size="1" sb="95989257">  
    <option value="default">Select a Service Program</option>
    
    <option value="ADVANCED SERVICES">ADVANCED SERVICES</option>
    
    <option value="CISCO SERVICES &amp; SUPPORT">CISCO SERVICES &amp; SUPPORT</option>
    
    <option value="COLLABORATIVE SERVICES">COLLABORATIVE SERVICES</option>
    
    <option value="COLLABORATIVE SERVICES NA">COLLABORATIVE SERVICES NA</option>
    
    <option value="NETWORK OPTIMIZATION">NETWORK OPTIMIZATION</option>
    
    <option value="NO SERVICE CHARGE">NO SERVICE CHARGE</option>
    
    <option value="PARTNER MANAGED SERVICES">PARTNER MANAGED SERVICES</option>
    
    <option value="PARTNER SUPPORT SERVICE">PARTNER SUPPORT SERVICE</option>
    
    <option value="SHARED SUPPORT SERVICES">SHARED SUPPORT SERVICES</option>
    
    <option value="SMART CARE SERVICE">SMART CARE SERVICE</option>
    
    <option value="SMART NET TOTAL CARE">SMART NET TOTAL CARE</option>
    
    <option value="SP SERVICES &amp; SUPPORT">SP SERVICES &amp; SUPPORT</option>
    
    <option value="TELEPRESENCE">TELEPRESENCE</option>
    
    <option value="UNIFIED COMPUTING SERVICES">UNIFIED COMPUTING SERVICES</option>

</select>

Does this help?

Link to comment
Share on other sites

As far as I know. I can't use the image extension so I can't post a picture of what it looks like. I have no reason to think this isn't the correct field because when I set it the click event does occur. Based on what is selected here, another set of fields will appear and that is a list of codes. It might be tempting to imagine that the list of codes is the same regardless of what is chosen, but they are unique to what is selected. The codes are correct, so I'm certain that I am working with the correct control and changing it to the desired value.

Link to comment
Share on other sites

What exactly can I provide? I can't post a link to the web page in question because it requires credentials to access. Beyond that, I'm happy to pass along anything you request. I just need to know what it is.

Link to comment
Share on other sites

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">

<script src="j/jquery.js" type="text/javascript"></script>
<script src="j/jquery-ui-1.10.4.min.js" type="text/javascript"></script>
<script src="j/serviceProgram.js" type="text/javascript"></script>
<script src="j/currentPL.js" type="text/javascript"></script>
<script src="j/viewPLHistory.js" type="text/javascript"></script>
<script src="j/productPriceSearch.js" type="text/javascript"></script>
<script src="j/icw_004.js" type="text/javascript"></script>
<script src="j/icw_005.js" type="text/javascript"></script>
<script src="j/icw_007.js" type="text/javascript"></script>
<script src="j/icw_003.js" type="text/javascript"></script>
<script src="j/icw_008.js" type="text/javascript"></script>
<script src="j/icw.js" type="text/javascript"></script>
<!-- <script type="text/javascript" src="j/icw_006.js"></script> -->
<script src="j/icw_002.js" type="text/javascript"></script>
<script src="j/jquery.selectbox-0.1.3.js" type="text/javascript"></script>
<script src="j/icw.modal.js" type="text/javascript"></script>
<script src="j/icw.common.js" type="text/javascript"></script>
<script src="j/icw.table.js" type="text/javascript"></script>
<script src="j/icw.chrome.js" type="text/javascript"></script>
<script src="j/icw.form.js" type="text/javascript"></script>
<script src="j/icw.address.js" type="text/javascript"></script>
<script src="j/icw.progressBar.js" type="text/javascript"></script>
<!--FancyBox Jquery Files
====================================================-->
<script src="j/fancybox/jquery.fancybox-1.3.4.js" type="text/javascript"></script>
<script src="j/jquery.selectbox-0.1.3.js" type="text/javascript"></script>
<script src="j/custom-radio-check.js" type="text/javascript"></script>
<script src="j/custom.js" type="text/javascript"></script>

<script src="j/script.js" type="text/javascript"></script>
<script src="j/select2.js" type="text/javascript"></script>
<script src="j/bootstrap.min.js" type="text/javascript"></script>
<script src="j/bootstrap-multiselect.js" type="text/javascript"></script>

<link href="c/lpc.css" rel="stylesheet" type="text/css">
<link href="c/icw.css" rel="stylesheet" type="text/css">
<link href="c/icw_002.css" rel="stylesheet" type="text/css">
<link href="c/homepage.css" rel="stylesheet" type="text/css">
<link href="c/jquery-ui-1.10.4.min.css" rel="stylesheet" type="text/css">
<link href="c/select2.css" rel="stylesheet" type="text/css">
<link href="c/bootstrap-alert.css" rel="stylesheet" type="text/css">
<link href="c/bootstrap-multiselect.css" rel="stylesheet" type="text/css">
<link href="c/bootstrap-custom.css" rel="stylesheet" type="text/css">
<style type="text/css">
#pri fieldset select {
    margin: 14px;
}

#pri {
    margin-left: 20px
}

;
.selectbox {
    behavior: expression(window .   dropdown_menu_hack !=   null ?   window .
         dropdown_menu_hack(this) :   0 );
}

#idoftheitem {
    padding-left: 400px;
    position: absolute;
    top: 400px;
    left: 200px
}

.multiselect {
text-align: left;
font-size:1.083em;
font-weight:bold;
font-family:Arial,Helvetica,sans-serif;
}

div.custom-modal .modal-dialog {
    width: 800px;
    margin: 70px auto;
    margin-top: 70px;
}
div.custom-modal .modal-content {
    background: #fff;
}
div.custom-modal .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5 !important;
}
div.custom-modal .modal-body {
    padding: 20px;
}
div.custom-modal .modal-footer {
    padding: 20px;
    border-top: 1px solid #e5e5e5 !important;
}

</style>

<script type="text/javascript">
    
    
        $(document).ready(function(){            
            
                //Show the service file notification
                $("#messageBox").show();
                
                icw.progressBar.showDialog();
                bindIcwLogoutLink();
                $.ajax({
                          url: "currentPrice.faces",
                          success: function(data) {                                      
                                      $('#currentData').html(data);
                                    document.getElementById('cplFormServicePage').style.display="none";
                                    document.getElementById('cplFormSAASPage').style.display="none";
                                    document.getElementById('mainPLgrid').style.display="";
                                    document.getElementById('ItemCategory').style.display="none";
                                    document.getElementById('selectedItemCategory').style.display="none";
                                    
                                    //document.getElementById('serviceRad').style.display="none";
                                    //$("#serviceRad").hide();
            
                                    //added by shanujai - TAA Scope -- Q1FY14
                                    //document.getElementById('attributeTAAOnly').style.display="none";
                                    if(document.getElementById('attributeGroup') != null){
        
                                    $("#taaGrid").attr("style","display:none");
                                    }                                    
                                                                        
                                    //Rachna Added for Service File Scope    
                                    document.getElementById('cplFormProdtoServicePage').style.display="none";
                                    $("#serviceRad").hide();                                                                
                                    
                                      //$("#attributeGroup").attr("style","display:none");
                                      //$("#taaNote").attr("style","display:none");
                                      //}
                                    //var isInternal = $("#isInternal").val();
                                    clrFrm1();
                                    document.getElementById('selectedRadioTypeForCurrent').checked="checked";
                                    document.getElementById('selectedRadioTypeForCurrent').value=1;
                                    var widthValue = $('#cplFormMainPage table tbody tr td').css('width');
                                    //$('#selectRadioDownload tbody tr td').attr('width',widthValue);
                                    icw.progressBar.hideDialog();
                                    ////var a=$("#test1").offset();
                                    ////var b=$("#test2").offset();
                                    ////var c=$("#selectedPriceList").offset();
                                    ////var e=$("#test3").offset();
                                    ////var g=$("#selectedItemCategory").offset();
                                    ////var h=$("#dlFileFormat").offset();
                                    ////var o=$("#SelectedPriceListService").offset();
                                    ////var p=$("#serviceFileFormat").offset();
                                    
                                    ////var mValue=Math.max(a.left,c.left,e.left,g.left,h.left,o.left,p.left);
                                    ////var btnP=$("#button1").offset();
                                    ////var notId=$("#noteId").offset();
                                    ////$("#button1").offset({ top: btnP.top, left:mValue});
                                    ////$("#noteId").offset({ top: notId.top, left:mValue});
                                    ////$("#test1").offset({ top: a.top, left:mValue});
                                    ////$("#test2").offset({ top: b.top, left:mValue});
                                    ////$("#selectedPriceList").offset({ top: c.top, left:mValue});
                                    ////$("#test3").offset({ top: e.top, left: mValue});
                                    ////$("#selectedItemCategory").offset({ top: g.top, left:mValue});
                                    ////$("#dlFileFormat").offset({ top: h.top, left:mValue});
                                    ////$("#SelectedPriceListService").offset({ top: o.top, left:mValue});
                                    ////$("#serviceFileFormat").offset({ top: p.top, left: mValue});
                                                                        
                                    var x=$("#radioHoverProducts").offset();
                                    $("#messageBoxProducts").offset({ top: x.top, left: x.left+15 });

                                    var y=$("#radioHoverServices").offset();
                                    $("#messageBoxServices").offset({ top: y.top, left: y.left+15 });

                                    var v=$("#radioHoverPreServices").offset();
                                    $("#messageBoxPreSetServices").offset({ top: v.top, left: v.left+15 });

                                    var z=$("#radioHoverPR").offset();
                                    $("#messageBoxEPL").offset({ top: z.top, left: z.left+15 });

                                    var u=$("#radioHoverCMRS ").offset();
                                    $("#messageBoxCMRS").offset({ top: u.top, left: u.left+15 });
                                    
                                    if (document.getElementById('radioHoverERP')!=null)
                                        {
                                          var v=$("#radioHoverERP").offset();
                                          $("#messageBoxERP").offset({ top: v.top, left: v.left+15 });                                        
                                    }
                                    $("#productFamilyDetails").hide();
        document.getElementById('tableGrid').style.display="";
        document.getElementById('tableGridService').style.display="none";
        document.getElementById('tableGridSAAS').style.display="none";
        document.getElementById('tableGridProtoService').style.display="none";
        $("#products").attr("checked", false);
        $("#selectedItemCategory").hide();
        $("#formatHelp").hide();
        
        //added by shanujai - q4fy14 dpp starts
        $("#cplFormDPPPage").hide();
        $("#downloadTypeDPP").attr("checked",false);
        //changes end
                                    if(document.getElementById('attributeChkBoxInfo') != null){
                                        
                                        var s = $("#attributeChkBoxInfo").offset();
                                        $("#messageBoxTAA").offset({top: s.top, left: s.left+15});
                                        chkTAAOnly(); //added by shanujai - TAA Scope -- Q1FY14    
                                        ////var pls = $("#test3").offset();
                                        ////var t=$("#taaPanel").offset();
                                        ////var r=$("#taaNote").offset();
                                        ////var file = $("#dlFileFormat").offset();
                                        ////$("#taaPanel").offset({top: t.top, left: pls.left});
                                        ////$("#taaNote").offset({ top: r.top, left: pls.left});
                                        ////$("#dlFileFormat").offset({ top: file.top, left:pls.left});
                                    }
                                     $('#selectedPriceList').selectbox();
                                     $('#dlFileFormat').selectbox();
                                    // $('#multiSelectPriceListId').multiselect();
                                    
                                    loadMulitSelectbox();
                                     testLoad();
                                     $('body').label_radio_check();
                                    
                                
                                    
                                    
                        },
                        error : function (XMLHttpRequest, textStatus, errorThrown) {
                                    icw.progressBar.hideDialog();
                        }
                });
            
                    $('#currentPrice').unbind('click');
                      $('#currentPrice').bind('click', function(event) {
                         icw.progressBar.showDialog();
                         event.stopPropagation();
                          $.ajax({
                            
                              url: "currentPrice.faces",
                              success:currentTab,
                            error : function (XMLHttpRequest, textStatus, errorThrown) {
                                    icw.progressBar.hideDialog();
                        }
                            });
                    
                          return false;
                          
                      });
                      
                      
                     $('#priceHistory').unbind('click');
                      $('#priceHistory').bind('click',function(event){
                        icw.progressBar.showDialog();
                         event.stopPropagation();
                             
                          $.ajax({
                              
                                      url: "viewPLHistory.faces",
                                      success:historyTab,
                                    error : function (XMLHttpRequest, textStatus, errorThrown) {
                                    icw.progressBar.hideDialog();
                        }
                              
                          });
                          
                            
                          return false;
                          
                      });
            
                         $('#productpricesearch').unbind('click');
                           $('#productpricesearch').bind('click',function(event){
                         icw.progressBar.showDialog();
                         event.stopPropagation();
                          $.ajax({
                              
                                      url: "productPriceSearch.faces",
                                      success:searchTab,
                                    error : function (XMLHttpRequest, textStatus, errorThrown) {
                                        icw.progressBar.hideDialog();
                                    }
                          });
                          
                        
                          return false;
                          
                   });
                        
                   
                        function currentTab(data) {
                                    icw.progressBar.hideDialog();
                              
                                      $("#currentpricelistSelected").attr("style","display:inline");
                                      $("#priceHistoryNormal").attr("style","display:inline");
                                      $("#searchNormal").attr("style","display:inline");
                                      
                                      $("#currentpricelistNormal").attr("style","display:none");
                                      $("#priceHistorySelected").attr("style","display:none");
                                      $("#searchSelected").attr("style","display:none");
                                      
                                      
                                      $('#currentData').html(data);
                                      document.getElementById('selectedRadioTypeForCurrent').value=1;
                                  
                                      
                                      bindIcwMessageLink();
                                      
                                    document.getElementById('cplFormServicePage').style.display="none";
                                    document.getElementById('cplFormSAASPage').style.display="none";
                                    document.getElementById('mainPLgrid').style.display="";
                                    clrFrm1();
                                    document.getElementById('tableGrid').style.display="";
                                    document.getElementById('tableGridService').style.display="none";
                                    document.getElementById('tableGridSAAS').style.display="none";
                                    
                                    document.getElementById('selectedRadioTypeForCurrent').checked="checked";
                                    document.getElementById('selectedRadioTypeForCurrent').value=1;
                                    $("#ItemGrid").hide();
                                    
                                    //Rachna Added for Service File Scope    
                                    document.getElementById('cplFormProdtoServicePage').style.display="none";
                                    document.getElementById('tableGridProtoService').style.display="none";
                                    $("#serviceRad").hide();
                                    
                                    
                                    $("#products").attr("checked", false);
                                    $("#selectedItemCategory").hide();
                                    $("#formatHelp").hide();
                                        
                                    //added by shanujai - q4fy14 dpp starts
                                    $("#cplFormDPPPage").hide();
                                    $("#downloadTypeDPP").attr("checked",false);
                                    //changes end
                                    
                                    if(document.getElementById('attributeGroup') != null){                                    
                                    $("#taaGrid").attr("style","display:none");}
                                      
                                    var x=$("#radioHoverProducts").offset();
                                    $("#messageBoxProducts").offset({ top: x.top, left: x.left+15 });

                                    var y=$("#radioHoverServices").offset();
                                    $("#messageBoxServices").offset({ top: y.top, left: y.left+15 });

                                    var v=$("#radioHoverPreServices").offset();
                                    $("#messageBoxPreSetServices").offset({ top: v.top, left: v.left+15 });
                                    
                                    var z=$("#radioHoverPR").offset();
                                    $("#messageBoxEPL").offset({ top: z.top, left: z.left+15 });

                                    var a=$("#radioHoverCMRS ").offset();
                                    $("#messageBoxCMRS").offset({ top: a.top, left: a.left+15 });
                                    
                                    if (document.getElementById('radioHoverERP')!=null)
                                        {
                                            var b=$("#radioHoverERP").offset();
                                            $("#messageBoxERP").offset({ top: b.top, left: b.left+15 });
                                        }
                                    if(document.getElementById('attributeChkBoxInfo') != null){
                                        
                                        var s = $("#attributeChkBoxInfo").offset();
                                        $("#messageBoxTAA").offset({top: s.top, left: s.left+15});
                                        chkTAAOnly(); //added by shanujai - TAA Scope -- Q1FY14
                                        }
                                    $("#productFamilyDetails").hide();
                                    $('#selectedPriceList').selectbox();
                                     $('#dlFileFormat').selectbox();
                                         testLoad();
                                         $('body').label_radio_check();
                                         loadMulitSelectbox();
                        }
                        
                        
                  function historyTab(data) {
                                      icw.progressBar.hideDialog();
                                      $("#currentpricelistNormal").attr("style","display:inline");
                                      $("#priceHistorySelected").attr("style","display:inline");
                                      $("#searchNormal").attr("style","display:inline");
                                      
                                      $("#currentpricelistSelected").attr("style","display:none");
                                      $("#priceHistoryNormal").attr("style","display:none");
                                      $("#searchSelected").attr("style","display:none");
                                      $('#currentData').html(data);
                                      
                                      //added by shanujai - TAA Scope -- Q1FY14
                                    //document.getElementById('attributeTAAOnly').style.display="none";
                                    if(document.getElementById('attributeGroup') != null){
                                    
                                      $("#taaPanel").attr("style","display:none");
                                      $("#attributeGroup").attr("style","display:none");
                                      $("#taaNote").attr("style","display:none");}
                                    //var isInternal = $("#isInternalHistory").val();                                      
                                              
                                      var g=$("#radioHoverCMRS").offset();
                                    $("#messageBoxCMRS").offset({ top: g.top, left: g.left+15 });
                                    
                                    if (document.getElementById('radioHoverERP')!=null)
                                        {
                                            var j=$("#radioHoverERP").offset();
                                            $("#messageBoxERP").offset({ top: j.top, left: j.left+15 });                                
                                        }
                                    if(document.getElementById('attributeGroup') != null){
                                        
                                        var s = $("#attributeChkBoxInfo").offset();
                                        $("#messageBoxTAA").offset({top: s.top, left: s.left+15});
                                        chkTAAOnlyView(); //added by shanujai - TAA Scope -- Q1FY14    
                                    }

                              
                                      
                        }
                        
                  function searchTab(data) {
                                      icw.progressBar.hideDialog();
                                      
                                      $("#currentpricelistNormal").attr("style","display:inline");
                                      $("#priceHistoryNormal").attr("style","display:inline");
                                      $("#searchSelected").attr("style","display:inline");
                                      $("#currentpricelistSelected").attr("style","display:none");
                                      $("#priceHistorySelected").attr("style","display:none");
                                      $("#searchNormal").attr("style","display:none");
                                       $('#currentData').html(data);
                                       if ($.browser.msie && $.browser.version < 9){
                                           $('#productPriceSearchMainTable').attr("style","width:100%")
                                       }
                                       if (document.getElementById('searchTypeRadio')!=null)
                                           {
                                               document.getElementById('searchTypeRadio').checked="checked";
                                               document.getElementById('selectedRadioType').value="1";
                                                $('body').label_radio_check();
                                           }
                                       if (document.getElementById('radioHoverCMRS')!=null)
                                    {
                                           var x=$("#radioHoverCMRS").offset();
                                        $("#messageBoxCMRS").offset({ top: x.top, left: x.left+15 });                    
                                    }

                                    if (document.getElementById('radioHoverERP')!=null)
                                    {
                                        var n=$("#radioHoverERP").offset();
                                        $("#messageBoxERP").offset({ top: n.top, left: n.left+15 });                        
                                    }
                                    

                         }
                  window.setTimeout(function() { $("#messageBox").hide(); }, 120000);
        });
    </script>


<style type="text/css">
.p2 {
    overflow: scroll;
    width: 400px;
    height: 200px;
}
</style>

<style type="text/css">
#pri fieldset select {
    margin: 14px;
}

#pri {
    margin-left: 20px
}

;
.selectbox {
    behavior: expression(window .   dropdown_menu_hack !=   null ?   window .
         dropdown_menu_hack(this) :   0 );
}

select {
    width: 220px; /* Or whatever width you want. */
}

select.expand {
    width: auto;
}
.seperator{
    color:red;
    width:70%;
    margin:20px auto;
    overflow:hidden;
    text-align:center;   
    line-height:1.2em;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
</style>

</head>

<body class="icwJS has-js has-js has-js has-js has-js has-js" id="libra">


    <input name="environment" id="environment" type="hidden" value="prod">
    
        











    
    
        
            <title>List Price Catalog</title>
            <!-- Include Global Meta Data -->
            <meta name="accessLevel" content="Guest">
            <meta name="country" content="US">
            <meta name="locale" content="US">
            <meta name="language" content="en">
            <meta name="title" content="Deal">
            <meta name="date" content="Fri Jan 18 12:56:35 PDT 2013">
            <!-- Include Global Head Directives -->
            
            <link href="c/homepage.mb.1.17.1.min.css" rel="stylesheet" type="text/css">
            <link href="c/icw.joined.css" rel="stylesheet" type="text/css">
            <link href="c/icw.progressBar.css" rel="stylesheet" type="text/css">
            <link href="c/datatable.css" rel="stylesheet" type="text/css">

<script>
$(document).ready(function(){
    bindIcwLogoutLink();
});
</script>
<script>function getCookieValue(c_name){
    
    
    if(document.cookie.length > 0){
        c_start=document.cookie.indexOf(c_name + "=");
        if(c_start!=-1){
            c_start=c_start + c_name.length+1;
            c_end=document.cookie.indexOf(";",c_start);
            if (c_end==-1) c_end=document.cookie.length;
            return unescape(document.cookie.substring(c_start,c_end));
        }
    }
    return "";
}

function bindIcwLogoutLink(){
    $("#icwLogoutLink").click(function(){
        var self = this;              
        icw.modal.show({
            anchor    : self,
            width : 500,
            content  : $("#icwLogoutModal"),      
            mode     : "modal",      
            align    : "top",
            callback : function(modal) {
                $(modal).find("#icwLogoutButtonLogout").click(function(){
                    icwLogoutButtonLogout();
                });
                $(modal).find("#icwLogoutButtonCancel").click(function(){
                    icw.modal.hide(modal);
                });    
            }
        });
    });
}
//
function icwLogoutButtonLogout() {
    //environment location will change for each track
    window.location = "/lpc/GlobalLogout.jsp";
    return false;
}    

</script>

<div class="icwLoadingPage" id="icwLoadingPage">
<div>
<div class="icwModalOnly">
<!--
    <div class="icwModalTitle"></div>
    <div class="icwInnerModalContent">
<div class="pageLoad" style="font-weight:bold;text-align:center; display:none;">Loading...
</div>
<div class="icwButtonArea">
<div class="pageSubmit">
<img align="center" src="/lpc/i/preloader.gif" alt="loading page....">
</div>
   </div>
    </div>
-->
</div>
</div>
</div>
    












<style>
a:link {text-decoration:underline;}    /* unvisited link */
a:visited {text-decoration:underline;} /* visited link */
</style>




<!--googleoff: index-->
<div id="fw-mb">
    <div id="fw-mb-w1">
        <div id="fw-banner">
            <div id="fw-banner-w1">
                <!-- logo -->
                <div id="fw-mbl">
                    <p>
                        <a href="http://www.cisco.com/en/US/hmpgs/index.html">Cisco.com
                            Worldwide Home</a>
                    </p>
                </div>

                <!-- megamenus -->
                <div id="fw-mm">
                    <table class="mm-items" cellspacing="0" summary="">
                        <tbody>
                            <tr>
                                <td class="mm-item" id="products-mm-item"><a class="mm-link" href="http://www.cisco.com/en/US/products/index.html">
                                    Products &amp; Services</a>
                                    </td>
                                <td class="mm-item" id="support-mm-item"><a class="mm-link" href="http://www.cisco.com/en/US/support/index.html">
                                    Support</a>
                                    </td>
                                <td class="mm-item" id="ordering-mm-item"><a class="mm-link" href="http://www.cisco.com/web/ordering/root/index.html">
                                    How to buy</a>
                                    </td>
                                <td class="mm-item" id="training-mm-item"><a class="mm-link" href="http://www.cisco.com/en/US/learning/index.html">
                                    Training &amp; Events</a>
                                    </td>
                                <td class="mm-item" id="partner-mm-item"><a class="mm-link" href="http://www.cisco.com/en/US/partners/index.html">
                                    Partners</a>
                                    </td>
                            </tr>
                        </tbody>
                    </table>
                </div>

                <!-- end #fw-mm -->
                <!-- search -->
                <span class="search-entitlement">Guest</span>

                <div id="fw-mbs">
                    <a name="search"></a>

                    <form name="sitewidesearch" id="sitewidesearch" action="http://tools.cisco.com/search/JSP/search-results.get" method="get">
                        <label id="search" for="searchPhrase" name="search">Search</label>

                        <p class="field-button">
                            <input name="strQueryText" tabindex="1" class="field-button-field" id="searchPhrase" type="text" value="" autocomplete="off"> <input tabindex="2" class="field-button-button" id="go" type="submit" value="Search">
                        </p>

                        <input name="Search All cisco.com" type="hidden" value="cisco.com">
                        <input name="language" type="hidden" value="en"> <input name="country" type="hidden" value="US"> <input name="thissection" type="hidden" value="f"> <input name="accessLevel" type="hidden" value="Guest">
                    </form>
                </div>

                <!-- end #fw-mbs -->
                <!-- toolbar -->
                <div id="fw-ft-basic">
                    <div class="ft-toolbar">
                        <div class="ft-group ft-country-lang-group">
                            <div class="ft-sect ft-country">
                                <a class="ft-label" href='javascript:window.open("http://www.cisco.com/web/siteassets/locator/index.html","","width=643,height=468");return false'>
                                    <span class="ft-country-name">Worldwide [Change]</span></a>
                            </div>
                        </div>

                        <div class="ft-group ft-entitled-group">
                            <div class="ft-sect ft-welcome ft-active">
                                <span class="ft-label loggedin" id="cdc-loggedin-msg">Welcome &nbsp;James Fogel</span>
                             </div>
                            <div class="ft-sect ft-account">
                                <a class="ft-label" href="http://www.cisco.com/web/siteassets/account/index.html">
                                Account</a>
                            </div>
                            <div class="ft-sect ft-logout">
                                <a class="ft-label" id="logoutLink" href="javascript:return false;">
                                Log Out</a>
                            </div>

                            <div class="ft-sect ft-mycisco">
                                <a class="ft-label" href="http://www.cisco.com/cisco/psn/web/workspace">
                                My Cisco</a>
                            </div>
                        </div>
                    </div>

                    <!-- end #ft-toolbar -->
                </div>

                <!-- end #fw-ft-basic -->
            </div>

            <!-- end #fw-banner-w1 -->
        </div>

        <!-- end #fw-banner -->
        <!-- END MasterBrand Banner SSI (guest) -->
        <!-- end #fw-banner-w1 -->
        <!-- end #fw-banner -->
        <!-- END MasterBrand Banner SSI (guest) -->
        <!-- end #fw-banner-w1 -->
        <!-- end #fw-banner -->
        <!-- END MasterBrand Banner SSI (guest) -->

    </div>
    <!-- end #fw-mb-w1 -->
</div>
<div id="logoutDiv" style="display: none;">
<div class="jqmOverlay" style="left: 0px; top: 0px; width: 100%; height: 100%; position: fixed; z-index: 3699; cursor: wait; opacity: 0.5;"></div>
<div class="jqmID1" id="logoutmsg" style="left: 478px; display: block; z-index: 3700;"><span id="lm-corner-top"><span></span></span><h4>Log Out</h4><div>You are about to log out of Cisco.com.<br>If your task is incomplete, please click Cancel to finish or save.</div><a class="a00v1" href="https://www.cisco.com/autho/logout.html?ReturnUrl=http://www.cisco.com/web/fw/lo/logout.html">Log Out</a><a class="a00v1" id="logoutclose" href="javascript:return false">Cancel</a><span id="lm-corner-bot"><span></span></span>
</div>
</div>

<!-- Added from banner -->
 
        
    
        <!--<div class="wrapper" style="padding-bottom:0px;"> -->
        <div style="margin: auto; width: 1000px; padding-top: 5px; position: relative;">
        <div id="framework-content-titles" style="margin-left: 0px;">
            <!-- ***PAGE TITLE*** -->
            <h2 class="title-page">List Price Catalog</h2>
            <!-- ***END PAGE TITLE*** -->
        </div>
        
        <div id="framework-content-main">
          <!--Begin Main Content-->
          <div class="icw">
                    <div class="icwProfile icwWrapper">
                        <div class="icwMainLinks">
                            <div class="icwHomeLink" style="padding-top: 5px;">
                                <a style="font-size: 11px;" href="https://papps.cisco.com/cisco/psn/commerce">Commerce Workspace Home</a>
                            </div><!-- /.icwHomeLink-->
                            <div class="icwHelpFBLinks">
                                <ul style="margin-right: 5px;">
                                    <li class="icwHelpLink" style="line-height: 120%;"><a style="font-size: 11px;" href="http://www.cisco.com/cisco/psn/web/workspace?gtmsUCRMCaseId=1111">Open a Case</a></li>
                                    <li class="icwFBLink" style="line-height: 120%;"><a style="font-size: 11px;" href="http://www.cisco.com/web/partners/events/commerce_workspace.html">Training</a></li>
                                    <!-- <li id="icwLogoutLink" class="icwFBLink" style="LINE-HEIGHT: 120%;"><a href="javascript:void(0);" style="font-size: 11px;">Log Out</a></li> -->
                                </ul>
                            </div><!-- /.icwHelpFBLinks-->
                        <!-- /.icwMainLinks -->
                            </div>
                    </div>
            </div>
        </div>
        <div class="icwProfileName" style="padding-bottom: 5px;">
        <label style="font-size: 11px;" for="header-view:faqText">
        View and Download pricing information on Cisco products and services. To learn more see <a style="font-size: 11px;" href="glossary.faces" target="popupWindow">Glossary</a> or <a style="font-size: 11px;" href="faq.faces" target="popupWindow">FAQs</a>.</label>
        </div>
        
        <div class="alert alert-info fade in alert-dismissable" id="messageBox" style="display: none;">
          <button class="close" aria-hidden="true" type="button" data-dismiss="alert">×</button>
          <strong>The ‘PRE SET SERVICE PRICE FILES’ will be retired, and no longer updated after the September 2014 publication.</strong>Please take the necessary steps to comply with the new option for ‘Service to Product’ automated reports.                     
            In addition, on Sept 8th, the automated reports will be enhanced to include additional features, and data.
            For any questions/comments, please send a mail to&nbsp;<a href="mailto:service_price_file_feedback@external.cisco.com"  target="_top">service_price_file_feedback@external.cisco.com</a>. Please see the&nbsp;<a href="http://www.cisco.com/E-Learning/gbo-ccw/cdc_bulk/CCW_Q3FY14_March_Release/CCW_Services_Price_List_Catalog_Automation_Quick_Reference_Guide.pdf"  target="_blank">Price List Catalog Automation Quick Reference Guide</a>&nbsp;for more information.
            
            
        </div>
        <div class="icw">
            <div id="icwLogoutModal">
                <div class="icwModalOnly">    
                </div>
            </div>
        </div>
        </div>
    


<!-- Added from banner -->
<script type="text/javascript">
<!--
$(document).ready(function(){
    $("#logoutLink").click(function() {
        $("#logoutDiv").show();    
    });
    $("#logoutclose").click(function() {
        $("#logoutDiv").hide();    
    });
});
//-->
</script>




    




    
    <div class="wrapper" style="margin-top: -10px;">
        <div id="framework-content-main" style="margin: auto; width: 1000px; position: relative; z-index: 1000;">
            <div class="icw" id="entireContent">
                <div class="icwProfile icwWrapper">
                    <div class="icwMainLinks">
                        <div class="icwHomeLink">
                                    <div class="icwTabs icwClear">
                                        <ul>
                                            <li class="icwSelected" id="currentpricelistSelected"><span>Current Price List</span></li>
                                            <li id="currentpricelistNormal" style="display: none;"><a id="currentPrice"><span>Current Price List</span></a></li>
                                            <li id="priceHistoryNormal"><a id="priceHistory"><span>Price List History</span></a></li>
                                            <li class="icwSelected" id="priceHistorySelected" style="display: none;"><span>Price List History</span></li>
                                            <li id="searchNormal"><a id="productpricesearch"><span>Product Price Search</span></a></li>
                                            <li class="icwSelected" id="searchSelected" style="display: none;"><span>Product Price Search</span></li>
                                        </ul>
                                    </div><!-- end of icwTabs -->
                                    <div class="tabcontent">
                                        <div class="clear"></div>
                                        <div id="currentData"><!--
    
    Added by ks3 for Ajax Implementation
    
    Called on initial Page Load and when user clicks on current Pricelist
    
    November 2011
-->















<style type="text/css">
#pri fieldset select {
    margin: 14px;
}

#pri {
    margin-left: 20px
}

;
.selectbox {
    behavior: expression(window . dropdown_menu_hack != null ? window .
        dropdown_menu_hack(this): 0);
}

select {
    width: 220px;
}

select.expand {
    width: auto;
}
</style>





    <input name="jsonLvItemCatObj" id="jsonLvItemCatObj" type="hidden" value='["Bundle","Hardware Products","Service SKU","Warranty","IOS Software","License","Non IOS Software","SW Subscription Mapped SKU","All"]'>
    <input name="selectedRadioTypeForCurrent" id="selectedRadioTypeForCurrent" type="hidden" value="1">
    <input name="selectError" id="selectError" type="hidden" value="Please Select an Option for All Fields">
    <input name="productError" id="productError" type="hidden" value="Please do not Select More Than 10 Product Families">
    <input name="selectFormatVal" id="selectFormatVal" type="hidden" value="Select a File Format">
    <input name="selectFileCmpwinmacVal" id="selectFileCmpwinmacVal" type="hidden" value="Compressed Microsoft Excel File for Windows and Mac OS">
    <input name="selectFileCmptxtVal" id="selectFileCmptxtVal" type="hidden" value="Compressed Space-Delimited Text File">
    <input name="selectFileWinmacVal" id="selectFileWinmacVal" type="hidden" value="Microsoft Excel File for Windows and Mac OS">
    <input name="selectFileExcelcVal" id="selectFileExcelcVal" type="hidden" value="Microsoft Excel 2007 Compatible File Format">
    <input name="selectFileExcelVal" id="selectFileExcelVal" type="hidden" value="Microsoft Excel 2007 File">
    <input name="selectFileTxtVal" id="selectFileTxtVal" type="hidden" value="Space-Delimited Text File">
    <input name="selectFileFlatVal" id="selectFileFlatVal" type="hidden" value="Ascii Flat File">
    <input name="intrnalErrorMsg" id="intrnalErrorMsg" type="hidden" value="Internal Error Occurred. Submit a case online with CCW Support.">
    <input name="noFileFoundMessage" id="noFileFoundMessage" type="hidden" value="No file found for your download criteria. Please raise a support case or select a different criteria.">
    <input name="unpublishedReport" id="unpublishedReport" type="hidden" value="This report is not publishable. Please select another option.">
    <input name="serviceLevelErrMsg1" id="serviceLevelErrMsg1" type="hidden" value="No more than 10 service levels can be selected per query">
    <input name="serviceLevelErrMsg2" id="serviceLevelErrMsg2" type="hidden" value="Please select either 'All Service level' or the individual service levels">
    <input name="pricelistErrMsg" id="pricelistErrMsg" type="hidden" value="No more than 4 pricelist can be selected per query">
    <input name="allServiceLevelOptVal" id="allServiceLevelOptVal" type="hidden" value="All Service Level">
    <input name="selPriceList" id="selPriceList" type="hidden" value="Select a Price List">
    <input name="selectedPriceListForSO" id="selectedPriceListForSO" type="hidden" value="Price List Selected">
    <input name="moreLinkId" id="moreLinkId" type="hidden" value="..More">
    <input name="downloadReportMsgforServiceProgram" id="downloadReportMsgforServiceProgram" type="hidden" value="Service File is getting generated. It may take some time to download. Please have patience.">
    <input name="closeBtnLabel" id="closeBtnLabel" type="hidden" value="Close">
    <input name="dppRadioButtonSelected" id="dppRadioButtonSelected" type="hidden" value="1">
    <input name="bootstrapSelectedButton" id="bootstrapSelectedButton" type="hidden" value="Pricing">

    <input name="userIdForUsageMatrix" id="userIdForUsageMatrix" type="hidden" value="James.Fogel1">
    <input name="accessLevelForUsageMatrix" id="accessLevelForUsageMatrix" type="hidden" value="3">
    <input name="partnerTypeForUsageMatrix" id="partnerTypeForUsageMatrix" type="hidden" value="2-tier">
    <input name="navigationUrlForUsageMatrix" id="navigationUrlForUsageMatrix" type="hidden" value="">
    <input name="commaSeparatePricelistIdsForExtUsr" id="commaSeparatePricelistIdsForExtUsr" type="hidden" value="">

    <input name="twoPriceListSelected" id="twoPriceListSelected" type="hidden" value="2 Price List Selected">
    <input name="threePriceListSelected" id="threePriceListSelected" type="hidden" value="3 Price List Selected">
    <input name="fourPriceListSelected" id="fourPriceListSelected" type="hidden" value="4 Price List Selected">
        
    <input name="serviceFileFormatInXls" id="serviceFileFormatInXls" type="hidden" value="Microsoft Excel Workbook in .xls format">
    <input name="serviceFileFormatInXlsx" id="serviceFileFormatInXlsx" type="hidden" value="Microsoft Excel Workbook in .xlsx format">    

    <div class="priceLeft">
    
        
            
                
            
            
                
            
        
    <span id="catalogGrp"><table class="singleField" id="catalogGrid" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 800;">
<span style="font-weight: bold; z-index: 790;">Catalog:</span></label></td>
</tr>
<tr>
<td><span id="catGrp" style="z-index: 790;"><label class="label_radio r_on" style="z-index: 770;">Global/Wholesale Price File
                        <input id="catGPLWPL" style="z-index: 760;" onclick="catChangeType(1);" type="radio" checked="checked" value="1"> </label>
                    <div class="relative floatLeft">
                        <span class="infoDis tooltip" id="radioHoverGPLWPL" style="z-index: 750;" onmouseover="mouseOverGPLWPL();" onmouseout="mouseOutGPLWPL();"></span>
                    </div>
                    <div class="spacer5"></div></span></td>
</tr>
</tbody>
</table>
</span>
    <!--added for DPP Q4FY14 scope- done by shanujai  -->
    <div class="creditPop" id="messageBoxDPP">
            Refers to Price Files containing Global/Wholesale list prices for products, distributor standard discounts and other information of interest to Distributors for the applicable region, country or location.
        </div>
    <div class="creditPop" id="messageBoxGPLWPL">
            Refers to the Global/Wholesale Price Lists which contains published price information for Products, Services, Subscription items in the stated currency for the applicable region, country or location.
        </div>
    <!--changes ends here  -->

    <!-- added for Bootstrap ToolTip [S] - eechhabr -->
    <div class="creditPop" id="messageBoxBootstrap">
            Refers to B2B catalog views containing item, list price, product family and product-to-service mapping information of interest to B2B partners and B2B distributors.
        </div>
    <!-- added for Bootstrap ToolTip [E] - eechhabr -->
    
    
        
            

                
                    
                
                
                    
                
            
        

        
        
        
        <!-- Added for service file scope -->
        
        
        <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [S]  -->
        
            
        
        <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [E]  -->
        
        
            
                
            
            
                
                    
                    
                
            
        

        
        
            
                
                    

                

                
                    
                


                
                    
                

            

            



            

            


            
                
            
            

            

            

            
                
                    

                

                
                    
                    
                
                
            
            <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [S]  -->
            
                
                    

                

                
                    
                    
                
                
            
            <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [E]  -->
            
                <!--  added by shanu jain label for TAA only - Q1FY14 changes starts -->
                
                    
                    
                        <div class="spacer15"></div>
                        
                    
                
                
                <!-- changes ends - Q1FY14  -->
            
            
            
                
                    

                

                
                    
                    
                    
                    
                    
                    
                    
                    
                

                
                
                
            


        


        


            

                
                    

                

                
                    
                

                
                
                    

                

                
                    
                    
                    
                

                

            

        

        <!-- service file scope changes by Rachna -->
        

            
                
                    <!-- to get the value from localbean -->
                    
                
                
                    
                    
                    
                
            

            
                
                    <!-- to get the value from localbean -->
                    
                
                
                
                
                
                    
                
            
            <!--
            
            -->
            
            
            
                
                    
                
                
                
                    
                
            
        
        <!-- SAAS Code changed by Nishad -->
        
            

                
                    

                
                
                    
                
                
                    
                
            
            
            
            
            
                
                    

                
                
                    
                    
                
                
            


            <!--  added by shanujai for on Premises changes Q1FY15 -->

            
                
                    
                
                
                    
                    
                
                
            

            <!-- changes ends here  -->


            
                
                    

                
                

                
                
                
                
            


        

    <span id="gplwplGrp"><span id="complete"><table class="singleField" id="selectRadioDownload" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 780;">
<span style="font-weight: bold; z-index: 770;">Offer Category:</span></label></td>
</tr>
<tr>
<td><span id="test1" style="z-index: 770;"><label class="label_radio r_off" style="z-index: 740;">Products &amp; Services <input name="offCatgry" id="downloadTypeProducts" style="z-index: 760;" onclick="fnChangeType(1);" type="radio" checked="checked" value="1"> </label>
                        <div class="relative floatLeft">
                            <span class="infoDis tooltip" id="radioHoverProducts" style="z-index: 750;" onmouseover="mouseOverProducts();" onmouseout="mouseOutProducts();"></span>
                        </div>
                        <div class="spacer5"></div>
                        <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [S]  -->
                        <label class="label_radio r_off" style="z-index: 740;">Products Only <input name="offCatgry" id="downloadTypeProductsOnly" style="z-index: 730;" onclick="fnChangeType(8);" type="radio" value="8">
                        </label>
                        <div class="relative floatLeft">
                            <span class="infoDis tooltip" id="radioHoverProductsOnly" style="z-index: 730;" onmouseover="mouseOverProductsOnly();" onmouseout="mouseOutProductsOnly();"></span>
                        </div>
                        <div class="spacer5"></div>
                        <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [E]  -->
                        <label class="label_radio r_on" style="z-index: 700;">Services Only <input name="offCatgry" id="downloadTypeServices" style="z-index: 710;" onclick="fnChangeType(2);" type="radio" checked="checked" value="2"> </label>
                        <div class="relative floatLeft">
                            <span class="infoDis tooltip" id="radioHoverServices" style="z-index: 690;" onmouseover="mouseOverServices();" onmouseout="mouseOutServices();"></span>
                        </div>

                        <!--  added by rachna for Service File Scope - FEB MR changes -->
                        <div id="serviceRad" style="display: none;">
                            <div class="spacer5"></div>
                            <div style="padding-left: 20px;">
                                <label class="label_radio r_on" style="z-index: 700;">Service to Product <input name="service" id="downloadTypeProtoServices" style="z-index: 680;" onclick="fnChangeType(4);" type="radio" checked="checked" value="4"> </label>
                                <div class="relative floatLeft">
                                    <span class="newTooltip" id="radioHoverServiceProd" style="z-index: 680;"></span>
                                </div>
                            </div>
                            <div class="spacer5"></div>
                            <div style="padding-left: 20px;">
                                <div class="marginL10"></div>
                                <label class="label_radio r_off" style="z-index: 700;">Pre Set Service Price Files <input name="service" id="downloadTypePreServices" style="z-index: 680;" onclick="fnChangeType(6);" type="radio" value="6"> </label>
                                <div class="relative floatLeft">
                                    <span class="infoDis tooltip" id="radioHoverPreServices" style="z-index: 680;" onmouseover="mouseOverPreSetServices();" onmouseout="mouseOutPreSetServices();"></span>
                                </div>

                            </div>
                        </div>

                        <div class="spacer5"></div>
                        <label class="label_radio r_off" style="z-index: 660;">Subscription Items (SaaS, On-Premise)
                            <input name="offCatgry" id="downloadTypeSAAS" style="z-index: 670;" onclick="fnChangeType(3);" type="radio" value="3"> <span class="infoDis tooltip" id="radioHoverSAAS" style="z-index: 650;" onmouseover="mouseOverSAAS();" onmouseout="mouseOutSAAS();"></span>
                        </label></span></td>
</tr>
</tbody>
</table>
</span><div class="creditPop" id="messageBoxProducts" style="left: 366.05px; top: 407.45px;">
              Refers to the Global/Wholesale Price Lists which contain published price information for products and services in the stated currency for the applicable region, country, or location.
        </div><div class="creditPop" id="messageBoxProductsOnly">
                Refers to Global or Wholesale price list which contain published price information for products in the stated currency for the applicable region, country or location.
            </div><div class="creditPop" id="messageBoxServices" style="left: 334.85px; top: 455.45px;">
                Refers to the Service Price Lists which show product to service relationships and prices.
            </div><div class="creditPop" id="messageBoxPreSetServices" style="left: 40px; top: -22px;">
                Please know that these are the manually updated Service Price Files are only updated monthly. Please use the latest feature of Price Files on the Current Price List Tab to get the DAILY updated Prices on Service items and Price Files. This older version of Price Files download will retire in the future with the date still to be announced.
            </div><div class="creditPop" id="messageBoxSAAS">
                Refers to the Global/Wholesale Price Lists which contains published price information for SaaS subscription items in the stated currency for the applicable region, country or location.
            </div><div class="spacer15"></div><table width="100%" class="singleField" id="mainPLgrid" style="display: none;" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 760;" for="priceList">
<span id="priceList" style="font-weight: bold; z-index: 640;">Price List: </span></label></td>
</tr>
<tr>
<td><span style="width: 100%; z-index: 750;"><select name="selectedPriceList" class="wide" id="selectedPriceList" style="width: 350px; display: none;" onmousedown="resizeforIE()" onblur="resizeBackIE()" onchange="fnPLDropdwnProgDialog();" size="1" sb="35834841">    <option value="defaultPriceList">Select a Price List</option>
</select><div class="sbHolder" id="sbHolder_35834841"><a class="sbToggle" id="sbToggle_35834841" href="#"></a><a class="sbSelector" id="sbSelector_35834841" href="#">Select a Price List</a><ul class="sbOptions" id="sbOptions_35834841" style="display: none;"><li class="last"><a href="#defaultPriceList" rel="defaultPriceList">Select a Price List</a></li></ul></div></span></td>
</tr>
</tbody>
</table>
<div class="spacer15"></div><span id="cplFormMainPage" style="display: none;"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 740;" for="downloadType">
<span id="downloadType" style="font-weight: bold;">Contents:</span></label></td>
</tr>
<tr>
<td><span id="test2" style="z-index: 730;"><label class="label_radio r_on">Entire Price List <input id="downloadTypeRadioForCurrent" onclick="fnPriceListProgressDialog();" type="radio" checked="checked" value="1"> </label>
                        <div class="relative floatLeft">
                            <span class="infoDis tooltip" id="radioHoverPR" style="z-index: 650;" onmouseover="mouseOverEPL();" onmouseout="mouseOutEPL();"></span>
                        </div>
                        <div id="sp3" style="height: 4px; clear: both;"></div></span></td>
</tr>
<tr>
<td><span id="test3" style="z-index: 720;"><input name="isInternal" id="isInternal" type="hidden" value="false"><label class="label_radio r_off">Product Family <input name="Product Family" id="products" onclick="fnShowFamilyProgressDialog(this)" type="radio" value="Product Family"> </label>
                        <div class="relative floatLeft">
                            <span class="infoDis tooltip" id="radioHoverCMRS" style="z-index: 650;" onmouseover="mouseOverCMRS();" onmouseout="mouseOutCMRS();"></span>
                        </div>
                        <div class="spacer5" id="sp3"></div></span></td>
</tr>
</tbody>
</table>
<table width="100%" id="entireFamilyGrid" style="display: none;" cellspacing="0">
<tbody>
</tbody>
</table>
<div class="creditPop" id="messageBoxEPL" style="left: 344.03px; top: 631.1px;">
                    <!-- <div class="tooltiparrowimage"></div> -->
                    Contains pricing information for all products and services on the selected price list.
                </div>
                <div class="creditPop" id="messageBoxEPL_PO">
                    Contains pricing information for products on the selected price list
                </div><table width="100%" id="prodFamilyGridInternal" style="display: none;" cellspacing="0">
<tbody>
<tr>
<td><td width="25%"></td>
</tr>
</tbody>
</table>
<div class="creditPop" id="messageBoxCMRS" style="left: 340.35px; top: 654.1px;">
                       Product Family, also referred to as CMRS (Cisco Marketplace Router Store) Product Family, categorizes products for online searching and promotion eligibility. A Product can belong to multiple CMRS Product Families.
                     </div><div class="creditPop" id="messageBoxERP">
                    <!--  <div class="tooltiparrowimage"></div> -->
                    ERP (Enterprise Resource Planning) Product Family is an element of the Product Hierarchy that consists of Technology Group, Business Unit, Product Family,  Product Type and Product Sub-Group. A Product can belong to one and only one ERP Product Family.
                </div><div class="singleField" id="productFamilyDetails" style="width: 830px; display: none; z-index: 730;"></div><table width="100%" class="singleField" id="itemGrid" style="display: none;" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" id="itemCat" style="z-index: 710;">
<span id="ItemCategory" style="font-weight: bold; display: none;">Item Category:</span></label></td>
</tr>
<tr>
<td><select name="selectedItemCategory" class="icwSelect icwRequiredItem selectbox" id="selectedItemCategory" style="width: 200px; display: none; z-index: 700;" size="1">    <option value="Select an Item Category">Select an Item Category</option>
    <option value="Bundle">Bundle</option>
    <option value="Hardware Products">Hardware Products</option>
    <option value="Service SKU">Service SKU</option>
    <option value="Warranty">Warranty</option>
    <option value="IOS Software">IOS Software</option>
    <option value="License">License</option>
    <option value="Non IOS Software">Non IOS Software</option>
    <option value="SW Subscription Mapped SKU">SW Subscription Mapped SKU</option>
    <option value="All">All</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 690;"></div></td>
</tr>
</tbody>
</table>
<table width="100%" class="singleField" id="itemGridPO" style="display: none;" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" id="itemCatPO" style="z-index: 680;">
<span id="ItemCategoryPO" style="font-weight: bold;">Item Category:</span></label></td>
</tr>
<tr>
<td><select name="selectedItemCategoryPO" class="icwSelect icwRequiredItem selectbox" id="selectedItemCategoryPO" style="width: 200px; z-index: 670;" size="1">    <option value="Select an Item Category">Select an Item Category</option>
    <option value="Bundle">Bundle</option>
    <option value="Hardware Products">Hardware Products</option>
    <option value="Warranty">Warranty</option>
    <option value="IOS Software">IOS Software</option>
    <option value="License">License</option>
    <option value="Non IOS Software">Non IOS Software</option>
    <option value="SW Subscription Mapped SKU">SW Subscription Mapped SKU</option>
    <option value="All">All</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 660;"></div></td>
</tr>
</tbody>
</table>
<table width="200%" class="singleField" id="taaGrid" style="display: none;" cellspacing="2">
<tbody>
<tr>
<td><input name="TAAOnly" id="TAAOnly" style="z-index: 650;" type="hidden" value="no"></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 640;"></div></td>
</tr>
</tbody>
</table>
<div class="creditPop" id="messageBoxTAA">
                    <!-- <div class="tooltiparrowimage"></div> -->
                    &nbsp;
                    These items are eligible to satisfy U.S. Federal Government procurement rules pertaining to the Trade Agreements Act.
                    <br>
                    <!-- These items are eligible to satisfy U.S. Federal Government procurement rules pertaining to the Trade Agreements Act. -->
                </div><table width="100%" class="singleField" id="selectFormats" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 630;">
<span id="fileFormatProdFam" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><select name="dlFileFormat" class="icwSelect icwRequiredItem" id="dlFileFormat" style="width: 350px; display: none; z-index: 620;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" onchange="showFormatHelp()" size="1" sb="20719232">    <option value="Select a File Format">Select a File Format</option>
    <option value="Compressed Microsoft Excel File for Windows and Mac OS">Compressed Microsoft Excel File for Windows and Mac OS</option>
    <option value="Compressed Space-Delimited Text File">Compressed Space-Delimited Text File</option>
    <option value="Microsoft Excel File for Windows and Mac OS">Microsoft Excel File for Windows and Mac OS</option>
    <option value="Microsoft Excel 2007 Compatible File Format">Microsoft Excel 2007 Compatible File Format</option>
    <option value="Microsoft Excel 2007 File">Microsoft Excel 2007 File</option>
    <option value="Space-Delimited Text File">Space-Delimited Text File</option>
    <option value="Ascii Flat File">Ascii Flat File</option>
</select><div class="sbHolder" id="sbHolder_20719232" style="z-index: 610;"><a class="sbToggle" id="sbToggle_20719232" href="#"></a><a class="sbSelector" id="sbSelector_20719232" href="#">Select a File Format</a><ul class="sbOptions" id="sbOptions_20719232" style="display: none;"><li><a href="#Select a File Format" rel="Select a File Format">Select a File Format</a></li><li><a href="#Compressed Microsoft Excel File for Windows and Mac OS" rel="Compressed Microsoft Excel File for Windows and Mac OS">Compressed Microsoft Excel File for Windows and Mac OS</a></li><li><a href="#Compressed Space-Delimited Text File" rel="Compressed Space-Delimited Text File">Compressed Space-Delimited Text File</a></li><li><a href="#Microsoft Excel File for Windows and Mac OS" rel="Microsoft Excel File for Windows and Mac OS">Microsoft Excel File for Windows and Mac OS</a></li><li><a href="#Microsoft Excel 2007 Compatible File Format" rel="Microsoft Excel 2007 Compatible File Format">Microsoft Excel 2007 Compatible File Format</a></li><li><a href="#Microsoft Excel 2007 File" rel="Microsoft Excel 2007 File">Microsoft Excel 2007 File</a></li><li><a href="#Space-Delimited Text File" rel="Space-Delimited Text File">Space-Delimited Text File</a></li><li><a href="#Ascii Flat File" rel="Ascii Flat File">Ascii Flat File</a></li></ul></div></td>
</tr>
<tr>
<td><div class="spacer5" style="z-index: 600;"></div></td>
</tr>
<tr>
<td><span class="inlineNote marginL0" id="formatHelp" style="display: none; z-index: 590;">Note:  The data may be displayed in multiple worksheets.</span></td>
</tr>
<tr>
<td><div class="spacer5" style="z-index: 580;"></div></td>
</tr>
</tbody>
</table>
</span><span id="cplFormServicePage" style="display: none;"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 570;" for="priceList">
<span id="priceListService" style="font-weight: bold;">Price List: </span></label></td>
</tr>
<tr>
<td><select name="SelectedPriceListService" class="icwSelect icwRequiredItem" id="SelectedPriceListService" style="width: 350px; z-index: 560;" size="1">    <option value="csspl">Cisco Service &amp; Support Price List</option>
    <option value="sspl">Cisco Service and Support Price List 2</option>
    <option value="cbrow">Collaborative Services INT</option>
    <option value="cbucn">Collaborative Services NA</option>
    <option value="brlpl">Global Brazil Service Price File in Real</option>
    <option value="cglo">Global Canada Service Price File in Canadian Dollars</option>
    <option value="china">Global China Service Price File in US Dollars</option>
    <option value="pmcan">Partner Managed CAN</option>
    <option value="pmusa">Partner Managed US</option>
    <option value="pssr">Partner Support Service Price File ROW</option>
    <option value="pss">Partner Support Service Price File US and Canada</option>
    <option value="spssp">SP Service &amp; Support Price List</option>
    <option value="apaud">Shared Support Australia Price List in AUDs Ex-Tax</option>
    <option value="apacu">Shared Support Global Asia-Pac Price List in US Dollars</option>
    <option value="cpcan">Shared Support Global Canada Price List in CANADIAN Dollars</option>
    <option value="emusd">Shared Support Global EMEA Price List in US Dollars</option>
    <option value="erusd">Shared Support Global Emerging Price List in US Dollars</option>
    <option value="gpusd">Shared Support Global Price List in US Dollars</option>
    <option value="lausd">Shared Support LATAM Price List in US Dollars</option>
    <option value="ruusd">Shared Support Russia Price List in US Dollars</option>
    <option value="smart">Smart Care Service Price List</option>
    <option value="sntc">Smart Net Total Care</option>
    <option value="telep">TelePresence Services Price File</option>
    <option value="ucspl">Unified Computing Services Price File</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 550;"></div></td>
</tr>
<tr>
<td><label class="labelField" style="z-index: 540;">
<span id="fileFormatService" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><select name="serviceFileFormat" class="icwSelect icwRequiredItem" id="serviceFileFormat" style="width: 350px; z-index: 530;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1">    <option value="default">Select a File Format</option>
    <option value="Microsoft Excel File for Windows and Mac OS">Microsoft Excel File for Windows and Mac OS</option>
    <option value="Compressed Microsoft Excel File for Windows and Mac OS">Compressed Microsoft Excel File for Windows and Mac OS</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 520;"></div></td>
</tr>
</tbody>
</table>
</span><span id="cplFormProdtoServicePage"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 510;" for="serviceProgram">
<span id="serviceProgram" style="font-weight: bold;">Service Program:</span></label></td>
</tr>
<tr>
<td><select name="SelectedServiceProgram" class="icwSelect icwRequiredItem" id="SelectedServiceProgram" style="width: 350px; display: none; z-index: 500;" onchange="fnPLDropdwnOnProgService();" size="1" sb="25355547">    <option value="default">Select a Service Program</option>
    <option value="ADVANCED SERVICES">ADVANCED SERVICES</option>
    <option value="CISCO SERVICES &amp; SUPPORT">CISCO SERVICES &amp; SUPPORT</option>
    <option value="COLLABORATIVE SERVICES">COLLABORATIVE SERVICES</option>
    <option value="COLLABORATIVE SERVICES NA">COLLABORATIVE SERVICES NA</option>
    <option value="NETWORK OPTIMIZATION">NETWORK OPTIMIZATION</option>
    <option value="NO SERVICE CHARGE">NO SERVICE CHARGE</option>
    <option value="PARTNER MANAGED SERVICES">PARTNER MANAGED SERVICES</option>
    <option value="PARTNER SUPPORT SERVICE">PARTNER SUPPORT SERVICE</option>
    <option value="SHARED SUPPORT SERVICES">SHARED SUPPORT SERVICES</option>
    <option value="SMART CARE SERVICE">SMART CARE SERVICE</option>
    <option value="SMART NET TOTAL CARE">SMART NET TOTAL CARE</option>
    <option value="SP SERVICES &amp; SUPPORT">SP SERVICES &amp; SUPPORT</option>
    <option value="TELEPRESENCE">TELEPRESENCE</option>
    <option value="UNIFIED COMPUTING SERVICES">UNIFIED COMPUTING SERVICES</option>
</select><div class="sbHolder" id="sbHolder_25355547" style="z-index: 490;"><a class="sbToggle" id="sbToggle_25355547" href="#"></a><a class="sbSelector" id="sbSelector_25355547" href="#">Select a Service Program</a><ul class="sbOptions" id="sbOptions_25355547" style="display: none;"><li><a href="#default" rel="default">Select a Service Program</a></li><li><a href="#ADVANCED SERVICES" rel="ADVANCED SERVICES">ADVANCED SERVICES</a></li><li><a href="#CISCO SERVICES &amp; SUPPORT" rel="CISCO SERVICES &amp; SUPPORT">CISCO SERVICES &amp; SUPPORT</a></li><li><a href="#COLLABORATIVE SERVICES" rel="COLLABORATIVE SERVICES">COLLABORATIVE SERVICES</a></li><li><a href="#COLLABORATIVE SERVICES NA" rel="COLLABORATIVE SERVICES NA">COLLABORATIVE SERVICES NA</a></li><li><a href="#NETWORK OPTIMIZATION" rel="NETWORK OPTIMIZATION">NETWORK OPTIMIZATION</a></li><li><a href="#NO SERVICE CHARGE" rel="NO SERVICE CHARGE">NO SERVICE CHARGE</a></li><li><a href="#PARTNER MANAGED SERVICES" rel="PARTNER MANAGED SERVICES">PARTNER MANAGED SERVICES</a></li><li><a href="#PARTNER SUPPORT SERVICE" rel="PARTNER SUPPORT SERVICE">PARTNER SUPPORT SERVICE</a></li><li><a href="#SHARED SUPPORT SERVICES" rel="SHARED SUPPORT SERVICES">SHARED SUPPORT SERVICES</a></li><li><a href="#SMART CARE SERVICE" rel="SMART CARE SERVICE">SMART CARE SERVICE</a></li><li><a href="#SMART NET TOTAL CARE" rel="SMART NET TOTAL CARE">SMART NET TOTAL CARE</a></li><li><a href="#SP SERVICES &amp; SUPPORT" rel="SP SERVICES &amp; SUPPORT">SP SERVICES &amp; SUPPORT</a></li><li><a href="#TELEPRESENCE" rel="TELEPRESENCE">TELEPRESENCE</a></li><li><a href="#UNIFIED COMPUTING SERVICES" rel="UNIFIED COMPUTING SERVICES">UNIFIED COMPUTING SERVICES</a></li></ul></div></td>
</tr>
</tbody>
</table>
<table width="100%" class="singleField" id="multiPriceListBoxGrid" style="width: 830px; z-index: 730;" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 480;" for="priceList">
<span id="priceListid" style="font-weight: bold;">Price List: </span></label></td>
</tr>
<tr>
<td><span id="noteCaptionId" style="z-index: 470;">Note: No more than 4 Pricelists can be selected per Query.</span></td>
</tr>
<tr>
<td><br style="z-index: 460;"></td>
</tr>
<tr>
<td><br style="z-index: 450;"></td>
</tr>
<tr>
<td><select name="multiSelectPriceListId" class="multiselect icwSelect icwRequiredItem" id="multiSelectPriceListId" style="height: 130px; display: none; z-index: 440;" size="0" multiple="multiple"><option value="10">Australia Price List Ex-Tax</option><option value="3581">CHINA PRICE LIST in US Dollars</option><option value="12351">Global ASIA-PAC Price List in US Dollars</option><option value="801001111">Global Brazil Price List in BRL</option><option value="1027">Global Canada Price List in CANADIAN Dollars</option><option value="958">Global EMEA Price List in US Dollars</option><option value="959">Global Latin America Price List in US Dollars</option><option value="12513">Global Price List Emerging</option><option value="12514">Global Price List Russia</option><option value="952">Global US Price List in US Dollars</option><option value="889">Global WorldWide Price List in US Dollars</option><option value="12">JAPAN Price List in US Dollars</option><option value="12511">Nihon Price List in US Dollars</option><option value="506">Nihon Price List in Yen</option></select><div class="btn-group" style="z-index: 430;"><button title="Select a Price List" class="multiselect dropdown-toggle btn btn-default" style="width: 325px;" type="button" data-toggle="dropdown">Select a Price List<b class="caret1"></b></button><ul class="multiselect-container dropdown-menu" style="-ms-overflow-x: hidden; -ms-overflow-y: auto; max-height: 190px;"><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="10"> Australia Price List Ex-Tax</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="3581"> CHINA PRICE LIST in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="12351"> Global ASIA-PAC Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="801001111"> Global Brazil Price List in BRL</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="1027"> Global Canada Price List in CANADIAN Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="958"> Global EMEA Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="959"> Global Latin America Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="12513"> Global Price List Emerging</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="12514"> Global Price List Russia</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="952"> Global US Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="889"> Global WorldWide Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="12"> JAPAN Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="12511"> Nihon Price List in US Dollars</label></a></li><li><a href="javascript:void(0);"><label class="checkbox"><input name="multiselect" type="checkbox" value="506"> Nihon Price List in Yen</label></a></li></ul></div></td>
</tr>
</tbody>
</table>
<div class="singleField" id="priceListSelectionBoxGrid" style="width: 830px; display: none; z-index: 730;">
            </div><div class="singleField" id="serviceLevelBoxGrid" style="width: 830px; z-index: 730;">

















 
    
    <div class="icwContentChoice" id="serviceLevelGrid">
    <br>
    <label class="labelField">

                <span id="serviceLevel" style="font-weight: bold; z-index: 640;">Service Level:</span>
                    </label>
    <div class="noteInfo" id="serviceLevelNoteGrid" style="width: 1000px;">      
            <table>
                        <tbody><tr><td>Note:</td><td>&nbsp;No more than 10 Service Levels can be selected per Query.</td></tr>
                        
            </tbody></table>  
        </div>
        <br>
    <div class="icwSelectSPValue">
    
        
            
        <select name="selectedServiceLevelFrom" class="icwMulti" id="selectedServiceLevelFrom" style="height: 130px; overflow: auto;" ondblclick="moveOptionsforSP('selectedServiceLevelFrom','selectedServiceLevelTo');" size="140" multiple="multiple">    <option value="3C4P">3C4P</option>
    <option value="3SNT">3SNT</option>
    <option value="3SNTP">3SNTP</option>
    <option value="AASN">AASN</option>
    <option value="AAWBX">AAWBX</option>
    <option value="C2P">C2P</option>
    
    
    <option value="CDN">CDN</option>
    <option value="CLAS">CLAS</option>
    
    <option value="DVCC">DVCC</option>
    <option value="DVCM">DVCM</option>
    <option value="DVSE">DVSE</option>
    <option value="DVSUP">DVSUP</option>
    <option value="EC4N">EC4N</option>
    <option value="EC4T">EC4T</option>
    <option value="ECDN">ECDN</option>
    <option value="ECDO">ECDO</option>
    <option value="ECEN">ECEN</option>
    <option value="ECEO">ECEO</option>
    <option value="ECMU">ECMU</option>
    <option value="ESG">ESG</option>
    <option value="EWC">EWC</option>
    <option value="FTS">FTS</option>
    <option value="HCS">HCS</option>
    <option value="IAM">IAM</option>
    <option value="KT">KT</option>
    <option value="L3TAC">L3TAC</option>
    <option value="MISCAS">MISCAS</option>
    <option value="NAIS">NAIS</option>
    <option value="NAS">NAS</option>
    <option value="NCD2">NCD2</option>
    <option value="NCD2P">NCD2P</option>
    <option value="NCD4P">NCD4P</option>
    <option value="NCD4S">NCD4S</option>
    <option value="NCDAS">NCDAS</option>
    <option value="NCDAU">NCDAU</option>
    <option value="NCDCS">NCDCS</option>
    <option value="NCDDN">NCDDN</option>
    <option value="NCDDO">NCDDO</option>
    <option value="NCDE">NCDE</option>
    <option value="NCDMU">NCDMU</option>
    <option value="NCDP">NCDP</option>
    <option value="NCDS1">NCDS1</option>
    <option value="NCDS3">NCDS3</option>
    <option value="NCDSO">NCDSO</option>
    <option value="NCDT">NCDT</option>
    <option value="NCDUP">NCDUP</option>
    <option value="NCDW">NCDW</option>
    <option value="NCF2">NCF2</option>
    <option value="NCF2P">NCF2P</option>
    <option value="NCF4P">NCF4P</option>
    <option value="NCF4S">NCF4S</option>
    <option value="NCFAS">NCFAS</option>
    <option value="NCFAU">NCFAU</option>
    <option value="NCFCS">NCFCS</option>
    <option value="NCFDN">NCFDN</option>
    <option value="NCFDO">NCFDO</option>
    <option value="NCFE">NCFE</option>
    <option value="NCFMU">NCFMU</option>
    <option value="NCFP">NCFP</option>
    <option value="NCFS1">NCFS1</option>
    <option value="NCFS3">NCFS3</option>
    <option value="NCFSO">NCFSO</option>
    <option value="NCFT">NCFT</option>
    <option value="NCFUP">NCFUP</option>
    <option value="NCFW">NCFW</option>
    <option value="NCHMU">NCHMU</option>
    <option value="NCHUP">NCHUP</option>
    <option value="NCJMU">NCJMU</option>
    <option value="NCJUP">NCJUP</option>
    <option value="NOS">NOS</option>
    <option value="NOSC">NOSC</option>
    <option value="OPT">OPT</option>
    <option value="OS">OS</option>
    <option value="OSE">OSE</option>
    <option value="OSP">OSP</option>
    <option value="PDI">PDI</option>
    <option value="PREM">PREM</option>
    <option value="PRSRV">PRSRV</option>
    <option value="RFR">RFR</option>
    <option value="ROSF">ROSF</option>
    <option value="ROSTC">ROSTC</option>
    <option value="S2P">S2P</option>
    <option value="SAASS">SAASS</option>
    <option value="SAAST">SAAST</option>
    <option value="SAS">SAS</option>
    <option value="SAU">SAU</option>
    <option value="SAUP">SAUP</option>
    <option value="SBS">SBS</option>
    <option value="SBS4">SBS4</option>
    <option value="SG">SG</option>
    <option value="SMBS">SMBS</option>
    
    
    
    <option value="SSC2P">SSC2P</option>
    <option value="SSC4P">SSC4P</option>
    <option value="SSC4S">SSC4S</option>
    <option value="SSCC">SSCC</option>
    <option value="SSCHC">SSCHC</option>
    <option value="SSCI">SSCI</option>
    <option value="SSCIL">SSCIL</option>
    <option value="SSCS">SSCS</option>
    <option value="SSCSS">SSCSS</option>
    <option value="SSHCS">SSHCS</option>
    <option value="SSIS">SSIS</option>
    <option value="SSMOB">SSMOB</option>
    <option value="SSRE">SSRE</option>
    <option value="SSS2P">SSS2P</option>
    <option value="SSSNE">SSSNE</option>
    <option value="SSSNP">SSSNP</option>
    <option value="SSSNT">SSSNT</option>
    <option value="SSVCX">SSVCX</option>
    <option value="SSVXI">SSVXI</option>
    <option value="SSWSC">SSWSC</option>
    <option value="STAS">STAS</option>
    <option value="STASS">STASS</option>
    <option value="SU1">SU1</option>
    <option value="SU2">SU2</option>
    <option value="SU3">SU3</option>
    <option value="SU4">SU4</option>
    <option value="SUM1">SUM1</option>
    <option value="SUO1">SUO1</option>
    <option value="SUO2">SUO2</option>
    <option value="SUO3">SUO3</option>
    <option value="SUO4">SUO4</option>
    <option value="SUR1">SUR1</option>
    <option value="SVPDI">SVPDI</option>
    <option value="SVTRN">SVTRN</option>
    <option value="SW">SW</option>
    <option value="TAS">TAS</option>
    <option value="TASI">TASI</option>
    <option value="TASS">TASS</option>
    <option value="TBAS">TBAS</option>
    <option value="TIS2">TIS2</option>
    <option value="TLAS">TLAS</option>
    <option value="USS1">USS1</option>
    <option value="UTL">UTL</option>
</select>
        </div>
            <div class="icwSelectOption">
            <input class="addList" onclick="moveOptionsforSP('selectedServiceLevelFrom','selectedServiceLevelTo');" type="button" value="Add"><br>
            <input class="removeList" onclick="removeOptionsForSP('selectedServiceLevelFrom','selectedServiceLevelTo');" type="button" value="Remove"> <br>
            </div>
        <div class="icwSelectSPValue">
        
            
        <select name="selectedServiceLevelTo" class="icwMulti" id="selectedServiceLevelTo" style="height: 130px; overflow: auto;" ondblclick="removeOptionsForSP('selectedServiceLevelFrom','selectedServiceLevelTo');" size="10" multiple="multiple"><option title="C4P" value="C4P">C4P</option><option title="C4S" value="C4S">C4S</option><option title="CS" value="CS">CS</option><option title="SNT" value="SNT">SNT</option><option title="SNTE" value="SNTE">SNTE</option><option title="SNTP" value="SNTP">SNTP</option>    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
</select>
    <br>
    <br>
</div></div>    
</div><br><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 420;">
<span id="fileFormatProtoService" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><br style="z-index: 410;"></td>
</tr>
<tr>
<td><select name="serviceFileFormatProtoService" class="icwSelect icwRequiredItem" id="serviceFileFormatProtoService" style="width: 350px; display: none; z-index: 400;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1" sb="86545080"><option title="Select a File Format" value="default">Select a File Format</option><option title="Microsoft Excel Workbook in .xls format" value="Microsoft Excel File for Windows and Mac OS">Microsoft Excel Workbook in .xls format</option><option title="Microsoft Excel Workbook in .xlsx format" value="Microsoft Excel 2007 File">Microsoft Excel Workbook in .xlsx format</option>    
</select><div class="sbHolder" id="sbHolder_86545080"><a class="sbToggle" id="sbToggle_86545080" href="#"></a><a class="sbSelector" id="sbSelector_86545080" href="#">Select a File Format</a><ul class="sbOptions" id="sbOptions_86545080" style="display: none;"><li><a href="#default" rel="default">Select a File Format</a></li><li><a href="#Microsoft Excel File for Windows and Mac OS" rel="Microsoft Excel File for Windows and Mac OS">Microsoft Excel Workbook in .xls format</a></li><li><a href="#Microsoft Excel 2007 File" rel="Microsoft Excel 2007 File">Microsoft Excel Workbook in .xlsx format</a></li></ul></div></td>
</tr>
</tbody>
</table>
</span><span id="cplFormSAASPage" style="display: none;"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 380;">
<span id="downloadTypeSAAS1" style="font-weight: bold;">Contents:</span></label></td>
</tr>
<tr>
<td><span id="test2SAAS" style="z-index: 370;"><label class="label_radio r_on">Entire Price List <input id="downloadTypeRadioForCurrentSAAS" onclick="fnPriceListProgressDialogSAAS();" type="radio" checked="checked" value="1"> <span class="infoDis tooltip" id="radioHoverPRSAAS" style="z-index: 650;" onmouseover="mouseOverEPLSAAS();" onmouseout="mouseOutEPLSAAS();"></span> </label>
                        <div id="sps2" style="height: 4px; clear: both;"></div></span></td>
</tr>
<tr>
<td><span id="test3SAAS" style="z-index: 360;"><input name="isInternalSAAS" id="isInternalSAAS" type="hidden" value="false"><label class="label_radio r_off">Product Family <input name="Product Family" id="productsSAAS" onclick="fnShowFamilyProgressDialogSAAS(this)" type="radio" value="Product Family"> <span class="infoDis tooltip" id="radioHoverCMRSSAAS" style="z-index: 650;" onmouseover="mouseOverCMRSSAAS();" onmouseout="mouseOutCMRSSAAS();"></span> </label>
                        <div class="spacer5" id="sps3"></div></span></td>
</tr>
</tbody>
</table>
<table width="100%" id="entireFamilyGridSAAS" cellspacing="0">
<tbody>
</tbody>
</table>
<div class="creditPop" id="messageBoxEPLSAAS">
                    &nbsp;
                    Contains pricing information for Subscription Items on the selected price list.
                    <br>
                </div><table width="100%" id="prodFamilyGridInternalSAAS" cellspacing="0">
<tbody>
<tr>
<td><td width="25%"></td>
</tr>
</tbody>
</table>
<div class="creditPop" id="messageBoxCMRSSAAS">
                        <!-- <div class="tooltiparrowimage"></div> -->
                        &nbsp;
                        Product Family, also referred to as CMRS (Cisco Marketplace Router Store) Product Family, categorizes products for online searching and promotion eligibility. A Product can belong to multiple CMRS Product Families.
                        <br>
                    </div><div class="creditPop" id="messageBoxERPSAAS">
                        <!-- <div class="tooltiparrowimage"></div> -->
                        &nbsp;
                        ERP (Enterprise Resource Planning) Product Family is an element of the Product Hierarchy that consists of Technology Group, Business Unit, Product Family,  Product Type and Product Sub-Group. A Product can belong to one and only one ERP Product Family.
                    </div><div class="singleField" id="productFamilyDetailsSAAS" style="width: 830px; z-index: 730;"></div><table width="100%" class="singleField" id="ItemGridSAAS" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" id="itemCatSAAS" style="display: none; z-index: 350;">
<span id="itemCategorySAAS1" style="font-weight: bold;">Item Category:</span></label></td>
</tr>
<tr>
<td><select name="selectedItemCategorySAAS" class="icwSelect icwRequiredItem selectbox" id="selectedItemCategorySAAS" style="width: 200px; z-index: 340;" onchange="showLicenseType()" size="1">    <option value="Select an Item Category">Select an Item Category</option>
    <option value="Billing">Billing</option>
    <option value="License">License</option>
    <option value="XaaS">SaaS</option>
    <option value="All">All</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 330;"></div></td>
</tr>
</tbody>
</table>
<table width="100%" class="singleField" id="LicenseTypeGrid" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" id="LicenseTypeSubs" style="z-index: 320;">
<span id="LicenseTypeSub" style="font-weight: bold;">License Type:</span></label></td>
</tr>
<tr>
<td><select name="selectedLicenseType" class="icwSelect icwRequiredItem selectbox" id="selectedLicenseType" style="width: 200px; z-index: 310;" onmousedown="resizeforIE()" onblur="resizeBackIE()" size="1">    <option value="Select a License Type">Select License Type</option>
    <option value="On-Premise Offer">On-Premise Offer</option>
    <option value="On-Premise Term">On-Premise Term</option>
    <option value="On-Premise Perpetual">On-Premise Perpetual</option>
    <option value="On-Premise Cloud">On-Premise Cloud</option>
    <option value="All">All</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 300;"></div></td>
</tr>
</tbody>
</table>
<table width="100%" class="singleField" id="selectFormatsSAAS" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 290;">
<span id="fileFormatSAAS1" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><select name="dlFileFormatSAAS" class="icwSelect icwRequiredItem" id="dlFileFormatSAAS" style="width: 350px; z-index: 280;" onmousedown="resizeforIEFormatSAAS()" onblur="resizeBackIEFormatSAAS()" onchange="showFormatHelpSAAS()" size="1"></select></td>
</tr>
<tr>
<td><div class="spacer5" style="z-index: 270;"></div></td>
</tr>
<tr>
<td><span class="inlineNote marginL0" id="formatHelpSAAS" style="display: none; z-index: 260;">Note:  The data may be displayed in multiple worksheets.</span></td>
</tr>
<tr>
<td><div class="spacer5" style="z-index: 250;"></div></td>
</tr>
</tbody>
</table>
</span></span>
    
        
            
                
            
            
                
                
            
            
                
            
            
                
            
            
            
                
            

            
                
                
                
                
            
            
        

        
        

    <span id="cplFormDPPPage" style="display: none;"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 240;">
<span style="font-weight: bold; z-index: 770;">Offer Category:</span></label></td>
</tr>
<tr>
<td><span id="testDPP" style="z-index: 230;"><label class="label_radio r_on" style="z-index: 740;">Products Only <input id="downloadTypeProductsOnlyDPP" style="z-index: 760;" onclick="dppChangeType(1);" type="radio" checked="checked" value="1"> </label>
                    <div class="relative floatLeft">
                        <span class="infoDis tooltip" id="radioHoverProductsOnlyDPP" style="z-index: 750;" onmouseover="mouseOverProductsOnlyDPP();" onmouseout="mouseOutProductsOnlyDPP();"></span>
                    </div>
                    <div class="spacer5"></div>

                    <label class="label_radio r_off" style="z-index: 740;">Subscription Items (SaaS, On-Premise)
                        <input id="downloadTypeSubscriptionDPP" style="z-index: 730;" onclick="dppChangeType(2);" type="radio" value="2"> <span class="infoDis tooltip" id="radioHoverSubscriptionDPP" style="z-index: 730;" onmouseover="mouseOverSubscriptionDPP();" onmouseout="mouseOutSubscriptionDPP();"></span> </label><div class="spacer15"></div></span></td>
</tr>
<tr>
<td><label class="labelField" style="z-index: 220;" for="dppPriceList">
<span id="dppPriceList" style="font-weight: bold; z-index: 640;">Price File:</span></label></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 210;"></div></td>
</tr>
<tr>
<td><label class="labelField" style="z-index: 200;">
<span id="dppFileFormat" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><select name="dppFileFormatval" class="icwSelect icwRequiredItem" id="dppFileFormatval" style="width: 350px; z-index: 190;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1">    <option value="Select a File Format">Select a File Format</option>
    <option value="Microsoft Excel File for Windows and Mac OS">Microsoft Excel File for Windows and Mac OS</option>
    <option value="Microsoft Excel 2007 Compatible File Format">Microsoft Excel 2007 Compatible File Format</option>
    <option value="Microsoft Excel 2007 File">Microsoft Excel 2007 File</option>
</select></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 180;"></div></td>
</tr>
</tbody>
</table>
<div class="creditPop" id="messageBoxProductsOnlyDPP">
                Refers to the Distributor view of the Wholesale/Global Price Lists which contains published price information for products in the stated currency for the applicable region, country or location.
            </div><div class="creditPop" id="messageBoxSubscriptionDPP">
                Refers to the Distributor view of the Wholesale/Global Price Lists which contains published price information for SaaS subscription items in the stated currency for the applicable region, country or location.
            </div></span>

    

        
            
                
            
            
                
                
            
            
                
            
            
                
                    
                    
                
            

            
            
                
            

              
                
                    
                    
                    
                
              
              
                
                    
                        
                    
                
              
              
                
                    
                    
                    
                
            
            
        

        
        
        
        
    <span id="bootstrapPage" style="display: none;"><table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><label class="labelField" style="z-index: 170;">
<span style="font-weight: bold; z-index: 770;">Type</span></label></td>
</tr>
<tr>
<td><span id="btTypes" style="z-index: 160;"><label class="label_radio r_on" style="z-index: 740;">Pricing Bootstrap
                    <input id="downloadTypePricingFile" style="z-index: 760;" onclick="bootstrapChangeType(1);" type="radio" checked="checked" value="1">
                    <span class="infoDis tooltip" id="radioHoverDownloadTypePricingFile" style="z-index: 750;" onmouseover="mouseOverPricingBootstrap();" onmouseout="mouseOutPricingBootstrap();"></span>     
                    </label>
                    <div class="spacer5"></div>

                    <label class="label_radio r_off" style="z-index: 740;">Service Mapping Bootstrap
                    <input id="downloadTypeServiceMapping" style="z-index: 730;" onclick="bootstrapChangeType(2);" type="radio" value="2">
                    <span class="infoDis tooltip" id="radioHoverDownloadTypeServiceMapping" style="z-index: 730;" onmouseover="mouseOverServiceBootstrap();" onmouseout="mouseOutServiceBootstrap();"></span>     
                    </label>

                    <div class="spacer5"></div>

                    <label class="label_radio r_off" style="z-index: 740;">Major Minor Bootstrap
                     <input id="downloadTypeMajorMinor" style="z-index: 730;" onclick="bootstrapChangeType(3);" type="radio" value="2">
                    <span class="infoDis tooltip" id="radioHoverDownloadTypeMajorMinor" style="z-index: 730;" onmouseover="mouseOverMajorBootstrap();" onmouseout="mouseOutMajorBootstrap();"></span>
                    </label><div class="spacer15"></div></span></td>
</tr>
<tr>
<td><label class="labelField" style="z-index: 150;" for="bootstrapPriceListLabel">
<span id="bootstrapPriceListLabel" style="font-weight: bold; z-index: 640;">Price File:</span></label></td>
</tr>
<tr>
<td><span id="bootstrapPriceList" style="width: 100%; z-index: 140;"><select name="bootstrapPriceListVal" class="wide" id="bootstrapPriceListVal" style="width: 350px;" onmousedown="resizeforIE()" onblur="resizeBackIE()" onchange="showBootstrapFileTimestamp();" size="1">    <option value="defaultPriceList">Select a Price File</option>
</select></span></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 130;"></div></td>
</tr>
<tr>
<td><label class="labelField" style="z-index: 120;" for="bootstrapFileFormatLabel">
<span id="bootstrapFileFormatLabel" style="font-weight: bold;">File Formats:</span></label></td>
</tr>
<tr>
<td><span id="PricingBSFileFormat" style="z-index: 110;"><select name="PricingBSFileFormats" class="icwSelect icwRequiredItem" id="PricingBSFileFormats" style="width: 350px; display: none; z-index: 500;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1">    <option value="Select a File Format">Select a File Format</option>
    <option value="Compressed Pipe-Delimited Text File">Compressed Pipe-Delimited Text File</option>
</select></span></td>
</tr>
<tr>
<td><span id="FamilyBSFileFormat" style="z-index: 100;"><select name="FamilyBSFileFormats" class="icwSelect icwRequiredItem" id="FamilyBSFileFormats" style="width: 350px; display: none; z-index: 500;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1">    <option value="Select a File Format">Select a File Format</option>
    <option value="Compressed Pipe-Delimited Text File">Compressed Pipe-Delimited Text File</option>
</select></span></td>
</tr>
<tr>
<td><span id="MajorBSFileFormat" style="z-index: 90;"><select name="MajorBSFileFormats" class="icwSelect icwRequiredItem" id="MajorBSFileFormats" style="width: 350px; display: none; z-index: 500;" onmousedown="resizeforIEFormat()" onblur="resizeBackIEFormat()" size="1">    <option value="Select a File Format">Select a File Format</option>
    <option value="Compressed XML Format File">Compressed XML Format File</option>
</select></span></td>
</tr>
<tr>
<td><div class="spacer15" style="z-index: 80;"></div></td>
</tr>
</tbody>
</table>
<div class="creditPop" id="messageBoxPricingBS">
                B2B catalog view containing item and list price information, in stated currency for applicable region, country and location, in pipe delimited format.
            </div><div class="creditPop" id="messageBoxServiceMappingBS">
                B2B catalog view organized by product-to-service mapping, in stated currency for applicable region, country and location, in pipe delimited format.
            </div><div class="creditPop" id="messageBoxMajorMinorBS">
                B2B catalog view organized by product family based on marketing hierarchy, in state currency for applicable region, country and location, in XML format.
            </div></span>

    </div>
        <div class="priceRight" id="summary">
            <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [S]  -->
            
                
                    <div align="right" id="notePref" style="width: 480px; font-size: small; font-weight: bold;">
                        <a id="notfnToggle" href="#" data-target="#notfnModal" data-toggle="modal">Notification Preferences </a>
                            <!--  Notification Prefernces-->
                    </div>
                    <div class="spacer15"></div>
                
            
            <!-- Added by bhajoshi as part of Q2FY15 waterfall scope [E]  -->
            <div class="icwRules">
                <br><table>
                    <thead>
                        <tr>
                            <th colspan="2"><b>Price Lists Updated</b></th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td class="widgetList">Global Price Lists</td>
                            <td class="widgetListText">09-JAN-2015</td>
                            
                        </tr>
                        <tr>
                            <td class="widgetList">Wholesale Price Lists</td>
                            <td class="widgetListText">09-JAN-2015</td>
                        </tr>
                        <!--  added by rachna for Service File FEB MR scope-->
                        <tr>
                            <td class="widgetList">Service Price Files</td>
                            <td class="widgetListText">09-JAN-2015</td>
                        </tr>
                        <tr>
                            <td class="widgetList">Pre Set Service Price Files</td>
                            <td class="widgetListText">SEP-2014</td>
                        </tr>
                        
                            
                        
                        <tr id="bootstrapTimeStamp" style="display: none;">
                            <td class="widgetList">Bootstrap</td>
                            <!-- <div id="timeStamp" style="display:none;">     -->
                            <td class="widgetListText" id="timeStamp"></td>
                            <!-- </div>     -->
                        </tr>
                    </tbody>
                </table>

            </div>
        </div>

        <div class="footBtn" id="tableGrid" style="display: none; z-index: 680;">
            <input name="button1" class="footBtn" id="button1" style="padding: 2px;" onclick="fnDldSubmit();" type="submit" value="Download">
        </div>
        <div class="footBtn" id="tableGridService" style="display: none; z-index: 680;">
            <input name="submit" class="footBtn" id="submit" style="padding: 2px;" onclick="downLoadService();" type="submit" value="Download">
        </div>

        <!--  added by rachna for Service File Scope - FEB MR changes -->
        <div class="footBtn" id="tableGridProtoService" style="z-index: 680;">
            <input name="buttonProtoSer" class="footBtn" id="buttonProtoSer" style="padding: 2px;" onclick="downLoadProtoService();" type="submit" value="Download">
        </div>

        <div class="footBtn" id="tableGridSAAS" style="display: none; z-index: 680;">
            <input name="buttonSAAS" class="footBtn" id="buttonSAAS" style="padding: 2px;" onclick="fnDldSubmitSAAS();" type="submit" value="Download">
        </div>

        <!-- added by shanujai - for DPP Q4FY14 Scope -->
        <div class="footBtn" id="tableGridDPP" style="display: none; z-index: 680;">
            <input name="buttonDPP" class="footBtn" id="buttonDPP" style="padding: 2px;" onclick="fnDldSubmitDPP();" type="submit" value="Download">
        </div>
        <!--changes ends here  -->

        <div class="footBtn" id="tableGridBootstrap" style="display: none; z-index: 680;">
            <input name="buttonBootstrap" class="footBtn" id="buttonBootstrap" style="padding: 2px;" onclick="fnDldSubmitBootstrap();" type="submit" value="Download">
        </div>

<form id="downLoadAjaxForServProgm" action="servlet/DownloadReportForServiceProgServlet" method="post"><input name="ServiceProgAjax" id="ServiceProgAjax" type="hidden">
             <input name="fileFormatAjax" id="fileFormatAjax" type="hidden">
             <input name="multiPLAjax" id="multiPLAjax" type="hidden">
             <input name="multiPLNamesAjax" id="multiPLNamesAjax" type="hidden">
             <input name="servieLevelAjax" id="servieLevelAjax" type="hidden">
             <input name="errorMsgAjax" id="errorMsgAjax" type="hidden">
              <input name="userId" id="userId" type="hidden">
             <input name="accessLevel" id="accessLevel" type="hidden">
             <input name="partnerType" id="partnerType" type="hidden">
             <input name="navigationUrl" id="navigationUrl" type="hidden">
            </form>
    <form id="downLoadPOAjax" action="servlet/DownloadProductPL" method="post">
            <input name="priceListAjax" id="priceListAjax" type="hidden"> <input name="formatAjax" id="formatAjax" type="hidden"> <input name="familyAjax" id="familyAjax" type="hidden"> <input name="productFamiliesAjax" id="productFamiliesAjax" type="hidden">
            <input name="categoriesAjax" id="categoriesAjax" type="hidden"> <input name="typeSelectedAjax" id="typeSelectedAjax" type="hidden"> <input name="errorMsgAjax" id="errorMsgAjax" type="hidden">
            <!-- added by shanujai -Q1FY14 - TAA Scope [S]-->
            <input name="taaOnly" id="taaOnly" type="hidden">
            <!-- changes ends -->
            <!-- added by shanujai -Q1FY15 - On Premises Scope [S]  -->
            <input name="licenseTypeVal" id="licenseTypeVal" type="hidden">
            <!-- changes ends  -->
            <!-- added by bhajoshi -Q2FY15 - Waterfall Scope [S]  -->
            <input name="discountReqAjax" id="discountReqAjax" type="hidden">
            <input name="transCntryAjax" id="transCntryAjax" type="hidden">
            <!-- changes ends  -->
        </form>




</div>
                                        <div class="icwIndent icwClear"> </div>
                                        <div class="clear"></div>
                                    </div><!--end of tabContent  -->
                                <div class="spacer15"></div>
                                <div class="noteInfo">
                                    
                                    <strong>
                                    Note: All products are subject to availability, and all prices are subject to change without notice. Cisco reserves the right to add, change or discontinue any product from this Price Catalog. Wholesale price lists are Cisco Systems Confidential. Any unauthorized disclosure is prohibited and may be subject to termination of access privileges to this tool and any other remedies available by Cisco in law or equity.
                                    </strong>
                                    
                                   </div><!--end of noteInfo  -->
                        </div><!-- end of icwHomeLink -->
                    </div><!--end of icwMainLinks  -->
                </div><!-- end of icwprofile -->
            </div><!--end of entire content  -->
        </div><!--end of frmework  -->
        <div class="icw" id="searchResultDetails" style="display: none; z-index: 990;"></div>
        <div class="icw" style="z-index: 980;">
            <div id="icwMessageBoxModal">
                <div class="icwModalOnly"></div>
            </div>
        </div>
    </div><!--  end of wrapper-->

    <div title="" id="icwBannerModal" style="display: none; -ms-overflow-y: scroll;">
    <p><b>The ‘PRE SET SERVICE PRICE FILES’ will be retired, and no longer updated after the September 2014 publication.</b><br>
    Please take the necessary steps to comply with the new option for ‘Service to Product’ automated reports.                     
    In addition, on Sept 8th, the automated reports will be enhanced to include additional features, and data.<br>
    For any questions/comments, please send a mail to&nbsp;<a href="mailto:service_price_file_feedback@external.cisco.com"  target="_top">service_price_file_feedback@external.cisco.com</a>. Please see the&nbsp;<a href="http://www.cisco.com/E-Learning/gbo-ccw/cdc_bulk/CCW_Q3FY14_March_Release/CCW_Services_Price_List_Catalog_Automation_Quick_Reference_Guide.pdf"  target="_blank">Price List Catalog Automation Quick Reference Guide</a>&nbsp;for more information.
    </p></div>
    <input name="selectedGpl" id="selectedGpl" type="hidden" value="[1]">
    <input name="selectedMail" id="selectedMail" type="hidden" value="None">
    <input name="cprMail" id="cprMail" type="hidden" value="">
    <input name="selectedPls" id="selectedPls" type="hidden" value="[1]">
    <!-- Notification modal for Q2FY15 arsengup -->
    <!-- Change static text to slim keys -->
    <div tabindex="-1" class="modal custom-modal fade" id="notfnModal" role="dialog" aria-hidden="true" aria-labelledby="notfnModalLabel" data-keyboard="false" data-backdrop="static">
            <div class="modal-dialog">
                <div class="modal-content">
                    <div class="modal-header">
                        <button class="close" aria-hidden="true" type="button" data-dismiss="modal">×</button>
                        <h5 class="modal-title" id="notfnModalLabel">Product Price Change Notification Preferences</h5>
                    </div>
                    <div class="modal-body">
                    
                            
                                
                                        
                                        
                                
                                
                                       
                                       
                                   
                            
                    
                        
                        
                            
                        
                        
                        
                            
                                
                            
                        
                        
                        
                            
                        
                            
                        
                        
                        
                            
                        
                                                                                            
                        
                            
                        
                        
                        
                            
                        
                        
                        
                        
                            
                        
                        
                        
                        
                            
                        
                        
                        
                        
                        
                            
                            
                        
                        
                        
                        
                                                                        
                    <table width="100%" class="singleField" cellspacing="2">
<tbody>
<tr>
<td><table width="100%" cellspacing="2">
<tbody>
<tr>
<td><span class="labelField" style="font-weight: bold;">User Name:</span><span id="uname">James Fogel</span></td>
</tr>
<tr>
<td><span class="labelField" style="font-weight: bold;">Company:</span><span id="cmpny"></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><hr width="1000"><div class="spacer15"></div></td>
</tr>
<tr>
<td><label class="labelField" id="curntSub" for="currentSub">
<span id="currentSub" style="font-weight: bold;">Current Subscriptions:</span></label></td>
</tr>
<tr>
<td><table>
<tbody>
<tr>
<td>None</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><div class="spacer10"></div></td>
</tr>
<tr>
<td><label class="labelField" id="curntEmail" for="currentEmail">
<span id="currentEmail" style="font-weight: bold;">Current Email Address:</span></label></td>
</tr>
<tr>
<td><span id="curEmail">None</span></td>
</tr>
<tr>
<td><hr width="1000"><div class="spacer15"></div></td>
</tr>
<tr>
<td><label class="labelField" id="chngSub" for="changeSub">
<span id="changeSub" style="font-weight: bold;">Change Subscriptions:</span></label></td>
</tr>
<tr>
<td><table id="chgSubPl">
</table></td>
</tr>
<tr>
<td><div class="spacer10"></div></td>
</tr>
<tr>
<td><label class="labelField" id="chngEmail" for="changeEmail">
<span id="changeEmail" style="font-weight: bold;">Change Email Address:</span></label></td>
</tr>
<tr>
<td><table class="pull-left" id="chgSubMail">
    <tbody><tr>
<td>
<label><input name="chgSubMail" type="radio" value=""> </label></td>
    </tr>
</tbody></table></td>
</tr>
<tr>
<td><input name="chgSubMail" type="radio" value="non-cpr"> Enter a different email address:<input name="nonCprMail" id="nonCprMail" type="text"></td>
</tr>
</tbody>
</table>

    </div>
                    <div class="modal-footer">
                        <button class="btn btn-primary" onclick="submitNotfctnChng('save')" type="button">Save</button>
                        <div align="center" id="emailError" style="color: red; display: none;">Error. Email address entered is not in a valid format.</div>
                        <!--Error. Email address entered is not in a valid format.  -->
                        <div align="center" id="confirmNote" style="color: gray; display: none;">Submission successful. Any new information submitted may take up to 36 hours to update in the system.</div>
                        <!-- Submission successful. Any new information submitted may take up to 36 hours to update in the system. -->
                    </div>
                </div>
            </div>
        </div>

    <div style="clear: both;">
        <br>
<a name="pagefooter"></a>
<div id="fw-mb-w1">
<div id="framework-footer">
        <div id="footer-nav">
            <a href="http://www.cisco.com/web/siteassets/contacts/">Contacts</a> |
            <img title="Feedback" id="fw_feedback_img" src="i/feedback.gif" border="0" target="feedback_window">
            <a id="ol_feedback_form" href="https://secure.opinionlab.com/ccc01/o.asp?id=jBjOhqOJ" target="feedback_window">Feedback</a>  |
            <a accesskey="0" href="http://www.cisco.com/web/help/">Help</a> |
            <a href="http://www.cisco.com/web/siteassets/sitemap/index.html">Site Map</a> |
            <a href="http://www.cisco.com/web/siteassets/legal/terms_condition.html">Terms &amp; Conditions</a> |
            <a href="http://www.cisco.com/web/siteassets/legal/privacy.html">Privacy Statement</a> |
            <a href="http://www.cisco.com/web/siteassets/legal/privacy.html#cookies">Cookie Policy</a> |
            <a href="http://www.cisco.com/web/siteassets/legal/trademark.html">Trademarks</a>
        </div>
</div>
</div>
    </div>


</body></html>
Edited by SmOke_N
Link to comment
Share on other sites

Hum. To get my first code snipet I right-clicked on the control and selected inspect element and expanded it. For the HTML I posted I did as asked and saved the page as an HTML doc and passed it on. I just updated that post with results I scrapped out of the DOM Explorer. Dorry it is so large and diffucult to look at.

Link to comment
Share on other sites

Thank you, thank you, thank you! I had to make a few small tweaks (remove the double quotes and # sign) for the name of thecontrol as shown below, but once done it worked like a charm.

$oIE.document.parentwindow.execScript("$(SelectedServiceProgram).selectbox('change', 'value', '######### SERVICES & SUPPORT')")

Link to comment
Share on other sites

  • Moderators

Careful with execScript if you're going to try and use this other than the PC it's working on.

http://msdn.microsoft.com/en-us/library/ie/ms536420(v=vs.85).aspx

In IE11 it's to be or already is deprecated.

Glad you have it working.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...