corporate.dow.com Open in urlscan Pro
2a02:26f0:1700:11::b856:6790  Public Scan

Submitted URL: http://www.dow.com/supplierportal
Effective URL: https://corporate.dow.com/en-us/about/suppliers/invoice-status
Submission Tags: falconsandbox
Submission: On February 21 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form class="form supplier-invoice-status__form">
  <hr class="supplier-hr">
  <div class="tab-content" v-cloak="">
    <div><a class="btn btn-primary-alt bulk-lookup-button" id="bulk-lookup-button" aria-label="button" @click="toggleTextArea">Bulk Excel Data LookUp</a></div>
    <div id="poTab" :class="{hideDiv:!isPOInvoice}">
      <div style="margin-top: 15px;"></div>
      <div v-if="!hideTextArea">
        <img id="helpImage" v-if="showHelp" src="/content/dam/corporate/about/SupplierInvoicePO.gif" class="supplier-help-img">
        <p class="block">Please paste your spreadsheet data as Purchase Order number followed by Invoice number.&nbsp; <a href="#" id="helpLink" v-on:click.prevent="showHelp = !showHelp">({{helpLinkText}})</a> </p>
        <textarea name="excel_data" v-model="formData" @paste="pasteEvent" class="text-area"></textarea><br>
      </div>
      <div class="status-input-msg" :class="{hideDiv:!hideTextArea}">To get started, enter your Purchase Order (PO) and Invoice numbers below. Enter as many PO and Invoice numbers as you need. Do not feel like you need to enter a value for each row.
      </div>
      <p v-show="rowOverflowPO" class="text-color-red" v-cloak="">Too many rows entered, only displaying results for the first {{maxRows}} rows.</p>
      <div class="labels-content">
        <label class="label-text label-right-margin label-text-mobile">PO Number <a href="#nopoTab" class="link-text" @click="switchToNoPO">Click here if you do not have PO number </a></label>
        <label class="label-text">Invoice Number</label>
      </div>
      <div v-for="(row,index) in dataRows" v-bind:key="row.id" class="input-wrapper">
        <div class="po-input">
          <input type="text" v-model="dataRows[index].purchaseOrderNumber" :name="getPoName(index)" maxlength="10" placeholder="0123456789" v-on:change="handleNewPORow(row)" class="status-input-box" v-validate.initial="'numeric|min:10|max:10'"
            :data-vv-name="'supplierPO.dataRowsInput' + index" data-vv-as="Purchase Order Number" data-vv-scope="supplierPO" @focus="trackFormStart">
          <div class="invalid-feedback" v-if="errors.has('supplierPO.dataRowsInput' + index)">
            {{ errors.first('supplierPO.dataRowsInput' + index) }}
          </div>
        </div>
        <div class="po-input">
          <input type="text" v-model="dataRows[index].invoiceNumber" :name="getInvoiceName(index)" placeholder="12345" v-on:change="handleNewPORow(row)" class="status-input-box" v-validate.initial="'invoiceMaxLength'"
            :data-vv-name="'supplierPO.dataRowsInputInvoice' + index" data-vv-as="Invoice Number" data-vv-scope="supplierPO" @focus="trackFormStart">
          <div class="invalid-feedback" v-if="errors.has('supplierPO.dataRowsInputInvoice' + index)">
            {{ errors.first('supplierPO.dataRowsInputInvoice' + index) }}
          </div>
        </div>
      </div>
      <div class="form__row">
        <div class="row__max po-row_max">
          <div v-if="showRequiredPOError" class="invalid-feedback" v-cloak=""> Please fill PO Number and Invoice Number </div>
        </div>
      </div>
      <p v-show="rowOverflowPO" class="text-color-red" v-cloak="">Too many rows entered, only displaying results for the first {{maxRows}} rows.</p>
    </div>
    <div id="nopoTab" :class="{hideDiv:isPOInvoice}">
      <div style="margin-top: 15px;"></div>
      <div :class="{hideDiv:hideTextArea}">
        <img id="helpImage" v-if="showHelp" src="/content/dam/corporate/about/SupplierInvoiceNOPO.gif" class="supplier-help-img">
        <p class="block">Please paste your spreadsheet data as Invoice number followed by Invoice Date and Invoice Amount.&nbsp; <a href="#" id="helpLink" v-on:click.prevent="showHelp = !showHelp">({{helpLinkText}})</a> </p>
        <textarea name="excel_data" v-model="noPOformData" @paste="pasteEvent" class="text-area"></textarea><br>
      </div>
      <div class="status-input-msg" :class="{hideDiv:!hideTextArea}">To get started, enter your Invoice numbers, Invoice Date (MM/dd/yyyy) and Invoice Amount (numeric only and may contain 2 decimal points) below. Enter as many Invoice numbers,
        Invoice Date and Invoice Amount as you need. Do not feel like you need to enter a value for each row.</div>
      <p v-show="rowOverflowNOPO" class="text-color-red" v-cloak="">Too many rows entered, only displaying results for the first {{maxRows}} rows.</p>
      <div class="labels-content">
        <label class="no-po-label label-right-margin no-po-mobile">Invoice Number <a href="#poTab" class="link-text" @click="switchToNoPO">Click here if you have a PO number</a></label>
        <label class="no-po-label label-right-margin label-margin margin-mobile">Invoice Date</label>
        <label class="no-po-label label-margin">Invoice Amount</label>
      </div>
      <div v-for="(row,index) in noPODataRows" v-bind:key="row.id" class="input-wrapper">
        <div class="no-po-input">
          <input type="text" v-model="noPODataRows[index].invoiceNumber" placeholder="12345" v-on:change="handleNewNOPORow(row)" class="status-nopo-input-box" v-validate.initial="'invoiceMaxLength'"
            :data-vv-name="'supplierNoPO.noPORowsInputInvoice' + index" data-vv-as="Invoice Number" data-vv-scope="supplierNoPO" @focus="trackFormStart">
          <div class="invalid-feedback" v-if="errors.has('supplierNoPO.noPORowsInputInvoice' + index)">
            {{ errors.first('supplierNoPO.noPORowsInputInvoice' + index) }}
          </div>
        </div>
        <div class="no-po-input">
          <input type="text" v-model="noPODataRows[index].invoiceDate" maxlength="10" placeholder="MM/dd/yyyy" v-on:change="handleNewNOPORow(row)" class="status-nopo-input-box" v-validate.initial="'date_format:MM/dd/yyyy'"
            :data-vv-name="'supplierNoPO.noPORowsInputDate' + index" data-vv-as="Invoice Date" data-vv-scope="supplierNoPO" @focus="trackFormStart">
          <div class="invalid-feedback" v-if="errors.has('supplierNoPO.noPORowsInputDate' + index)">
            {{ errors.first('supplierNoPO.noPORowsInputDate' + index) }}
          </div>
        </div>
        <div class="no-po-input">
          <input type="text" v-model="noPODataRows[index].invoiceAmount" maxlength="13" v-on:change="handleNewNOPORow(row)" class="status-nopo-input-box" v-validate.initial="{regex: /^([0-9]+((?=[\.,][0-9]{1,2}$)[\.,]?[0-9]{0,2})?)$/}"
            :data-vv-name="'supplierNoPO.noPORowsInputAmount' + index" data-vv-as="Invoice Amount" data-vv-scope="supplierNoPO" @focus="trackFormStart">
          <div class="invalid-feedback" v-if="errors.has('supplierNoPO.noPORowsInputAmount' + index)">
            {{ errors.first('supplierNoPO.noPORowsInputAmount' + index) }}
          </div>
        </div>
      </div>
      <div class="form__row">
        <div class="row__max noPo-row_max">
          <div v-if="showRequiredNoPOError" class="invalid-feedback" v-cloak=""> Please fill Invoice number, invoice date and invoice amount. </div>
        </div>
      </div>
      <p v-show="rowOverflowNOPO" class="text-color-red" v-cloak="">Too many rows entered, only displaying results for the first {{maxRows}} rows.</p>
    </div>
  </div>
  <div v-if="responseData != null &amp;&amp; getInvoiceStatus &amp;&amp; !loading" id="excel_table" :class="{hideDiv:hideTable}" v-cloak="">
    <table v-if="isPOInvoice" class="table status-table">
      <thead class="thead-light">
        <tr>
          <th class="table-column">Purchase Order Number</th>
          <th class="table-column">Invoice Number</th>
          <th>Status</th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="invoiceStatus in getInvoiceStatus">
          <td>{{invoiceStatus.purchaseOrderNumber}}</td>
          <td>{{invoiceStatus.invoiceNumber}}</td>
          <td><span v-html="invoiceStatus.statusMessage"></span></td>
        </tr>
      </tbody>
    </table>
    <table v-if="!isPOInvoice" class="table status-table">
      <thead class="thead-light">
        <tr>
          <th class="no-po-table">Invoice Number</th>
          <th class="no-po-table">Invoice Date</th>
          <th class="no-po-table">Invoice Amount</th>
          <th>Status</th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="invoiceStatus in getInvoiceStatus">
          <td>{{invoiceStatus.invoiceNumber}}</td>
          <td>{{invoiceStatus.invoiceDate}}</td>
          <td>{{invoiceStatus.invoiceAmount}}</td>
          <td><span v-html="invoiceStatus.statusMessage"></span></td>
        </tr>
      </tbody>
    </table>
  </div>
  <div class="invalid-feedback" v-if="systemError" v-cloak="">Your request could not be completed at this time. Please try again later or contact Dow for assistance.</div>
  <div class="col-xs-12 captcha2" v-show="isCaptcha2" key="captchaV2">
    <div id="captcha2"></div>
    <ul class="form__error" id="recaptcha-required-error" style="display: none; padding-left: 0; float:none;">
      <li id="captcha2error" class="parsley-required">Please check the box and follow instructions to verify you are not a robot.</li>
    </ul>
  </div>
  <div v-if="loading == true">
    <div class="component-loader pdp-loader">
      <div class="loader-child loader-bounce1"></div>
      <div class="loader-child loader-bounce2"></div>
      <div class="loader-child loader-bounce3"></div>
    </div>
  </div>
  <div><a class="btn btn-primary invoice-button" :disabled="submitButtonDisabled" id="invoice-submit-btn" aria-label="button" @click="submitForm">Check Payment Status</a>
    <a class="btn btn-primary invoice-button" :disabled="downloadPaymentStatusDisabled" id="invoice-download-btn" aria-label="button" @click="downloadPaymentStatusCSV">Download Payment Status</a>
    <a class="btn btn-primary-alt invoice-button" aria-label="button" @click="clearForm">Clear Form</a>
  </div>
  <div class="invalid-feedback" v-if="requireFieldError" v-cloak="">Please fix input data fields.</div>
  <div class="invalid-feedback" v-if="submitError" v-cloak="">An error occurred while submitting your form. Please try again in five minutes. If the problem persists, please submit an inquiry by clicking the "Contact Us" button below.</div>
