Get Support

Supporting Documents

Documents and instructions designed to assist with setting up your user profile or completing the company onboarding steps.
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "fr_FR":"
Asie-Pacifique
Europe, Moyen-Orient et Afrique
Amérique latine
Amérique du Nord
", "es_ES":"
Asia-Pacífico
Europa, Oriente Medio y África
América Latina
América del Norte
", "pt_PT":"
Ásia-Pacífico
Europa, Oriente Médio e África
América Latina
América do Norte
", "es_MX":"
Asia-Pacífico
Europa, Medio Oriente y África
América Latina
América del Norte
", "ru_RU":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "de_DE":"
Asien-Pazifik
Europa, Naher Osten und Afrika
Lateinamerika
Nordamerika
", "pt_BR":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "bg_BG":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "zh_CN":"
亚太地区
欧洲、中东和非洲
拉丁美洲
北美洲
", "hr_HR":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "el_GR":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "cs_CZ":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "zh_TW":"
亞太地區
歐洲、中東和非洲
拉丁美洲
北美洲
", "hu_HU":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "in_ID":"
Asia Pasifik
Eropa, Timur Tengah, dan Afrika
Amerika Latin
Amerika Utara
", "en_GB":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "it_IT":"
Asia-Pacifico
Europa, Medio Oriente e Africa
America Latina
Nord America
", "ja_JP":"
アジア太平洋
欧州・中東・アフリカ
中南米
北米
", "ko_KR":"
아시아 태평양
유럽, 중동 및 아프리카
라틴 아메리카
북아메리카
", "Ro_RO":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "pl_PL":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "sk_SK":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "sl_SI":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
", "th_TH":"
เอเชียแปซิฟิก
ยุโรป ตะวันออกกลาง และแอฟริกา
ละตินอเมริกา
อเมริกาเหนือ
", "tr_TR":"
Asya Pasifik
Avrupa, Orta Doğu ve Afrika
Latin Amerika
Kuzey Amerika
", "vi_VN":"
Châu Á - Thái Bình Dương
Châu Âu, Trung Đông và Châu Phi
Mỹ Latinh
Bắc Mỹ
", "ro_RO":"
Asia Pacific
Europe, Middle East and Africa
Latin America
North America
" }; document.querySelector(".support-docs-title").innerText = SupportDocHeadTran[themeDisplay.getLanguageId()]; document.querySelector(".support-docs-description").innerHTML = SupportDocDesTran[themeDisplay.getLanguageId()]; document.querySelector("#region-select").innerHTML = SelectRegionTran[themeDisplay.getLanguageId()]; let originalButtonHref = document.querySelector('.btn.btn.btn-success.btn-secondary').getAttribute("href"); let EMEAButtonHref = "https://hpscoutso.spa.hpcloud.hp.com/page/bp-registration"; document.querySelectorAll('#region-select .dropdown-item').forEach(function(item) { item.addEventListener('click', function() { let selectedRegion = item.getAttribute("value"); console.log('Clicked Region:', selectedRegion); //var hiddenInput = document.querySelector('#Registration-SupportDoc input[name="value"]').value; setTimeout(function() { var isActive = document.querySelector('#Registration-SupportDoc').classList.contains('active'); console.log('Selected Region:', isActive); var btn = document.querySelector('.btn.btn.btn-success.btn-secondary'); if (selectedRegion && isActive) { if (btn.classList.contains('disabled')) { btn.classList.remove('disabled'); btn.disabled = false; } if (selectedRegion === "UPP EMEA") { console.log('EMEA region selected!'); btn.setAttribute("href", EMEAButtonHref); console.log(btn.getAttribute("href")); }else{ btn.setAttribute("href", originalButtonHref); console.log(btn.getAttribute("href")); } }else{ if (!btn.classList.contains('disabled')) { btn.classList.add('disabled'); btn.disabled = true; } } let activeLaCode = document.querySelector(".dropdown-item.text-capitalize.active") != null ? document.querySelector(".dropdown-item.text-capitalize.active").getAttribute("value") : "en_US"; let sdLinkCols = document.querySelectorAll('.sd-link-col'); let regionSelectItem = document.querySelectorAll('#region-select .dropdown-menu .dropdown-item'); if(selectedRegion === "UPP NA"){ document.querySelector(".support-docs-description").innerHTML = "General requirements:
  1. Legal Documentation
    • W9 Form (USA)/ Tax Form (Canada)
    • Certificate of Incorporation (USA)/ Articles of Incorporation (Canada)
  2. URL up and running- Physical or legal address listed
  3. Only an officer with signing authority can apply for the HP Partner Agreement
See below step by step process"; }else if(selectedRegion === "UPP LAR" && activeLaCode === "en_US"){ document.querySelector(".support-docs-description").innerHTML = "To apply for a contract with HP in Latin America, you must have an invitation code. If you do not yet have one, please contact your preferred distributor in your country, who can provide you with this information.
If you already have the code, you can download the step-by-step guide below."; }else{ document.querySelector(".support-docs-description").innerHTML = SupportDocDesTran[themeDisplay.getLanguageId()]; } sdLinkCols.forEach(col => { let category = col.getAttribute('data-analytics-asset-category'); let tag = col.getAttribute('data-analytics-asset-tag'); //console.log('Category:', category, 'Tag:', '|'+tag+'|', 'activeLaCode:',activeLaCode); if (category && category.includes(selectedRegion) && (tag === "" || tag.includes(activeLaCode)) && isActive) { col.style.display = 'block'; //col.classList.remove('disabled'); document.querySelector(".support-docs-container").style.display = 'block'; var btn = col.querySelector('button.btn'); if (btn) { btn.classList.remove('disabled'); btn.disabled = false; } } else { if(isActive){ col.style.display = 'none'; }else{ document.querySelector("#Registration-SupportDoc .input").innerText = ""; regionSelectItem.forEach(function(item) { item.classList.remove('active'); }); } //col.classList.add('disabled'); let btn = col.querySelector('button.btn'); if (btn) { btn.classList.add('disabled'); btn.disabled = true; } } }); }, 200); }); }); document.querySelector('#ClearSelect').addEventListener('click', function() { let regionSelectItem = document.querySelectorAll('#region-select .dropdown-menu .dropdown-item'); regionSelectItem.forEach(function(item) { item.classList.remove('active'); }); document.querySelector("#Registration-SupportDoc .input").innerText = ""; document.querySelector('#Registration-SupportDoc').classList.remove('active'); document.querySelector('#region-select').classList.remove('active'); document.querySelector('.btn.btn.btn-success.btn-secondary').classList.add('disabled'); document.querySelector('.btn.btn.btn-success.btn-secondary').disabled = true; let sdLinkCols = document.querySelectorAll('.sd-link-col'); sdLinkCols.forEach(col => { //col.style.display = 'none'; let btn = col.querySelector('button.btn'); if (btn) { btn.classList.add('disabled'); btn.disabled = true; } }); });