IRS Plans to Shake Up Leadership

4 min read

The top leadership in the IRS is set to change. IRS Commissioner Daniel Werfel believes the changes are needed for the agency to meet its new goals. He aims to create greater flexibility and efficiency over the agency by streamlining internal processes. The changes also are needed, in his view, to adapt to the evolving landscape around tax administration – which has undergone changes due to new tax laws and technology.

What Are the Changes?

Changes to the organizational structure include reducing the Deputy Commissioner post to a single position (there are currently two); as well as creating four new positions with an IRS chief of taxpayer services, IT, compliance, and operations.

Long Time No Changes

While these changes are set to take place in the beginning of 2024, they are the first changes to take place in a long time for agency leadership. Currently, the highest rungs of the IRS organizational structure dates to the year 2000, over 20 years ago.

The last time changes were made in 2000, the IRS reorganized operations to support taxpayer segments that were the result of the IRS Restructuring and Reorganization Act of 1998.

Single Deputy IRS Commissioner Model

The change over from two at the top to a single deputy IRS commissioner position is modeled after the way the Treasury Department is structured. Doug O’Donnell, current deputy commissioner for Services and Enforcement, will step up to the post.

The Four New Positions

Other key changes in the leadership structure are the creation of four new chief positions, overseeing the areas of taxpayer service, compliance, IT, and operations.

Ken Corbin (currently Wage and Investment Commissioner) is being promoted to Chief, Taxpayer Service. Corbin served in various roles within the IRS since starting his career in 1986 at the Atlanta Service Center. His division will handle taxpayer-centered services, including the toll-free call and taxpayer assistance centers, overseeing tax return processing centers and correspondence with taxpayers.

The Chief, Taxpayer Compliance Officer role will be filled by Heather Maloy. Maloy’s career encompasses both roles within the IRS as well as private practice. Previously, she served as the LB&I Commissioner as well as other roles, including Associate Chief Counsel to a number of IRS divisions. The Chief, Taxpayer Compliance Officer role will oversee compliance work, including operations in the Small Business, Self Employed, Tax Exempt, and Government Entities divisions. She will also be responsible for the Professional Responsibility, Return Preparer, and Whistleblower offices.

The position of Chief Information Officer will be filled by Rajiv Uppal. Uppal’s current role is as the Director of the Office of IT and Chief Information Officer for Medicare and Medicaid Services centers. The Chief IT Officer role will oversee the entire IRS IT division.

Finally, the fourth new position, that of Chief Operating Officer, will be held by Melanie Krause. Krause began working at the IRS in 2021 and currently serves as the Chief Data and analytics Officer. Prior to this, she was the Acting Deputy Commissioner for Services and Enforcement.

Conclusion

Logistically, the changes should occur on the proposed timeline as reorganization changes that do not require a budgetary appropriation amendment. In layman’s terms, the IRS isn’t looking to Congress for any more money, so Congressional approval isn’t needed. As such, the changes are all but certain to take place in early 2024. The result aims to help the organization adapt to recent tax law changes and evolving technology while simultaneously streamlining the organization and making it both more efficient and effective.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

IRS Plans to Shake Up Leadership

January 1, 2024  ·  Blog, Tax and Financial News, Uncategorized

4 min read

The top leadership in the IRS is set to change. IRS Commissioner Daniel Werfel believes the changes are needed for the agency to meet its new goals. He aims to create greater flexibility and efficiency over the agency by streamlining internal processes. The changes also are needed, in his view, to adapt to the evolving landscape around tax administration – which has undergone changes due to new tax laws and technology.

What Are the Changes?

Changes to the organizational structure include reducing the Deputy Commissioner post to a single position (there are currently two); as well as creating four new positions with an IRS chief of taxpayer services, IT, compliance, and operations.

Long Time No Changes

While these changes are set to take place in the beginning of 2024, they are the first changes to take place in a long time for agency leadership. Currently, the highest rungs of the IRS organizational structure dates to the year 2000, over 20 years ago.

The last time changes were made in 2000, the IRS reorganized operations to support taxpayer segments that were the result of the IRS Restructuring and Reorganization Act of 1998.

Single Deputy IRS Commissioner Model

The change over from two at the top to a single deputy IRS commissioner position is modeled after the way the Treasury Department is structured. Doug O’Donnell, current deputy commissioner for Services and Enforcement, will step up to the post.

The Four New Positions

Other key changes in the leadership structure are the creation of four new chief positions, overseeing the areas of taxpayer service, compliance, IT, and operations.

Ken Corbin (currently Wage and Investment Commissioner) is being promoted to Chief, Taxpayer Service. Corbin served in various roles within the IRS since starting his career in 1986 at the Atlanta Service Center. His division will handle taxpayer-centered services, including the toll-free call and taxpayer assistance centers, overseeing tax return processing centers and correspondence with taxpayers.

The Chief, Taxpayer Compliance Officer role will be filled by Heather Maloy. Maloy’s career encompasses both roles within the IRS as well as private practice. Previously, she served as the LB&I Commissioner as well as other roles, including Associate Chief Counsel to a number of IRS divisions. The Chief, Taxpayer Compliance Officer role will oversee compliance work, including operations in the Small Business, Self Employed, Tax Exempt, and Government Entities divisions. She will also be responsible for the Professional Responsibility, Return Preparer, and Whistleblower offices.

The position of Chief Information Officer will be filled by Rajiv Uppal. Uppal’s current role is as the Director of the Office of IT and Chief Information Officer for Medicare and Medicaid Services centers. The Chief IT Officer role will oversee the entire IRS IT division.

Finally, the fourth new position, that of Chief Operating Officer, will be held by Melanie Krause. Krause began working at the IRS in 2021 and currently serves as the Chief Data and analytics Officer. Prior to this, she was the Acting Deputy Commissioner for Services and Enforcement.

Conclusion

Logistically, the changes should occur on the proposed timeline as reorganization changes that do not require a budgetary appropriation amendment. In layman’s terms, the IRS isn’t looking to Congress for any more money, so Congressional approval isn’t needed. As such, the changes are all but certain to take place in early 2024. The result aims to help the organization adapt to recent tax law changes and evolving technology while simultaneously streamlining the organization and making it both more efficient and effective.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

Service2Client

Share
Published by
Service2Client