</form>

Text Content

CORPORATE
Dow.com Contact Us Locations

What are you looking for?

 * About
   About
      Our Company
    * Ambition & Values
    * Beliefs & Culture
    * Leadership
    * Awards
    * History
   
      Partnerships
      
    * Global Citizenship
    * The K-12 Project
    * Sports Marketing
    * TRANSCAER®
   
    * Dow Venture Capital
      * Contact Venture Capital
    * Suppliers
      * Supplier Information
      * Supplier Invoice Status
      * Work with Us
   
      Legal
    * Public Policy
    * Issues & Challenges
    * Codes of Conduct
   
   VIEW ABOUT
 * Careers
   Careers
    * Search Jobs & Apply
    * Working at Dow
    * Application Overview
    * Join the Talent Community
    * Career Areas
    * Internships
    * Recent Graduates
    * Apprenticeships
   
   VIEW CAREERS
 * Investors
   
 * Science & Sustainability
   Science & Sustainability
    * 2025 Sustainability Goals
    * Reporting
    * Ending plastic waste
    * Commitment to protect the climate
    * Sustainability Targets
    * Innovation
    * Working Together
   
   VIEW SCIENCE & SUSTAINABILITY
 * News & Media
   News & Media
    * Press Releases
    * Events
    * Media Gallery
    * Press Contacts
   
   VIEW NEWS & MEDIA
 * Seek Together Blog
   
 * Markets & Products
   

