function saveChatHistory(sessionId, message) { const chatData = JSON.parse(sessionStorage.getItem(sessionId)) || []; chatData.push(message); sessionStorage.setItem(sessionId, JSON.stringify(chatData)); }function loadChatHistory(sessionId) { const chatData = JSON.parse(sessionStorage.getItem(sessionId)) || []; chatData.forEach(message => { // Logic to display message console.log(message); }); }// On page load, load chat history window.onload = function () { const sessionId = sessionStorage.getItem('sessionId') || `session_${Date.now()}`; sessionStorage.setItem('sessionId', sessionId); loadChatHistory(sessionId); };// Save chat history when sending a message function sendMessage(message) { const sessionId = sessionStorage.getItem('sessionId'); saveChatHistory(sessionId, { user: message }); // Send the message to the backend... }

Do’s & Don’ts for TDS Returns

Given below are some do’s and don’ts for filing of TDS returns: Do’s Ensure that TDS return is filed with the same TAN against which TDS payment has been made. Ensure that correct challan particulars including CIN and amount is mentioned. Correct PAN of the deductee is mentioned. Correct section is quoted against each deductee…

Read More

Dos & Don’ts for TDS Returns

Given below are some dos and don’ts for the filing of TDS returns: Dos Ensure that TDS return is filed with the same TAN against which TDS payment has been made. Ensure that correct challan particulars including CIN and amount is mentioned. Correct PAN of the deductee is mentioned. Correct section is quoted against each…

Read More

Points to remember regarding TDS statement

Given below are the points one should remember regarding TDS statement: Correct Reporting: Cancellation of TDS return and deductee row is no longer permissible. Accordingly, it is very important to report correct and valid particulars (TAN of the deductor, Category (Government / Non-Government) of the deductor, PAN of the deductees and other particulars of deduction of…

Read More

Employers required to collect PAN of the lender banks from the employees to claim Interest in House Property in the salary return

The Finance Act, 2015 had introduced a new section 192(2D) of the Income-tax Act, wherein the employer was obliged to collect the necessary evidence or proof in Form 12BB  to allow any claim for any deduction and/or tax saving investments. One of the requirements in Form 12BB for claiming the interest on house property is…

Read More

Dos & Don’ts for TDS Returns

Given below are some dos and don’ts for the filing of TDS returns: Dos Ensure that TDS return is filed with the same TAN against which TDS payment has been made. Ensure that correct challan particulars including CIN and amount is mentioned. Correct PAN of the deductee is mentioned. Correct section is quoted against each…

Read More

197 Certificate – Rationale & Brief Analysis

What is 197 Certificate? The section 197 of Income Tax Act, 1961 provides the facility of non-deduction or lower deduction of tax. The assessee whose TDS is to be deducted on certain receipts can make application before Assessing Officer to get this benefit. The deductee can apply for certificate for non-deduction or lower deduction of…

Read More