Logo
Creative Financial Staffing

Financial Reporting & Technical Accounting Manager

Creative Financial Staffing, Tampa, Florida, United States, 33602

Save Job

Financial Reporting & Technical Accounting Manager Global Organization seeking their next rock-star Financial Reporting & Technical Accounting Manager to join their team growing team! Why join this company?

* Global Organization Across 100+ Countries - 1,200+ Employees

* 14 Weeks 100% Fully Paid Family Leave

* 401K w/ Great Match

* 12 Paid Holidays + 2 Volunteer/Floating Days Off Annually + UNLIMITED VACATION POLICY!

* Generous Tuition & Professional Development Reimbursement

* 40+ Year Old Company, Has grown rapidly - Aggressive Growth Plans - Lots of Growth Potential

* Lots of M & A Activity - Tripled in size last 7+ years in Revenue

Responsibilities for the Financial Reporting & Technical Accounting Manager:

* Researching Technical Pronouncements & Writing Memos and White Papers

* Collaborate with BIG4 CPA Firm on super complex matters

* Work cross functionally to support all business units globally on complex accounting matters

* Work with the FP & A and General Ledger Teams on any complex accounting pronouncements

* Financial Reporting - Prepare monthly cash flow statements along with Ad-Hoc reporting for leadership

* Business Combination experience with any acquisitions

* Work with external auditors for Annual Audit requests and reporting

* Research and Review Complex Reconciliations

* Software - NetSuite & MS Excel

Qualifications for the Financial Reporting & Technical Accounting Manager:

* Bachelor's Degree in Accounting | MBA | Masters Welcomed

* CPA or CMA

* 5+ Years of Experience between Public Accounting & Industry

* SaaS | Technology | IFRS | GAAP Experience

Salary: $115,000 - $135,000 Base depending on experience #INNOV2025 #ZRCFS #LI-TQ1 #LI-ONSITE

EB-1858024156 document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last