[{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"BR","default":"pt-br"},{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"JP","default":"ja-jp"},{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"CN","default":"zh-cn"},{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"US","default":"en-us"},{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"ES","default":"es-es"},{"values":[{"value":"Português-Portuguese","languageCode":"pt-br","link":"javascript:void(0);"},{"value":"日本語-Japanese","languageCode":"ja-jp","link":"javascript:void(0);"},{"value":"中文-Chinese","languageCode":"zh-cn","link":"javascript:void(0);"},{"value":"English","languageCode":"en-us","link":"javascript:void(0);"},{"value":"Español-Spanish","languageCode":"es-es","link":"javascript:void(0);"},{"value":"한국어-Korean","languageCode":"ko-kr","link":"javascript:void(0);"}],"label":"KR","default":"ko-kr"}]



If you are using Internet Explorer (IE), please switch to another browser for
the best visual experience

This website uses cookies to provide you the best experience. By clicking the
“Accept” button below, you are consenting to receive and store cookies from our
site. Remember, you can manage cookies in your browser’s settings. If you do not
accept the deployment of cookies or restrict them in any way, you will not be
able to use all the interactive functions on our website. For more information
about our use of cookies, please view our Privacy Policy.


Accept Deny

Corporate Home About Dow Suppliers Supplier Invoice Status
 * English
 * Português
 * Español
 * Français
 * Deutsch
 * Türkçe
 * 中文
 * 日本語
 * 한국어




