Thursday, September 10, 2015

Oracle Apps General Ledger Tables: Oracle GL Tables and Common GL Queries

Below are Common Oracle Apps GL Tables

GL_SETS_OF_BOOKS
Stores information about the sets of books you define in your Oracle General Ledger application. Each row includes the set of books name, description, functional currency, and other information. This table corresponds to the Set of Books form.

GL_IMPORT_REFERENCES
Stores individual transactions from subledgers that have been summarized into Oracle General Ledger journal entry lines through the Journal Import process. You can specify the journal entry sources for which you want to maintain your transaction’s origin by entering ’Yes’ in the Import Journal References field of the Journal Sources form.
For each source that has Import Journal References set to ’Yes’, Oracle General Ledger will populate GL_IMPORT_REFERENCES with one record for each transaction in your feeder system.

GL_DAILY_RATES
Stores the daily conversion rates for foreign currency transactions. It replaces the GL_DAILY_CONVERSION_RATES table. It stores the rate to use when converting between two currencies for a given conversion date and conversion type. Each row in this table has a corresponding inverse row in which the from and to currencies are switched.

GL_JE_LINES
 Stores the journal entry lines that you enter in the Enter Journals form. There is a one–to–many relationship between journal entries and journal entry lines. Each row in this table stores the associated journal entry header ID, the line number, the associated code combination ID, and the debits or credits associated with the journal line. STATUS is ’U’ for unposted or ’P’ for posted.

GL_PERIODS
Stores information about the accounting periods you define using the Accounting Calendar form. Each row includes the start date and end date of the period, the period type, the fiscal year, the period number, and other information. There is a one–to–many relationship between a row in the GL_PERIOD_SETS table and rows inthis table.

GL_JE_HEADERS
Stores journal entries. There is a one–to–many relationship between journal entry batches and journal entries. Each row in this table includes the associated batch ID, the journal entry name and description, and other information about the journal entry. This table corresponds to the Journals window of the Enter Journals form. STATUS is ’U’ for unposted, ’P’ for posted.

GL_JE_BATCHES
Stores journal entry batches. Each row includes the batch name, description, status, running total debits and credits, and other information. This table corresponds to the Batch window of the Enter Journals form. STATUS is ’U’ for unposted, ’P’ for posted, ’S’ for selected, ’I’ for in the process of being posted. Other values of status indicate an error condition. STATUS_VERIFIED is ’N’ when you create or modify an unposted journal entry batch.

GL_BALANCES
Stores actual, budget, and encumbrance balances for detail and summary accounts. This table stores functional currency, foreign currency, and statistical balances for each accounting period that has ever been opened.
ACTUAL_FLAG is either ’A’, ’B’, or ’E’ for actual, budget, or encumbrance balances, respectively. If ACTUAL_FLAG is ’B’, then BUDGET_VERSION_ID is required. If ACTUAL_FLAG is ’E’, then ENCUMBRANCE_TYPE_ID is required.

GL_CODE_COMBINATIONS
Stores valid account combinations foreach Accounting Flexfield structure within your Oracle General Ledger application. Associated with each account are certain codes and flags, including whether the account is enabled, whether detail posting ordetail budgeting is allowed, and others.

Common Oracle Apps General Ledger (GL Queries)
--Journal header summary
SELECT sob.SHORT_NAME"Book"
,   gjh.STATUS
,   gjh.POSTED_DATE
,   gjh.CREATION_DATE
,   gls.user_je_source_name"Source"
,   glc.user_je_category_name"Category"
,   gjh.PERIOD_NAME"Period"
,   gjb.NAME"Batch Name"
,   gjh.NAME"Journal Name"
,   gjh.currency_code"Currency"
FROM GL_JE_BATCHES gjb, GL_JE_HEADERS gjh,GL_SETS_OF_BOOKS sob,
GL_JE_SOURCES gls, GL_JE_CATEGORIES glc
WHERE gjb.JE_BATCH_ID = gjh.JE_BATCH_ID
AND gjh.SET_OF_BOOKS_ID = sob.set_of_books_id
AND gls.JE_SOURCE_NAME = gjh.JE_SOURCE
AND  glc.JE_CATEGORY_NAME = gjh.JE_CATEGORY
--and gjh.NAME = 'QUV-DECLARATION TVA 11/04'    -- JOURNAL NAME  
--and gls.user_je_source_name like '%Mass%'  -- JOURNAL SOURCE
--AND glc.user_je_category_name= 'Adjustment'  -- JOURNAL CATEGORY
--and gjh.PERIOD_NAME in ('MAY-06')    -- JOURNAL PERIOD
and (trunc(gjh.creation_date) >= to_date('01/07/2002','dd/mm/yyyy')
or trunc(gjh.posted_date) >= to_date('01/07/2002','dd/mm/yyyy'))
--and substr(sob.short_name,1,2) in ('DE')
order by 1,2 desc,3,4,5,7

