Skip to main content

Online Income Tax payment using NetBanking


Read more about Tax filing @ http://tips4ufromsony.blogspot.com/2011/07/income-tax-process-and-e-filing.html .

Hello readers, this tip is about how to do the Online Income Tax payment using NetBanking. This is best suited for guys who didn’t pay some tax amount through their company.This might be helpful for those who joined a new company, not @ APRIL 01

Details about online tax payment are available @
https://onlineservices.tin.nsdl.com/etaxnew/tdsnontds.jsp
http://www.axisbank.com/personal/paymenttransfers/taxepayments/Tax-e-Payments.asp

Steps to be followed :

  1. Go to the Income Tax site above.
  2. Click on the “CHALLAN NO./ITNS 280 (payment of Income tax & Corporation Tax)”
  3. On this page choose Tax Applicable as “(0021)INCOME-TAX (OTHER THAN COMPANIES)”
  4. Give your details including “Permanent Account No”
  5. Choose “Assessment Year”, note that this is Assessment Year and not Financial Year
  6. “Type Of Payment”: (100)ADVANCE TAX  or (300)SELF ASSESSMENT TAX: This depends on for which year you are paying the tax. If you are paying tax for current Financial year select Advance Tax (for example, if you are paying before 31-MARCH-2011 for the FY 2010-11 or AY 2011-12). If you are paying tax for a previous Financial Year select Self Assessment Tax (for example, if you are paying after 31-MARCH-2011 for the FY 2010-11 or AY 2011-12)
  7. Choose your “Bank Name” where you have online banking, so that you can pay your taxes
  8. Click on Proceed (located at the bottom of the page)
  9. Once you have paid your taxes, Income tax department will issue you a receipt.

FAQs: https://tin.tin.nsdl.com/oltas/oltas-faqs.html


Comments

  1. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

GC Log Analyzer from IBM

This blog is about the GC( garbage collection) log analyzer from IBM. If you have a GC log and you want to analyze the file,  this IBM tool will help you with some graphical analyzer and some recommendations. You can download it from the following URL : https://www.ibm.com/support/pages/ibm-pattern-modeling-and-analysis-tool-java-garbage-collector-pmat Please find below some screenshots and details that might help you. 1. Screenshot 1: 2. Screenshot 2 : 3. Screenshot 3 : 4. Screenshot 4:

ATG User Profile schema ER diagram

Check out the Product Catalog  schema ER-Diagram @  http://tips4ufromsony.blogspot.in/2012/01/atg-product-catalog-schema-er-diagram.html Check out the O rder schema ER-Diagram @   http://tips4ufromsony.blogspot.in/2012/02/atg-order-schema-er-diagram.html If you would like to know the relationship between different User Profile schema tables, please find below screen shot of  Profile schema ER Diagrams.  

Eclipse plug-in to create Class and Sequence diagrams

ModelGoon is an Eclipse plug-in avaiable for UML diagram generation from Java code. It can be used to generate Package Dependencies Diagram, Class Diagram, Interaction Diagram and Sequence Diagram. You coud get it from http://marketplace.eclipse.org/content/modelgoon-uml4java Read more about it and see some vedios about how to create the class and sequence diagram @ http://www.modelgoon.org/?tag=eclipse-plugin Find some snapshots below which gives an idea about the diagram generation.

Tax Credit Statement ( Form 26AS )

Read more about Tax filing @  http://tips4ufromsony.blogspot.com/2011/07/income-tax-process-and-e-filing.html  . Form 26AS is a consolidated tax statement issued under Rule 31 AB of Income Tax Rules to PAN holders. This statement, with respect to a financial year, will include details of: Tax deducted at source (TDS). Tax collected at source (TCS). Advance tax/self assessment tax/regular assessment tax etc., deposited in the bank by the taxpayers (PAN holders). Paid refund received during the financial year. Form 26AS will be prepared only with respect to Financial Year 05-06 onwards. To view the Form26AS , log-in to https://incometaxindiaefiling.gov.in and click on ‘View Tax Credit Statement (From 26AS)’  in ‘My Account’. Read more about Form 26AS  @ http://www.incometaxindia.gov.in/26ASTaxCreditStatement.asp http://www.tin-nsdl.com/form26as.asp

ATG Search - how estore(commerce instance) forms the search engine SOAP URL ?

The comminucation between the Commerce box and the Search engine is through SOAP. Read  more about this architecture @  http://tips4ufromsony.blogspot.in/2011/11/atg-search-architectural-flow-search.html The commerce instance forms the SOAP url just like the below code: private URL getSearchEngineURL(SearchEngine engine) {       SearchEnvironmentHost h =  engine.getSearchEnvironmentHost();       SearchMachine hi = h.getSearchMachine() ;       return new URL( "http://" + hi.getHostname() + ":" + engine.getPort() + "/AEXmlService/" );   } So the commerce instance need the hi.getHostname()  and engine.getPort() to form the url. It is obtained as below: 1. The component / atg/commerce/search/refinement/ CommerceFacetSearchService has the siteName defined, which will be pointing to the environment name defined in the Search Project. Read  more about this search project setup @  http://...