SUPPLIER INVOICE STATUS



--------------------------------------------------------------------------------

Bulk Excel Data LookUp

Please paste your spreadsheet data as Purchase Order number followed by Invoice
number.  ({{helpLinkText}})


To get started, enter your Purchase Order (PO) and Invoice numbers below. Enter
as many PO and Invoice numbers as you need. Do not feel like you need to enter a
value for each row.

Too many rows entered, only displaying results for the first {{maxRows}} rows.

PO Number Click here if you do not have PO number Invoice Number
{{ errors.first('supplierPO.dataRowsInput' + index) }}
{{ errors.first('supplierPO.dataRowsInputInvoice' + index) }}
Please fill PO Number and Invoice Number

Too many rows entered, only displaying results for the first {{maxRows}} rows.

Please paste your spreadsheet data as Invoice number followed by Invoice Date
and Invoice Amount.  ({{helpLinkText}})


To get started, enter your Invoice numbers, Invoice Date (MM/dd/yyyy) and
Invoice Amount (numeric only and may contain 2 decimal points) below. Enter as
many Invoice numbers, Invoice Date and Invoice Amount as you need. Do not feel
like you need to enter a value for each row.

Too many rows entered, only displaying results for the first {{maxRows}} rows.

Invoice Number Click here if you have a PO number Invoice Date Invoice Amount
{{ errors.first('supplierNoPO.noPORowsInputInvoice' + index) }}
{{ errors.first('supplierNoPO.noPORowsInputDate' + index) }}
{{ errors.first('supplierNoPO.noPORowsInputAmount' + index) }}
Please fill Invoice number, invoice date and invoice amount.

Too many rows entered, only displaying results for the first {{maxRows}} rows.

Purchase Order Number Invoice Number Status
{{invoiceStatus.purchaseOrderNumber}} {{invoiceStatus.invoiceNumber}}

Invoice Number Invoice Date Invoice Amount Status
{{invoiceStatus.invoiceNumber}} {{invoiceStatus.invoiceDate}}
{{invoiceStatus.invoiceAmount}}

Your request could not be completed at this time. Please try again later or
contact Dow for assistance.
 * Please check the box and follow instructions to verify you are not a robot.


Check Payment Status Download Payment Status Clear Form
Please fix input data fields.
An error occurred while submitting your form. Please try again in five minutes.
If the problem persists, please submit an inquiry by clicking the "Contact Us"
button below.