--Interface Details
SELECT SOB.SHORT_NAME "BOOK"
,    GLI.SET_OF_BOOKS_ID "SOB ID"
, TRUNC(GLI.ACCOUNTING_DATE) "GL DATE"
, GLI.CURRENCY_CODE "CUR"
, GLI.USER_JE_CATEGORY_NAME "JE CATEGOTY"
, GLI.USER_JE_SOURCE_NAME "JE SOURCE"
, GLI.ENTERED_DR "ENT DR"
, GLI.ENTERED_CR "ENT CR"
, GLI.ACCOUNTED_DR "ACC DR"
, GLI.ACCOUNTED_CR "ACC CR"
, GLI.SEGMENT1||'.'||GLI.SEGMENT2||'.'||GLI.SEGMENT3||'.'||GLI.SEGMENT4||'.'||GLI.SEGMENT5
||'.'||GLI.SEGMENT6||'.'||GLI.SEGMENT7||'.'||GLI.SEGMENT8||'.'||GLI.SEGMENT9||'.'||GLI.SEGMENT10 "ACCOUNT COMB."
, GLI.REFERENCE1 "REF 1"
, GLI.REFERENCE2 "REF 2"
, GLI.REFERENCE4 "REF 4"
, GLI.REFERENCE7 "REF 7"
, GLI.REFERENCE10 "REF 10"
, GLI.WARNING_CODE
, GLI.STATUS_DESCRIPTION
, GLI.STATUS
--SELECT GLI.REFERENCE10 "REF 10"
--SELECT DISTINCT GLI.SEGMENT4--,GLI.SEGMENT2, GLI.SEGMENT3, SOB.SHORT_NAME, GLI.SET_OF_BOOKS_ID
FROM GL_INTERFACE GLI, GL_SETS_OF_BOOKS SOB
WHERE SOB.SET_OF_BOOKS_ID(+) = GLI.SET_OF_BOOKS_ID 
--AND GLI.WARNING_CODE IS NOT NULL
--AND GLI.STATUS <> 'P'
and GLI.USER_JE_SOURCE_NAME = 'Payables'
--and trunc(GLI.DATE_CREATED) > '01-DEC-2005'
--and GLI.CURRENCY_CODE  = 'GBP'
--and (GLI.ENTERED_DR <> GLI.ACCOUNTED_DR
-- or GLI.ENTERED_CR <> GLI.ACCOUNTED_CR)
--and GLI.USER_JE_CATEGORY_NAME = 'Bill'
--and substr(SOB.SHORT_NAME,1,2) in ('BE')
--and GLI.SEGMENT3 = '8181'
--AND GLI.STATUS_DESCRIPTION IS NOT NULL
order by 3

--Journal line details
SELECT SOB.SHORT_NAME
,   SOB.NAME
,   GJH.NAME
,   GCC.SEGMENT1||'-'||GCC.SEGMENT2||'-'||GCC.SEGMENT3||'-'||GCC.SEGMENT4||'-'||GCC.SEGMENT5||'-'||GCC.SEGMENT6||'-'||GCC.SEGMENT7||'-'||GCC.SEGMENT8||'-'||GCC.SEGMENT9 "ACCOUNT"
,   GJH.CURRENCY_CODE
,   SUM(GJL.ACCOUNTED_DR)"DR"
,   SUM(GJL.ACCOUNTED_CR)"CR"
,   SUM( NVL(GJL.ACCOUNTED_DR,0) - NVL(GJL.ACCOUNTED_CR,0))"END BALANCE"
,   GJL.PERIOD_NAME
FROM GL_JE_LINES GJL
, GL_JE_HEADERS GJH
, GL_CODE_COMBINATIONS GCC
, GL_SETS_OF_BOOKS SOB
WHERE GJL.CODE_COMBINATION_ID = GCC.CODE_COMBINATION_ID
AND GJL.JE_HEADER_ID = GJH.JE_HEADER_ID
AND GJL.SET_OF_BOOKS_ID = GJH.SET_OF_BOOKS_ID
AND SOB.SET_OF_BOOKS_ID = GJH.SET_OF_BOOKS_ID
AND SOB.SET_OF_BOOKS_ID = GJL.SET_OF_BOOKS_ID
AND GJL.PERIOD_NAME = 'JUL-03'
--AND SOB.SHORT_NAME = 'GBMAN'
--AND GJH.NAME LIKE '%PPL%'
--AND GCC.SEGMENT1 = '85'
--AND GCC.SEGMENT2 = '70'
--AND GCC.SEGMENT3 = '0000'
--AND GCC.SEGMENT4 = '88165'
--AND GJH.STATUS = 'P'
--AND GJL.EFFECTIVE_DATE >= TO_DATE('06/04/2002','DD/MM/YYYY')
--AND GJL.EFFECTIVE_DATE <= TO_DATE('30/11/2002','DD/MM/YYYY')
GROUP BY SOB.SHORT_NAME, SOB.NAME, GJH.NAME
, GCC.SEGMENT1||'-'||GCC.SEGMENT2||'-'||GCC.SEGMENT3||'-'||GCC.SEGMENT4||'-'||GCC.SEGMENT5||'-'||GCC.SEGMENT6||'-'||GCC.SEGMENT7||'-'||GCC.SEGMENT8||'-'||GCC.SEGMENT9
,GJH.CURRENCY_CODE, GJL.PERIOD_NAME