HAVE A QUESTION?

Supplier FAQs
Contact us






About

 * Our Company
   
    * Ambition & Values
    * Beliefs & Culture
    * Leadership
    * Awards
    * History

 * Partnerships
   
    * Dow Promise
    * Global Citizenship
    * The K-12 Project
    * Sports Marketing
    * TRANSCAER®

 * Dow Venture Capital
   
    * Contact Venture Capital

 * Suppliers
   
    * Supplier Information
    * Supplier Invoice Status
    * Work with Dow

 * Legal
   
    * Public Policy
    * Issues & Challenges
    * Code of Conduct

Careers

Search Jobs & Apply
Working at Dow
Application Overview
Join the Talent Community
Professionals
Veterans
Apprenticeships

Investors

Science & Sustainability

2025 Sustainability Goals
Reporting
Areas of Expertise
Working Together
Plastics for a circular world

News

Media Gallery
Press Contacts

Seek Together  Blog

Markets & Products

Benefits & Well-being

MyAccount @ Dow
Privacy Statement
Terms of Use
Accessibility Statement
California Supply Chains Act

Copyright © Dow (1995-2023). All Rights Reserved.

®™ Trademark of Dow or an affiliated company of Dow

Connect with Dow:



ABOUT COOKIES ON THIS SITE

This website uses strictly necessary cookies to make our site work. You can set
your browser to block or alert you about these cookies, but some parts of the
site may not then work. We’d also like to set other cookies (i.e., Functional,
Performance and Targeting cookies) that help us provide a personalized
experience of our site. These will be set only if you click “accept all cookies”
below or otherwise adjust the cookie settings to enable such cookies. For more
information about our use of cookies and your choices, please click “View more
information” below and view the “cookies and other technologies” section of
ourPrivacy Policy.

Decline All Accept All
View more information



PRIVACY PREFERENCE CENTER

When you visit any website, it may store or retrieve information on your
browser, mostly in the form of cookies. This information might be about you,
your preferences or your device and is mostly used to make the site work as you
expect it to. The information does not usually directly identify you, but it can
give you a more personalized web experience. Because we respect your right to
privacy, you can choose not to allow some types of cookies. Click on the
different category headings to find out more and change our default settings.
However, blocking some types of cookies may impact your experience of the site
and the services we are able to offer.
More Information
Allow All


MANAGE CONSENT PREFERENCES

STRICTLY NECESSARY COOKIES

Always Active

These cookies are necessary for the website to function and cannot be switched
off in our systems. They are usually only set in response to actions made by you
which amount to a request for services, such as setting your privacy
preferences, logging in or filling in forms.    You can set your browser to
block or alert you about these cookies, but some parts of the site will not then
work. These cookies do not store any personally identifiable information.

Cookies Details‎

PERFORMANCE COOKIES

Performance Cookies

These cookies allow us to count visits and traffic sources so we can measure and
improve the performance of our site. They help us to know which pages are the
most and least popular and see how visitors move around the site.    All
information these cookies collect is aggregated and therefore anonymous. If you
do not allow these cookies we will not know when you have visited our site, and
will not be able to monitor its performance.

Cookies Details‎

FUNCTIONAL COOKIES

Functional Cookies

These cookies enable the website to provide enhanced functionality and
personalisation. They may be set by us or by third party providers whose
services we have added to our pages.    If you do not allow these cookies then
some or all of these services may not function properly.

Cookies Details‎

TARGETING COOKIES

Targeting Cookies

These cookies may be set through our site by our advertising partners. They may
be used by those companies to build a profile of your interests and show you
relevant adverts on other sites.    They do not store directly personal
information, but are based on uniquely identifying your browser and internet
device. If you do not allow these cookies, you will experience less targeted
advertising.

Cookies Details‎
Back Button


PERFORMANCE COOKIES



Search Icon
Filter Icon

Clear
checkbox label label
Apply Cancel
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

 * 
   
   View Cookies
   
    * Name
      cookie name

Agree and Proceed