243 comments:

  1. I have read your blog, it was good to read & I am getting some useful info's through your blog keep sharing... Informatica is an ETL tools helps to transform your old business leads into new vision. Learn informatica training in Chennai from corporate professionals with very good experience in informatica tool.
    Regards,

    Informatica training in chennai|Best Informatica Training In Chennai

    ReplyDelete
  2. Interesting and worth able content is discussed here. The fact about current technology is explicitly stated over here. I do agree on your thoughts on how the influencers are taking advantage over emerging technology. Thanks for sharing this in here. Keep bloging like this.

    Hadoop Training Chennai | Big Data Training Chennai | hadoop training Chennai

    ReplyDelete
  3. Hadoop is one of the best tool which is used to handle the big data in the IT industy and it is the fastest growing field in information technology.
    hadoop training in Chennai | hadoop training chennai

    ReplyDelete
  4. These provided information was really so nice,thanks for giving that post and the more skills to develop after refer that post. Your articles really impressed for me,because of all information so nice.
    Thanks,
    Selenium training institute in Chennai | Selenium training Chennai

    ReplyDelete
  5. That is very interesting; you are a very skilled blogger. I have shared your website in my social networks! A very nice guide. I will definitely follow these tips. Thank you for sharing such detailed article.
    Regards,
    Best Informatica Training in Chennai | Informatica Training Center in Chennai

    ReplyDelete
  6. For management and troubleshooting of enormous databases, corporations square measure searching for qualified and licensed dispersion's. Hadoop experts for the duty.
    Regards,
    Hadoop course in Chennai | Hadoop Training institutes in Chennai

    ReplyDelete
  7. Thanks for sharing your article.It is really interesting to read and I got more information from your site.Keep posting stuff like this.
    Android Training in Chennai | Java Training in chennai | SEO Training in Chennai

    ReplyDelete
  8. I have read your post, it was good to read & I am getting some useful info's through your blog keep sharing...
    web designing training in chennai|web design training in chennai

    ReplyDelete
  9. Nice interesting information on the latest arrived technology which helped me to get update according to the recent trends.
    Salesforce Training in Chennai | Salesforce Course in Chennai

    ReplyDelete
  10. You have done really great job. Your blog is very unique and informative. Thanks. Devops Online Training | Data Science Online Training

    ReplyDelete
  11. Great information about the oracle. I'am very new to this and now i got some knowledge now. Thanks buddy!!
    Selenium training in Chennai | Best Selenium training institute in Chennai

    ReplyDelete
  12. Thanks for the effective information.I completed my graduation degree, next I want to choose that my career web design flat-form.We share this information helped to my career job choosing.Keep it touch!!!Selenium Training in Chennai | Selenium Training | Selenium Course in Chennai

    ReplyDelete
  13. Really Nice Blog. Thank you for Sharing. We are the best erp software providers in chennai. For more details call +91 9677025199 or email us on info@bravetechnologies.in
    ERP in Chennai | ERP Providers in Chennai

    ReplyDelete
  14. Excellent post. I have read your blog it's very interesting and informative. Keep sharing.
    erp providers in chennai

    ReplyDelete
  15. I too always learn something new from your post Great post….thanks for sharing this profitable data..
    Web D School

    ReplyDelete
  16. Well, it’s a nice one, I have been looking for. Thanks for sharing such informative stuff.

    PhD Thesis Writing Services
    Dissertation Writing Services
    Research Paper Writing Services

    ReplyDelete
  17. Really an amazing post..! By reading your blog post i gained more information.
    Bulk SMS Services in Chennai
    seo services in chennai

    ReplyDelete
  18. Interesting and informative article.. very useful to me.. thanks for sharing your wonderful ideas.Diploma Project Center in Chennai | BE Project Center in Chennai | MCA Project Center in Chennai

    ReplyDelete
  19. Excellent post on Java!!!Everyone are repeating the same concept in their blog, but here I get a chance to know new things in Java programming language. I will also suggest your content to my friends to know about recent features of Java.

    Regards:

    Best Java Training in Chennai |
    J2EE Training in Chennai

    ReplyDelete
  20. The way you have explained the Big Data concept is really superb! I have never come across such a informative blog in my career. Nowadays, Hadoop course is in high demand by most of the professional to enhance their career.

    Regards:

    Big Data Training |
    Big Data Course in Chennai

    ReplyDelete
  21. Expected to form you a next to no word to thank you once more with respect to the decent recommendations you've contributed here.


    Java Training in Bangalore|
    Java Training in Chennai|
    Java Training in Bangalore|

    ReplyDelete
  22. In coming years, cloud computing is going to rule the world. The cloud based CRM tool provider like Salesforce have massive demand in the market. Thus talking Cloud Computing Training in Chennai from reputed Cloud Computing Courses will ensure bright career prospects for aspiring professionals.

    ReplyDelete
  23. I read your post from the most punctual beginning stage, it was so interesting to scrutinize and I feel as a result of you for posting such a better than average blog, keep revives as often as possible. Unix Training in Chennai
    Oracle Training in Chennai

    ReplyDelete
  24. Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.

    SELENIUM TRAINING IN CHENNAI


    ReplyDelete
  25. Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.

    SELENIUM TRAINING IN CHENNAI


    ReplyDelete
  26. Informative blog and it was up to the point describing the information very effectively. Thanks to blog author for wonderful and informative post.
    Mobile application developers in Chennai | Android application developers in Chennai | Android app developers Chennai | PHP developers chennai

    ReplyDelete
  27. Great Post. Keep it up. Much thanks to you such an incredible sum for sharing your beneficial blog. Fixed Assets Audit
    Vendor Helpdesk

    ReplyDelete
  28. Excellent post!!! In this competitive market, customer relationship management plays a significant role in determining a business success. That too, cloud based CRM product offer more flexibility to business owners to main strong relationship with the consumers.
    Cloud computing courses in Chennai|Cloud computing Training in Chennai

    ReplyDelete
  29. Those guidelines additionally worked to become a good way to recognize that other people online have the identical fervor like mine to grasp great deal more around this condition. python training in Chennai

    ReplyDelete
  30. Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it. Duplicate Payment Review | Continuous Transaction Monitoring | Duplicate Payment Recovery

    ReplyDelete
  31. Looking great blog as it consists of wonderful information with clean and neat explanation.
    Best Online Software Training Institute | Oracle DBA Training

    ReplyDelete

  32. |Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…
    Pearson Vue Testing Center in Chennai | Java Exam Center in Velachery | Microsoft Dot net Certification in Velachery

    ReplyDelete
  33. Thanks for sharing such an informative and valuable information here..keep updating
    Power System Project Center in Chennai | Power System Projects in Velachery

    ReplyDelete
  34. Very nice article.We have to learning for lot of new information.Thanks a lot.
    OCJP Exam Center in Chennai | OCJP Exam Center in Velachery

    ReplyDelete
  35. Appealing information you have provided. It gained me more knowledge and idea. Please keep up the good because i like the way you are writing. Thanks!
    No.1 Android project Center in Chennai | No.1 Android project Center in Velachery

    ReplyDelete
  36. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…
    Best IEEE Project Center in Chennai | IEEE Projects in Velachery

    ReplyDelete
  37. Thank you for information you been putting on making your site such an interesting. I gave something for my information.
    Pearson Vue Testing Center in Chennai | Java Exam Center in Velachery | Microsoft Dot net Certification in Velachery

    ReplyDelete
  38. Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.
    ISTQB Certification Training in Chennai | Java Exam Center in Chennai | Microsoft Dot net Certification in Chennai

    ReplyDelete
  39. Decent intriguing data on the most recent arrived innovation which helped me to get refresh as per the ongoing patterns.
    Article Submission sites | Education | Technology | Latest Updates

    ReplyDelete
  40. The blog you presented was very nice and interesting which helped me to get update on the recent technologies..DotNet Project Center in Chennai | DotNet Project Center in Velachery

    ReplyDelete
  41. You have done a great job, really the concept of digital was superb, its very interesting and easy to understand also.. Keep updating such a nice blog..
    Mobile Computing Projects in Chennai | Mobile Computing Projects in Velachery

    ReplyDelete
  42. Thank you for this post!! I have just discovered your blog recently and I really like it! I will definitely try some of your insights.
    java j2ee training institutes in chennai
    hibernate training in chennai

    ReplyDelete
  43. This is exactly what I wanted to read, hope in future you will continue sharing such an excellent article.
    Big Data Hadoop Training in Chennai
    Hadoop Course in Chennai

    ReplyDelete
  44. It is a wonderful data you offered to us I really enjoy by reading your article.
    best .net training
    Dot net training 

    ReplyDelete
  45. Manual testing is the important one in today IT technology. Your content is helpful to learn about manual testing. Keep sharing more like this.
    CompTIA A+ Certifications Center in Chennai | A+ Exams in Perungudi

    ReplyDelete
  46. Thanks for your informative post!!! After completing my graduation, I am confused whether to choose web design as my career. Your article helped me to make a right choice...
    Cisco Certifications Exam Center in Chennai | Best Cisco Course in Thiruvanmiyur

    ReplyDelete
  47. Nice information about delegate administrator My sincere thanks for sharing this post Please Continue to share this post..
    VMware Exam Centers in Chennai | VMware Exam Centers in Velachery

    ReplyDelete
  48. Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas. Comptia Network+ Certification Courses in Chennai | Best N+ Courses in Tambaram

    ReplyDelete
  49. Nice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep sharing…..
    No.1 Power System Project Center in Chennai | Power System Projects in Velachery

    ReplyDelete
  50. Wow! It was the best article. actually, you have posted something new compared to others, because I read many articles related to this topic but I only get impressed with your post only, keep posting.
    ISTQB Certifications Course in Chennai | QA Testing in Medavakkam

    ReplyDelete
  51. Nice blog with excellent information. Thank you, keep sharing. Full Stack Training in Hyderabad

    ReplyDelete
  52. You have provided an nice article, Thank you very much for this one. And i hope this will be useful for many people.. and i am waiting for your next post keep on updating
    Multimedia Course in Chennai | Multimedia Course in Velachery

    ReplyDelete
  53. Pretty post. Whatever we accumulated data from the web journals, we ought to actualize that in basically then no one but we can comprehend that precise thing obviously.
    Advanced Blue Prism Training in Chennai | UIPath Certification Training in Chennai | Advanced Automation Anywhere Training in Chennai

    ReplyDelete
  54. Pretty post. Whatever we accumulated data from the web journals, we ought to actualize that in basically then no one but we can comprehend that precise thing obviously.
    Best RPA Training Institute in Chennai | Best RPA Training Institute in Velachery

    ReplyDelete
  55. Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.Thanks for sharing.
    Graphic Designing Training Institute in Chennai | Graphic Designing Training Institute in Velachery

    ReplyDelete
  56. Impressive blog with lovely information. really very useful article for us thanks for sharing such a wonderful blog... 
    Software Testing Training Institute in Chennai | No.1 Software Testing Training with Placement in Chennai | Software Testing Training in Velachery

    ReplyDelete
  57. Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me...Thanks for sharing.
    BluePrism Training Institute in Chennai | UIPath Training Institute in Chennai | Automation Anywhere Training Institute in Chennai

    ReplyDelete
  58. Nice..You have clearly explained about it ...Its very useful for me to know about new things..Keep on blogging..
    Certified Ethical Hacking Training in Chennai | Blue Prism Training Institute in Chennai

    ReplyDelete
  59. This is a 2 good post. This post gives truly quality information.

    ReplyDelete
  60. Amazing article. Your blog helped me to improve myself in many ways thanks for sharing this kind of wonderful informative blogs in live. I have bookmarked more article from this website. Such a nice blog you are providing ! Kindly Visit Us @
    Best Travels in Madurai Tours and Travels in Madurai

    ReplyDelete
  61. Pretty post. Whatever we accumulated data from the web journals, we ought to actualize that in basically then no one but we can comprehend that precise thing obviously.
    Selenium Testing Course in Chennai | Selenium Testing Course in Velachery

    ReplyDelete
  62. I have to agree with everything in this post. Thanks for the useful information.
    PHP Training in Chennai |
    PHP Course in Chennai |
    PHP Training Institute in Chennai

    ReplyDelete
  63. This is very nice post i m very like it and i appreciate you for good work keep it up it is very useful for me

    German Language Classes in Chenna |
    German Classes in Chennnai |
    German Courses in Chennai

    ReplyDelete
  64. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
    Hardware and Networking Training in Chennai | Hardware and Networking Training in Taramani

    ReplyDelete
  65. Nice post. This post is very helpful. Thank you so much for sharing this post….
    Oracle Training in Chennai | Oracle Training in Kanchipuram

    ReplyDelete
  66. Very useful post. I am getting lots of information from your site. Keep sharing. Thank you...
    Best Dotnet Training Institute in Chennai |Best Dotnet Training Institute in Kanchipuram

    ReplyDelete
  67. Thanks its Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us.
    Graphic Designing Training in Chennai | Graphic Designing Training in Keelkattalai

    ReplyDelete
  68. Very interesting, good job and thanks for sharing such blog. It is very interesting to read.
    Its pretty good and well noted. All yourv points are veryuseful.


    corporate training in chennai
    corporate training
    corporate training companies in chennai
    corporate training institute in chennai

    corporate training companies

    ReplyDelete
  69. Amazing post from this website. Post from this website are very useful for me. Thanks for providing this types of article. Bank Exam Coaching Centre in Coimbatore | TNPSC Exam Coaching Centre in Coimbatore | Online Trading Training Centres in Coimbatore

    ReplyDelete
  70. This comment has been removed by the author.

    ReplyDelete
  71. This is really too useful and have more ideas from yours. keep sharing many things and thanks for sharing the informationBest JAVA Institute in Chennai|
    Best JAVA Institute in Velachery|
    Best JAVA Institute in Kanchipuram|

    ReplyDelete
  72. Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
    Advanced .Net Course in Chennai |
    Advanced .Net Course in Velachery |
    Advanced .Net Course in Kanchipuram |

    ReplyDelete
  73. Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
    Advanced .Net Course in Chennai |
    Advanced .Net Course in Velachery |
    Advanced .Net Course in Kanchipuram |

    ReplyDelete
  74. Nice and good info. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating...
    No.1 CCNA certification Training institute in Chennai|
    No.1 CCNA certification Training institute in Velachery|
    No.1 CCNA certification Training institute in Kanchipuram|

    ReplyDelete
  75. I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
    selenium training in chennai
    selenium training in omr
    selenium training in sholinganallur

    ReplyDelete
  76. Thank you for taking the time to provide us with your valuable information.
    Blueprism online training

    ReplyDelete
  77. I simply wanted to write down a quick word to say thanks to you for those wonderful tips and hints you are showing on this site.
    Best JAVA Training Institute in Chennai|
    Best JAVA Training Institute in Velachery|
    Best JAVA Training Institute in Kanchipuram|

    ReplyDelete
  78. Thank you so much for sharing such an amazing post with useful information with us. Keep updating such a wonderful blog….
    Best Vacation Courses in Kanchipuram|

    ReplyDelete
  79. I have read your blog. It’s very informative and useful blog. You have done really great job. Keep update your blog. Thanks..
    Best Summer Courses Training Institute in Kanchipuram

    ReplyDelete
  80. Thank you so much for sharing this worth able content with us. It's Very Useful content.
    Best Vacation Courses in Kanchipuram

    ReplyDelete

  81. Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
    Best AWS Training in Chennai | Best AWS Training in Velachery

    ReplyDelete
  82. Thank you so much for sharing such an amazing post with useful information with us. Keep updating such a wonderful blog….
    Best Azure Training Institute in Kanchipuram

    ReplyDelete
  83. Excellent information with unique content and it is very useful to know about the information based on blogs...
    No:1 Selenium Automation Training Institute in Kanchipuram

    ReplyDelete
  84. Informative article you shared. Thanks for sharing such nice article, keep on updating such good articles.
    Best Python Training Institute in ChennaiBest Python Training Institute in Chennai

    ReplyDelete
  85. Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
    Best Tally Training Institute in Kanchipuram

    ReplyDelete
  86. I simply wanted to write down a quick word to say thanks to you for those wonderful tips and hints you are showing on this site.
    Best Graphic Designing Training Academy in Kanchipuram

    ReplyDelete
  87. his blog is really useful and it is very interesting thanks for sharing, it is really good and exclusive.
    Software Testing Institute in Kanchipuram

    ReplyDelete
  88. Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.

    Best software testing insitute in kanchipuram

    ReplyDelete
  89. This comment has been removed by the author.

    ReplyDelete
  90. Nice and informative article. Thanks for sharing such nice article, keep on updating.

    CandC++ programming training academy in Kanchipuram

    ReplyDelete
  91. Such a cute blog. Thank you for blogging. Keep adding more blogs. Very nicely presented.
    Best AWS Training Academy in Kanchipuram

    ReplyDelete
  92. Impressive blog with lovely information. really very useful article for us thanks for sharing such a wonderful blog...
    No:1 Tally Training Academy in Kanchipuram

    ReplyDelete
  93. The strategy you have posted on this technology helped me to get into the next level and had lot of information in it…
    Best Tally Training Institute in Chennai | Best Tally Training Institute in Velachery

    ReplyDelete
  94. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…

    Best Web Designing Training Academy in Kanchipuram

    ReplyDelete

  95. Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...

    Best Java Training Academy in Kanchipuram

    ReplyDelete
  96. Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
    No:1 Linux Training Academy in Kanchipuram

    ReplyDelete
  97. Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
    No:1 Linux Training Academy in Kanchipuram

    ReplyDelete
  98. Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your
    Ideas. Best tally erp 9 Training Institute in kanchipuram|

    ReplyDelete
  99. Your Blog is nice and informative..Thanks for sharing this valuable information with us..I am visiting this website regularly, this web site sharing nice thoughts

    Best MATLAB Training Academy in Kanchipuram

    ReplyDelete
  100. Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
    Best ccnp Training Academy in Kanchipuram

    ReplyDelete
  101. It’s interesting that many of the bloggers to helped clarify a few things for me as
    Well as giving. Most of ideas can be nice content.
    Best web Designing Training Institute in in Kanchipuram

    ReplyDelete
  102. Really awesome blog. Your blog is really useful for me. Thanks for sharing this informative blog. Keep update your blog.
    No:1 CCNA Training Academy in Kanchipuram

    ReplyDelete
  103. It’s interesting that many of the bloggers to helped clarify a few things for me as
    Well as giving. Most of ideas can be nice content.
    Best web Designing Training Institute in in Kanchipuram

    ReplyDelete
  104. really you have posted an informative blog. it will be really helpful to many peoples. thank you for sharing this blog. so keep on sharing such kind of useful blogs.

    Best TALLY ERP 9.0 Training Academy In Kanchipuram

    ReplyDelete
  105. I am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.Best CCNA Training Academy in Kanchipuram

    ReplyDelete
  106. I have read your blog. It’s very informative and useful blog. You have done really great job. Keep update your blog.
    Best Cloud Computing Cource Training Institute in Kanchipuram |

    ReplyDelete
  107. Excellent post. I have read your blog it's very interesting and informative. Keep sharing..No:1 AZURE Training Academy in Kanchipuram

    ReplyDelete
  108. This is really too useful and have more ideas from yours. keep sharing many techniques. eagerly waiting for your new blog and useful information. keep doing more.
    Best Tally Cource Training Institute in Kanchipuram |

    ReplyDelete
  109. I am looking for some good blog sites for studying. I was searching over search engines and found your blog site. Well i like your high quality blog site design plus your posting abilities. Keep doing it.No:1 Python Programming Training Institute in Kanchipuram

    ReplyDelete
  110. Excellent information with unique content and it is very useful to know about the information based on blogs...No:1 Microsoft AZURE Training Institute in Kanchipuram

    ReplyDelete
  111. Awesome Post! I like writing style, the way you described the topics throughout the post. I hope many web reader will keep reading your post at the end, Thanks for sharing your view.
    Best web design Training Institute in Kanchipuram

    ReplyDelete
  112. Thanks for posting this useful content, Good to know about new things here,Keep updating your blog...Best Tally Training Institute in Kanchipuram

    ReplyDelete
  113. Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.Best Python Programming Training Institute in Kanchipuram

    ReplyDelete
  114. Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
    Best CCNA Cource Training Institute in Kanchipuram |

    ReplyDelete
  115. Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post. keep update your blog..Best Python Programming Training Academy in Kanchipuram

    ReplyDelete
  116. Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post. keep update your blog..Best Python Programming Training Academy in Kanchipuram

    ReplyDelete
  117. Thanks for sharing the Amazing Post. It shows your in-depth knowledge on the subject. Keep updating.
    Best ccnp Training Institute in Kanchipuram

    ReplyDelete
  118. Wonderful article.It is to define the concepts very well.Clearly explain the information.It has more valuable information for encourage me to achieve my career goal.
    Best CCNP Training Institute in Kanchipuram

    ReplyDelete
  119. This was an nice and amazing and the given contents were very useful and the precision has given here is good.Best AWS Training Academy in Kanchipuram

    ReplyDelete
  120. Post is very informative… It helped me with great information so I really believe you will do much better in the future.Best Python Training Academy in Kanchipuram

    ReplyDelete
  121. Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
    Best Hardware and Networking Course Training Institute in No.1 Kanchipuram |

    ReplyDelete
  122. Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.
    Best UIPpath certification Training Institute in Kanchipuram

    ReplyDelete
  123. Amazing article. Your blog helped me to improve myself in many ways thanks for sharing this kind of wonderful informative blogs in live. I have bookmarked more article from this website. Such a nice blog you are providing !
    Best Graphic Designing Training Training Institute in Kanchipuram

    ReplyDelete
  124. Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
    Best Linux Course Training Institute in Kanchipuram |

    ReplyDelete
  125. Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
    Best Linux Course Training Institute in Kanchipuram |

    ReplyDelete
  126. Really i enjoyed very much. And this may helpful for lot of peoples. So you are provided such a nice and great article within this.
    <a href="https://www.alltechzsolutions.in/python-training-in-chennai.Best PythonTraining Training Institute in Kanchipuram</a>

    ReplyDelete
  127. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.

    MatLab Training Institute in Chennai | MatLab Training in Velachery | MatLab Courses in Medavakkam

    ReplyDelete
  128. Nice and good article. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating. Very interesting content which helps me to get the in depth knowledge about the technology.
    Best Python Cource Training Institute in No.1 Kanchipuram

    ReplyDelete
  129. This is really too useful and have more ideas from yours. keep sharing many techniques
    and thanks for sharing the information.
    Best CCNA Training Institute in Kanchipuram

    ReplyDelete
  130. Thanks for sharing your wonderful and very useful information.keep updating such a impressive and attractive blog with interesting content.

    Java Training in Chennai | Java Training in Velachery | Java Training Center in Medvakkam | Java Training in Pallikaranai | Java Courses in Chennai | Java Online Training in Guindy

    ReplyDelete
  131. your Blog is really useful for me,its really very interesting and informative information post.keep updating such an amazing post.
    Linux Certification Training in Chennai | Linux Training Institute in Chennai | Linux Training Center in Adayar | Best Linux Training in Pallikaranai

    ReplyDelete

  132. Your Blog is really amazing; it’s really very informative content and useful information. Thanks for sharing your wonderful blog. Keep updating such a creative knowledge.

    Best Java Training Institute in Chenna | Java Training in Velachery | Best Java Courses in Medavakkam | Java Training Center in Pallikaranai

    ReplyDelete
  133. Your Blog is really amazing,its really useful for me and informative content with helpful information.keep updating such a wonderful post..

    Tally ERP9 Training in Chennai | Best Tally Training in Chennai | Tally Training Center in Pallikaranai | No.1 Tally ERP9 with GST Courses in Velachery

    ReplyDelete
  134. Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it..
    Python Certification Training Institute in Chennai | Python Training in Chennai | Python Exam Center in Velachery | Python Training in Velachery

    ReplyDelete
  135. Thanks for sharing this information,this is helpful to me a lot...It is amazing and wonderful to visit your site.

    Web Designing Training Institute in Chennai | Web designing Training in Velachery | Web Design Training Center in Velachery

    ReplyDelete
  136. The best thing is that your blog really informative thanks for your great information
    Best tallu erp 9 Course Training Institute in kanchipuram|

    ReplyDelete
  137. This is a great inspiring article.I am pretty much pleased with your good work. You put really very helpful information. Keep it up. Keep blogging. Looking to reading your next post..

    Best ISTQB Certification Training in Chennai | No.1 ISTQB Certification Training Center in Chennai | ISTQB Certification Exam Center in Velachery | ISTQB Certification Training in Saidapet

    ReplyDelete
  138. This is a great inspiring article.I am pretty much pleased with your good work. You put really very helpful information. Keep it up. Keep blogging. Looking to reading your next post..

    Best ISTQB Certification Training in Chennai | No.1 ISTQB Certification Training Center in Chennai | ISTQB Certification Exam Center in Velachery | ISTQB Certification Training in Saidapet

    ReplyDelete
  139. Thank you so much for posting this. I really appreciate your work. Keep it up. Great work! I am really interested to continue reading your blog. You have shared valid info. Waiting for more updates from you.
    AWS Certification Training in Chennai | Best AWS Training Institute in Chennai | No.1 AWS Certification Training in Nanganallur | AWS Training in Velachery

    ReplyDelete
  140. Nice and good blog. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating...
    Best Web Technologies Course Training Institute in kanchipuram|

    ReplyDelete
  141. Good article! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…
    Python Certification Training in Chennai | Python Training Institute in Velachery | Python Certification Exams in Chennai | Python Exam Center in Chennai

    ReplyDelete
  142. his blog is really useful and it is very interesting thanks for sharing, it is really good and exclusive.
    salesforce Training in Bangalore
    uipath Training in Bangalore
    blueprism Training in Bangalore

    ReplyDelete
  143. The information you have here is really useful to make my knowledge good. It is truly supportive for us and I have accumulated some essential data from this blog.
    Best JAVA and J2EE Course Training Institute in kanchipuram|

    ReplyDelete
  144. It is awesome and wonderful to visit your site.Thanks for sharing your ideas and views... keep rocks and updating........
    Tally ERP9 Training Institute in Chennai | Tally Training Center in Velachery | Tally Training Center in Taramani

    ReplyDelete
  145. It is awesome and wonderful to visit your site.Thanks for sharing your ideas and views... keep rocks and updating........
    Tally ERP9 Training Institute in Chennai | Tally Training Center in Velachery | Tally Training Center in Taramani

    ReplyDelete
  146. Wow...What an excellent informative blog, really helpful. Thank you so much for sharing such a wonderful post with us.keep updating..
    AWS Certifications in Chennai | AWS Exam Centers in Chennai | AWS Certification Exams in Velachery | AWS Exams in Velachery | AWS Online Exam Center in Velachery

    ReplyDelete
  147. It is really very awesome and wonderful to visit your site.Thanks for sharing your informative blog with us.keep updating such a wonderful post..
    MicroSoft Azure Certification in Chennai | Azure Exam Centers in Velachery | Azure Exam Centers in Madipakkam

    ReplyDelete
  148. Your Blog is really amazing with useful and helpful content for us.Thanks for sharing.keep updating more information.
    Embedded System Training Institute in Chennai | Embedded Training in Velachery | Embedded System Training in Guindy

    ReplyDelete
  149. Impressive blog with lovely information. really very useful article for us thanks for sharing such a wonderful blog...
    Java Training institute in Chennai | Java Certification Training Center in Velachery | Java Training in Pallikaranai

    ReplyDelete
  150. Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
    Linux Training Institute in Chennai | Linux Certification Training in Velachery

    ReplyDelete
  151. Excellent Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
    Java Training Institute in Chennai | Java Certification Training in Velachery

    ReplyDelete
  152. These provided information was really so nice, thanks for giving that post and the more skills to develop after refer that post....
    No:1 Tally Training Academy in Kanchipuram

    ReplyDelete
  153. Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating......
    No:1 Graphic Designing Training Academy in Kanchipuram

    ReplyDelete