Tuesday

FNDLOAD

Data Synchronization: Data Synchronization is a process in which some setup data would be synchronized, and this would be more important when you are working in oracle application development/implementation project. The equally important that AOL data Migration takes place necessary to synchronize the data across databases instance during
  • Installations (New desc. flex field creations etc)
  • Upgrades (Apps upgrade etc)
  • Maintenance (Value set changes etc)

FNDLOAD is one and only oracle solution. It can be defined as a concurrent program that can move Oracle Applications data between database and text file representations. Or this can be defined as FNDLOAD can download data from an application entity into an editable text file, which can be uploaded to another database.

Working of FNDLOAD: Conversion between database format and text file format is specified by a configuration file. Oracle does provide configuation file and it is important to just pass the configuration file name and then just call the loader and leave everything .

These are the extensive list which can be done through FNDLOAD

  • Concurrent Programs, Executables
  • Request Groups, Request Sets
  • Profile Options
  • Key and Descriptive Flexfields
  • Menus and Responsibilities
  • Forms and Form Functions
  • Attachments
  • Messages
  • Value Sets and Values
  • Lookup Types
  • User Responsibilities
  • Printer Definitions
  • FND Dictionary
  • Help Configuration
  • Document Sequences
  • Concurrent Manager Schedules

Advantages using FNDLOAD are :

  • Because downloaded data is stored in a text file, version administration is possible
  • No learning curve.
  • Fully supported and recommended by Oracle
  • Capture the migrations in a file and use it during installations, clones etc. to migrate in batch
  • Pin-point when something happened and where (database) easily
  • Your AOL data migration process is now simplified and streamlined.

Disadvantages:

  • Applications patching mechanisms use FNDLOAD heavily – possibility of negative impact is not zero
  • UPLOAD_MODE=REPLACE only for menus
  • No validation against migrating database/instance sensitive data

Syntax : To use FNDLOAD, the following syntax is needed.
FNDLOAD apps/appspwd 0 Y mode configfile datafile entity [parameter1…..]

  • The mode is either DOWNLOAD or UPLOAD.
  • The configfile is the file that Fndload needs to download on upload data.
  • The data file is the output file, in which the downloaded data is written
  • The entity is the entity you want to download,

Modes of Operation:Two modes .. Upload and Download…
1. Example of download:

FNDLOADapps/pwd 0 Y DOWNLOAD ${FND_TOP}/patch/115/import/afcpprog.lct myfile.ldt \ PROGRAM CONCURRENT_PROGRAM_NAME= concurrent_program_short_name> APPLICATION_SHORT_NAME=

2. Example of Upload

FNDLOAD apps/pwd 0 Y UPLOAD ${FND_TOP}/patch/115/import/afcpprog.lct myfile.ldt - CUSTOM_MODE=FORCE undocumented parameter

FNDLOAD Load Options:

  1. Application level OR single entity level download: Download all the profile options of Inventory or just the INV: Default Primary UOM
  2. Entire OR Partial upload of a data file: Upload the entire myfile.ldt or just a single enity indicated by - and mode UPLOAD or UPLOAD_PARTIAL
    Entity name required for UPLOAD_PARTIAL mode
  3. Custom mode force update : To override Oracle’s upload algorithm and update the custom AOL data regardless, use CUSTOM_MODE= FORCE
    UPLOAD_MODE= REPLACE (only for menus)
  4. Support for NLS uploads : NLS data uploads for translated columns are supported, use UPLOAD_MODE= NLS

Config File Location: By default Oracle delivers most of configuration files you can use to download certain entities.

1. Configuration files with extension .lct
On Unix - all the configuration files are in $FND_TOP/patch/115/import directory
On Unix – Oracle also places the original configuration files in $FND_TOP/admin/import directory
2. Data files with extension .ldt

  • The config files (.lct) are delivered and maintained by Oracle.
  • It has entity definitions, parent-child relationships and user input parameters identified by :NAME
  • Downloading a parent automatically downloads all children - e.g. Concurrent Program download
  • The data files (.ldt) have both entity definition and the data
  • It also shows the version and the location of the config file (.lct) that was used
  • Without the config file, data file is useless
  • Without the data file, config file is meaningless
  • Key files: .lct and .ldt
  • You must run the FNDLOAD as apps user not as applsys or any other, otherwise you will receive Ora-6550
  • Both are easily readable, editable and portable
  • DO NOT MODIFY Oracle’s .lct files
  • Use your favorite editor (I would suggest Textpad or Editplus) to manipulate only the .ldt files but be cautious about data type, length, delimiter placements etc.
  • Use the log file outputs or .ldt file contents creatively for quick file comparisons and answer questions faster (Why can’t I access that? What is that profile option name, value and level? What is the value set used for that DFF segment attribute10 etc.)
  • Partial string searches (which value set has Priority “something” in its where clause? etc)

Sample Script Code:

1 - Printer Styles
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afcppstl.lct file_name.ldt STYLE PRINTER_STYLE_NAME=”printer style name”

2 - Lookups
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/aflvmlu.lct file_name.ldt FND_LOOKUP_TYPE APPLICATION_SHORT_NAME=”prod” LOOKUP_TYPE=”lookup name”

3 - Descriptive Flexfield with all of specific Contexts
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt DESC_FLEX P_LEVEL=?COL_ALL:REF_ALL:CTX_ONE:SEG_ALL? APPLICATION_SHORT_NAME=”prod” DESCRIPTIVE_FLEXFIELD_NAME=”desc flex name” P_CONTEXT_CODE=”context name”

4 - Key Flexfield Structures
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt KEY_FLEX P_LEVEL=?COL_ALL:FQL_ALL:SQL_ALL:STR_ONE:WFP_ALL:SHA_ALL:CVR_ALL:SEG_ALL? APPLICATION_SHORT_NAME=”prod” ID_FLEX_CODE=”key flex code” P_STRUCTURE_CODE=”structure name”

5 - Concurrent Programs
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct file_name.ldt PROGRAM APPLICATION_SHORT_NAME=”prod” CONCURRENT_PROGRAM_NAME=”concurrent name”

6 - Value Sets
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt VALUE_SET FLEX_VALUE_SET_NAME=”value set name”

7 - Value Sets with values
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt VALUE_SET_VALUE FLEX_VALUE_SET_NAME=”value set name”

8 - Profile Options
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afscprof.lct file_name.ldt PROFILE PROFILE_NAME=”profile option” APPLICATION_SHORT_NAME=”prod”

9 - Requset Group
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct file_name.ldt REQUEST_GROUP REQUEST_GROUP_NAME=”request group” APPLICATION_SHORT_NAME=”prod”

10 - Request Sets
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct file_name.ldt REQ_SET APPLICATION_SHORT_NAME=”prod” REQUEST_SET_NAME=”request set”

11 - Responsibilities
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct file_name.ldt FND_RESPONSIBILITY RESP_KEY=”responsibility

12 - Menus
FNDLOAD apps/apps@seed115 O Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct file_name.ldt MENU MENU_NAME=”menu_name”

13 – Forms/Functions
FNDLOAD apps/apps@seed115 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct file_name.ldt FND_FORM_CUSTOM_RULES The Upload syntax for all styles: FNDLOAD apps/apps@seed115 0 Y UPLOAD $FND_TOP/patch/115/import/affrmcus.lct file_name.ldt

14. User/Responsibilities
FNDLOAD apps/apps@seed115 0 Y DOWNLOAD @FND:patch/115/import/afscursp.lct file_name.ldt FND_USER Then UPLOAD FNDLOAD apps/apps@seed115 0 Y UPLOAD [UPLOAD_PARTIAL] @FND:patch/115/import/afscursp.lct file_name.ldt FND_USER []

160 comments:

  1. I tried copying request set using FNDLOAD but it is unable to display the .ldt files in the directory. The command used for this is
    FNDLOAD apps/apps DOWNLOAD 0 Y C:/oracle/vis3appl/fnd/11.5.0/patch/115/import/afcprset.lct MSREQSINGLESTAGESINGLECP.ldt REQ_SET APPLICATION_SHORT_NAME="SQLAP" REQUEST_SET_NAME="MSREQSINGLESTAGESINGLECP"


    The output in log file is
    +---------------------------------------------------------------------------+
    Application Object Library: Version : 11.5.0 - Development

    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

    module:
    +---------------------------------------------------------------------------+

    Current system time is 08-OCT-2008 12:35:37

    +---------------------------------------------------------------------------+


    +---------------------------------------------------------------------------+
    Concurrent request completed successfully
    Current system time is 08-OCT-2008 12:35:37

    +---------------------------------------------------------------------------+



    Can you please suggest for the solution.

    ReplyDelete
  2. Look at FNDLOAD automation tool called MigrationLogiK. It can be found at http://migrationlogik.com Video presentation is also available. No need to roam internet looking for the right syntax. Windows GUI - effective and intuitive.

    ReplyDelete
  3. ptctb qylqz モンクレ レディース モンクレール 新作 moncler wiki lbdwo rhvejv Blogger: Oracle Financials - Post a Comment rpfalwh ダウンコート モンクレール モンクレール モンクレール新作ダウン npmopyz msdkf モンクレール moncler モンクレール ダウン アウトレット モンクレール wzahiyzc bottes ugg fabriqu�es chine ugg sarenza http://www.bottes-ugg-bottes.com/ dzxcnxkq

    ReplyDelete
  4. No matter if some one searches for his vital thing, so he/she needs
    to be available that in detail, thus that thing is maintained over here.
    Check out my site cigarettes online

    ReplyDelete
  5. Tremendous things here. I'm very satisfied to see your post. Thank you so much and I'm taking
    a look ahead to contact you. Will you kindly drop me a e-mail?
    Here is my blog post :: Work from home

    ReplyDelete
  6. d7c51kk9

    vap17ufn

    f39s020t9d

    b957l12p

    m8jrtvqr

    ReplyDelete
  7. Any thoughts on what might be causing this would be greatly appriciated, as well as any thoughts on how to figure out what this is would be great too.. [url=http://www.mulberryhandbagssale.co.uk]Mulberry outlet shop[/url] all i can think of right now is that i really have to get the fuck out of this fucking country.. [url=http://www.goosecoatsale.ca]canada goose women parka[/url] Kkuqovtqa
    [url=http://www.pandorajewelryvip.co.uk]cheap pandora[/url] Ynqprioid [url=http://www.officialcanadagooseparkae.com]canada goose[/url] qxyjtebqk

    ReplyDelete
  8. I am suгe this ρіece of writing has tοucheԁ all
    the internet рeoρle, its rеally really goοd article
    on builԁing up neω web site.

    Also visit my blog - investire 3000 euro
    My blog ; zulutrade forum

    ReplyDelete
  9. That is a gooԁ tip espеciallу to thоse neω to
    the blogosphеre. Short but very preсisе information… Тhank уou for shaгіng thiѕ one.
    A must геad post!

    Here іs my ѕitе ... pikavippi
    My webpage > pikavippi

    ReplyDelete
  10. Hi thеre, You havе done an іncreԁible job.
    I'll definitely digg it and personally recommend to my friends. I am confident they'll be benеfited frοm
    this site.
    Here is my page : unsecured loans

    ReplyDelete
  11. Hі, I log on to уour blog lіke еveгy wеek.
    Yοur stогу-telling stуle iѕ aωeѕоme, kеep іt up!
    my page > loans for bad credit

    ReplyDelete
  12. I loved as much as you'll receive carried out right here. The sketch is tasteful, your authored subject matter stylish. nonetheless, you command get bought an impatience over that you wish be delivering the following. unwell unquestionably come more formerly again since exactly the same nearly very often inside case you shield this hike.
    Also visit my web blog ; how to get rid of acne quickly

    ReplyDelete
  13. No matter if some one searches for his required thing, so he/she wishes to be available that in detail, so that thing is maintained over here.


    Here is my blog post ... odb
    My page :: http://www.strictlyweather.com

    ReplyDelete
  14. Amazing! Its genuinely remarkable article, I have got much clear
    idea regarding from this post.

    my webpage :: ucsd medical center billing

    ReplyDelete
  15. When I originally commented I clicked the "Notify me when new comments are added"
    checkbox and now each time a comment is added I get several emails with the same comment.
    Is there any way you can remove people from that service?

    Many thanks!

    Feel free to surf to my blog :: daily news bowling green ky
    Also see my web site - http://answers-tips.blogspot.fr/2010/06/how-to-re-enable-task-manager-in.html

    ReplyDelete
  16. What a information of un-ambiguіtу and preѕerveness of
    valuable experienсe cοnceгning unρredіctеd emotions.


    Hеre іs my blog post: Eternity rings

    ReplyDelete
  17. I dοn't even know how I ended up here, but I thought this post was great. I do not know who you are but certainly you're goіng to а famous blogger if you arе nοt аlгeady
    ;) Cheeгѕ!

    Also vіsit my web page how to lose weight

    ReplyDelete
  18. Magnificent goods from you, man. I have take into accout your stuff prior to and you are just
    extremely excellent. I actually like what you've obtained right here, certainly like what you're saying and the way by which you are saying it.

    You're making it enjoyable and you continue to take care of to stay it wise. I cant wait to learn much more from you. That is actually a wonderful site.

    Here is my web page; get followers
    my web page: get followers

    ReplyDelete
  19. Εxсellеnt, what a wеbpаge it is!
    Thіs blog presents useful infoгmаtіon
    to uѕ, keep it up.

    my blog - payday loan
    Also see my webpage: payday loan

    ReplyDelete
  20. Hеllo, aftег reaԁing thiѕ rеmаrκablе ріece of writіng i am
    too hаppу to share my knowledge here with colleagueѕ.


    Viѕіt my pаge: raspberry ketone

    ReplyDelete
  21. Whoa! This blog looks just like my old one! It's on a completely different subject but it has pretty much the same page layout and design. Superb choice of colors!

    My weblog; Raspberry ketone diet

    ReplyDelete
  22. wteswh03

    st0bqjq9

    f54yewr4t536

    olae4nz8

    bi19epqx

    ReplyDelete
  23. It's actually a cool and helpful piece of info. I am happy that you shared this helpful information with us. Please keep us up to date like this. Thank you for sharing.

    Also visit my web page :: vistaprint coupons

    ReplyDelete
  24. bookmarked!!, I like yοur blog!

    Сheck out my ωebpage - long term loans for bad credit no guarantor no fee

    ReplyDelete
  25. Fantastic beat ! I wish to apprentice while you amend your site, how can
    i subscribe for a blog site? The account helped me a acceptable deal.
    I had been a little bit acquainted of this your broadcast provided bright clear concept

    Here is my webpage :: is the tao of badass real

    ReplyDelete
  26. My spouse and I absolutely love your blog and find most of
    your post's to be just what I'm looking for. can you offer guest writers to write content available for you?
    I wouldn't mind producing a post or elaborating on most of the subjects you write with regards to here. Again, awesome web log!

    Also visit my weblog; Order Vydox

    ReplyDelete
  27. Τhanks for every othеr Magnifіcent рost.

    The ρlаcе elѕe сould anyone get
    that tyρе of information in such an ideal manneг of wrіting?

    ӏ have а prеsentаtion
    next ωeek, аnd I'm on the search for such information.

    my site :: fast payday loans today

    ReplyDelete
  28. Good way of describing, and fastidious piece
    of writing to take facts about my presentation topic,
    which i am going to convey in university.

    My webpage ... Tattoo Removal Cream Reviews

    ReplyDelete
  29. Touche. Solid arguments. Keep up the good spirit.


    Here is my web-site :: Saffron Extracts

    ReplyDelete
  30. And that's the only reason we're in the gym, right. Going from skinny to muscle depends on
    how you approach and execute your workouts as well as how you manage your
    nutrition and rest. How to build muscle fast for men is through training in the gym or field.


    Also visit my blog post - Power Pump XL Muscle Building

    ReplyDelete
  31. First off I would like to say wonderful blog!
    I had a quick question that I'd like to ask if you don't mind.
    I was curious to find out how you center yourself and clear
    your head prior to writing. I've had a hard time clearing my thoughts in getting my thoughts out. I truly do take pleasure in writing but it just seems like the first 10 to 15 minutes are wasted just trying to figure out how to begin. Any suggestions or tips? Kudos!

    Also visit my blog permanent hair straightening

    ReplyDelete
  32. Quality articles or reviews is the crucial to
    attract the users to pay a visit the site, that's what this web page is providing.

    Here is my web page - diarrhea remedies

    ReplyDelete
  33. Thank you a lot for sharing this with all folks you really realize what
    you're talking approximately! Bookmarked. Please also seek advice from my web site =). We can have a hyperlink change contract among us

    Also visit my web site :: diarrhea Remedies

    ReplyDelete
  34. Ooh question tіme, do I have the oрpοгtunіtу to aѕk
    anythіng?

    Ηere is my webpagе - cheap long term loans

    ReplyDelete
  35. Simply want to say your article is as astounding.
    The clarity in your post is simply nice and that i can think you are a professional in this subject.

    Well together with your permission allow me to snatch your RSS feed to
    keep up to date with impending post. Thank you a million and please carry on the rewarding work.


    my blog post - permanent hair straightening

    ReplyDelete
  36. I am wonderіng what age wе ѕtart tо
    become moгe grown up and ԁiѕrеgаrd аll this
    nonѕense.

    Lоok аt my blog :: small loans fast cash

    ReplyDelete
  37. This is a topic that is close to my heart... Take care!
    Exactly where are your contact details though?



    Check out my web-site: pharmacy technician course

    ReplyDelete
  38. You forgot to give a credit to the note 735338.1 of Metalink. This is just a copy paste of this note.

    ReplyDelete
  39. Cloud Computing Training

    The information you posted here is useful to make my career better keep updates...If anyone want to get Cloud Computing Training in Chennai, Please visit FITA academy located at Chennai Velachery which offer best Cloud Computing Course in Chennai.

    Cloud Computing Training Centers in Chennai

    Cloud Computing Training Chennai

    ReplyDelete
  40. This Information very helpful for the beginners.In this each step have a wonderful explaination.I would study and known about the application.thanks for giving wonderful information.
    Web designing Training in chennai | Web designing Training chennai | Web designing course in chennai | Web designing course chennai

    ReplyDelete
  41. Thanks for your post; selenium is most trusted automation tool to validate web application and browser. This tool provides precise and complete information about a software application or environment. Best Selenium training institute in Chennai

    ReplyDelete
  42. Thanks for this blog, I'am very much delighted to say that this blog has helped me a lot in gain some extra knowledge about software testing.
    Selenium training in Chennai

    ReplyDelete
  43. Testing is very important before launching a web application or a mobile application because it can detect the error at an early stage, and it reduces the work of the developer.
    manual testing training institute in chennai | mobile application training in chennai | FITA Academy Chennai

    ReplyDelete
  44. If you are willing to develop a website but you dont know web development or coding then relax wordpress CMS platform is just for you. Where you can create website all by yourself.
    wordpress training in chennai | Wordpress course in chennai

    ReplyDelete
  45. Selenium is a testing tool which is an open source which can work very well for the professionals and for testers. If a profesional is knowing manual testing then if he learn seenium then there are good chance for career growth.
    selenium training in chennai | selenium training institute in chennai | selenium course in chennai

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

    ReplyDelete



  47. What an awesome post, I just read it from start to end. Learned something new after a long time.



    Manual testing training in Chennai


    Selenium testing training in Chennai

    ReplyDelete
  48. Thank you for your post. This was really an appreciating one. You done a good job. Keep on blogging like this unique information with us.

    Seo Training in Chennai

    ReplyDelete

  49. Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care.As always, we appreciate you confidence and trust in us.

    Digital Marketing Company in Chennai

    ReplyDelete
  50. Good post. I learn something totally new and challenging on blogs I stumble upon on a daily basis. It will always be interesting to read articles from other authors and practice something from their websites...

    Back to original

    ReplyDelete
  51. I’ve been browsing on-line greater than three hours today, but I never discovered any attention-grabbing article like yours. It is beautiful worth sufficient for me. Personally, if all webmasters and bloggers made good content material as you did, the net will be a lot more helpful than ever before.

    Study Abroad Consultants in Chennai | Study in Germany Consultants in Chennai | Germany Education Consultants in Chennai

    ReplyDelete
  52. HI,
    Thanks for sharing the valuable information and good points were stated in stated in this article which I found as very informative and for the further visit
    Oracle Fusion HCM training in Hyderabad

    ReplyDelete
  53. Many thanks for sharing useful post here and like to forward with my friend who are providing Software Application Development Services and working with product development company. I am sure it will be helpful for them.

    ReplyDelete
  54. I really appreciate information shared above. It’s of great help. If someone want to learn Online (Virtual) instructor lead live training in Oracle Technical Financials, kindly contact us http://www.maxmunus.com/contact
    MaxMunus Offer World Class Virtual Instructor led training on Oracle Technical Financials. We have industry expert trainer. We provide Training Material and Software Support. MaxMunus has successfully conducted 100000+ trainings in India, USA, UK, Australlia, Switzerland, Qatar, Saudi Arabia, Bangladesh, Bahrain and UAE etc.
    For Demo Contact us.
    Nitesh Kumar
    MaxMunus
    E-mail: nitesh@maxmunus.com
    Skype id: nitesh_maxmunus
    Ph:(+91) 8553912023
    http://www.maxmunus.com/



    ReplyDelete
  55. HI,


    Thank you so much for posting this. I really appreciate your work. Keep it up. Great work!

    http://kosmiktechnologies.com/selenium/

    ReplyDelete
  56. Hi sir,

    Great post and very informative also.......thank you for sharing

    http://www.amazonwebservicesforum.com/

    ReplyDelete
  57. This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
    Digital Marketing Company in Chennai

    ReplyDelete
  58. This is a nice post explaining a lot about bowling. I really appreciate your efforts to do so. If you have more information about this topic plz reply me here in the comment. Thanks in advance. Bowling Alley

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

    ReplyDelete
  60. Your content is in the effective way.Appreciating the persistence you put into your blog and detailed information you provide.
    Best Java Training Institute Chennai

    Java Interview Questions and Answers

    ReplyDelete
  61. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
    google-cloud-platform-training-in-chennai

    ReplyDelete
  62. The information you have deliver here is really useful to make my knowledge good. Thanks for your heavenly post. It is truly supportive for us and I have accumulated some essential data from this blog.
    Online 3d printing
    3D printing in Coimbatore
    3D printing service in Coimbatore
    3D printing in Chennai

    ReplyDelete
  63. Write more; that’s all I have to say. It seems as though you relied on the video to make your point. You know what you’re talking about, why waste your intelligence on just posting videos to your blog when you could be giving us something enlightening to read?

    Devops Training in Chennai


    ReplyDelete
  64. I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well.Oracle Fusion Cloud Financials Training

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

    ReplyDelete
  66. Wonderful blog sir, thanks for sharing your valuable article. For more details please visit our website.
    Oracle Financials Training

    ReplyDelete
  67. You really did a great job. I found your blog very interesting and very informative. I think your blog is a great information source & I like your way of writing and explaining the topics. Keep it up. For more info visit our website.
    Oracle R12 Financials Training

    ReplyDelete
  68. Hi,Thanks for sharing this Information it was good to read this blog
    Oracle Financials Training in Al Barsha, Dubai

    ReplyDelete
  69. ● Thanks a lot very much for the high quality and results-oriented help. I won’t think twice to endorse your blog post to anybody who wants and needs support about this area
    digital marketing training in marathahalli

    digital marketing training in rajajinagar

    Digital Marketing Training in online


    full stack developer training in pune


    full stack developer training in annanagar

    .

    ReplyDelete
  70. It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an eBook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted.
    Digital Marketing Training in Chennai

    Digital Marketing Training in Bangalore
    Digital Marketing online training

    full stack developer training in pune

    full stack developer training in annanagar

    ReplyDelete
  71. Just stumbled across your blog and was instantly amazed with all the useful information that is on it. Great post, just what i was looking for and i am looking forward to reading your other posts soon!

    python training institute in chennai
    python training in chennai
    python training in chennai

    ReplyDelete
  72. Excellent blog, I wish to share your post with my folks circle. It’s really helped me a lot, so keep sharing post like this
    Selenium Training in Chennai | Selenium Training in Bangalore | Selenium Training in Pune

    ReplyDelete
  73. Wow, this blog is very nice I really like your blog and i am Impressed thank you very much for posting this blog.Please contact us for Oracle R12 Financials Training in Hyderabad details in our Erptree Training Institute

    ReplyDelete
  74. Resources like the one you mentioned here will be very useful to me ! I will post a link to this page on my blog. I am sure my visitors will find that very useful
    Blueprism training in Pune

    Blueprism online training

    Blue Prism Training in Pune

    ReplyDelete
  75. Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
    Data Science Training in Chennai
    Data science training in bangalore
    Data science online training
    Data science training in pune

    ReplyDelete
  76. You’ve written a really great article here. Your writing style makes this material easy to understand.. I agree with some of the many points you have made. Thank you for this is real thought-provoking content
    java training in chennai | java training in bangalore


    java training in tambaram | java training in velachery

    ReplyDelete
  77. A very nice guide. I will definitely follow these tips. Thank you for sharing such detailed article. I am learning a lot from you.
    angularjs Training in bangalore

    angularjs Training in bangalore

    angularjs Training in btm

    angularjs Training in electronic-city

    angularjs online Training

    ReplyDelete
  78. Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well as an aspiring blog writer
    safety course in chennai

    ReplyDelete
  79. If you happen to be interested, feel free to shoot me an e-mail. I look forward to hearing from you! Great blog by the way!
    safety course in chennai

    ReplyDelete
  80. I found your blog while searching for the updates, I am happy to be here. Very useful content and also easily understandable providing.. Believe me I did wrote an post about tutorials for beginners with reference of your blog. 
    best rpa training in bangalore
    rpa training in bangalore | rpa course in bangalore
    RPA training in bangalore
    rpa training in chennai
    rpa online training

    ReplyDelete
  81. I was curious if you ever considered changing the layout of your site? It’s very well written;
    iosh course in chennai

    ReplyDelete
  82. I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
    python Course in Pune
    python Course institute in Chennai
    python Training institute in Bangalore

    ReplyDelete
  83. I found your blog while searching for the updates, I am happy to be here. Very useful content and also easily understandable providing.. Believe me I did wrote an post about tutorials for beginners with reference of your blog. 
    AWS Training in Bangalore

    AWS Training in pune

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

    ReplyDelete
  85. I appreciate that you produced this wonderful article to help us get more knowledge about this topic. I know, it is not an easy task to write such a big article in one day, I've tried that and I've failed. But, here you are, trying the big task and finishing it off and getting good comments and ratings. That is one hell of a job done!
    Microsoft Azure online training
    Selenium online training
    Java online training
    Java Script online training
    Share Point online training

    ReplyDelete
  86. Nice blog thanks for sharing. The digital marketing company in Chennai providing a best digital marketing service in Chennai.

    ReplyDelete
  87. Thanks a lot very much for the high quality and results-oriented help. I won’t think twice to endorse your blog post to anybody who wants and needs support about this area.
    Data Science Training in Chennai
    Robotic Process Automation Training in Chennai
    Cloud Computing Training in Chennai
    Data Warehousing Training in Chennai
    Dev Ops Training in Chennai

    ReplyDelete
  88. Excellent article, nice info, must say thanks for the information you added to this post. I appreciate your post and looking forward for more.


    Data Science

    ReplyDelete
  89. I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you post.
    date analytics certification training courses
    data science courses training

    ReplyDelete
  90. Hey There. I found your blog using msn. This is a very well written article. I’ll be sure to bookmark it and come back to read more of your useful info. Thanks for the post. I’ll definitely return.
    big data course malaysia

    ReplyDelete
  91. Thank you for helping people get the information they need. Great stuff as usual. Keep up the great work!!!
    big data course malaysia

    ReplyDelete
  92. I really enjoy simply reading all of your weblogs. Simply wanted to inform you that you have people like me who appreciate your work. Definitely a great post. Hats off to you! The information that you have provided is very helpful.






    BIG DATA COURSE MALAYSIA

    ReplyDelete

  93. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work.Data Science Courses

    ReplyDelete
  94. It should be noted that whilst ordering papers for sale at paper writing service, you can get unkind attitude. In case you feel that the bureau is trying to cheat you, don't buy term paper from it.
    iot training in malaysia

    ReplyDelete
  95. Absolutely perfect presentation.We have added a new tip for you. Visit the site and seeClipping path service Thanks a lot for sharing. Keep blogging

    ReplyDelete
  96. Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well as an aspiring blog writer, but I’m still new to the whole thing. Do you have any recommendations for newbie blog writers? I’d appreciate it. i realy happy to read
    Ai & Artificial Intelligence Course in Chennai
    PHP Training in Chennai
    Ethical Hacking Course in Chennai Blue Prism Training in Chennai
    UiPath Training in Chennai

    ReplyDelete
  97. Thanks a lot for sharing such a good source with all, i appreciate your efforts taken for the same. I found this worth sharing and must share this with all.



    Dot Net Training in Chennai | Dot Net Training in anna nagar | Dot Net Training in omr | Dot Net Training in porur | Dot Net Training in tambaram | Dot Net Training in velachery











    ReplyDelete
  98. Super post!I am actually getting ready to across this information,i am very happy to this commands.Also great blog here with all of the valuable information you have.Well done,its a great knowledge.


    Java training in Chennai

    Java training in Bangalore

    Java training in Hyderabad

    Java Training in Coimbatore

    Java Online Training

    ReplyDelete
  99. I am impressed by the information that you have on this blog. It shows how well you understand this subject.I have to search sites with relevant information on given topic and provide them to teacher our opinion and the article.Great information!! Thanks for sharing nice blog.

    Data Science Training In Chennai

    Data Science Online Training In Chennai

    Data Science Training In Bangalore

    Data Science Training In Hyderabad

    Data Science Training In Coimbatore

    Data Science Training

    Data Science Online Training

    ReplyDelete
  100. Thanks for sharing this nice useful informative post to our knowledge.. oracle training in chennai

    ReplyDelete
  101. On the off chance that your searching for Online Illinois tag sticker restorations, at that point you have to need to go to the privileged place.
    https://360digitmg.com/course/project-management-professional-pmp

    ReplyDelete
  102. I think this is an extraordinary article. You make this information interesting and secures. You give perusers a lot to consider and I esteem such a forming.
    iot training in delhi

    ReplyDelete
  103. Hello there to everyone, here everybody is sharing such information, so it's fussy to see this webpage, and I used to visit this blog day by day
    what is hrdf

    ReplyDelete

  104. Nice work... Much obliged for sharing this stunning and educative blog entry! AI Course

    ReplyDelete
  105. Here at this site actually the particular material assortment with the goal that everyone can appreciate a great deal.
    360DigiTMG big data course in malaysia

    ReplyDelete


  106. Super site! I am Loving it!! Will restore again, Im taking your food moreover, Thanks.
    hrdf claimable

    ReplyDelete
  107. Точное гадание на будущее это шанс понять будущие действия всегда заманивал человека. Хиромантия позволяет угадать, что вас ожидает в ближайшее время. Всякий порывается подсмотреть собственное будущее и представляет определенные способы гадания максимально эффективными.

    ReplyDelete
  108. Extraordinary post. I simply found your blog and expected to express that I have genuinely refreshing scrutinizing your blog sections.Huge thankful for the significant data.
    Artificial intelligence course in malaysia

    ReplyDelete
  109. Цена кафеля опять же разнится. Керамогранит geotiles vintage mix изготавливают в огромном количестве, и всякая компания хочет выпустить собственный невообразимый вариант. Немыслимый ассортимент узоров и параметров.

    ReplyDelete

  110. Impressive. Your story always brings hope and new energy. Keep up the good work.

    Best Institutes For Digital Marketing in Hyderabad

    ReplyDelete
  111. I will really appreciate the writer's choice for choosing this excellent article appropriate to my matter.Here is deep description about the article matter which helped me more.
    data scientist training and placement

    ReplyDelete
  112. Really nice and interesting post. I was looking for this kind of information and enjoyed reading this one. Keep posting. Thanks for sharing.
    data scientist training and placement in hyderabad

    ReplyDelete
  113. Looking for the perfect blunt wrap for your next smoking session? Look no further than Dutch Masters! Order now from Tobacco Stock to experience the smooth, flavorful smoking experience that only Dutch Masters can provide.

    ReplyDelete
  114. "Upgrade your digital world with AM Computers LLC - Experience superior performance, shop now and Buy Laptop Online UAE!"

    ReplyDelete
  115. Find your perfect blend of Pipe Tobacco at Tobacco Stock - order now and enjoy the smooth, satisfying flavor in every puff

    ReplyDelete

  116. "Elevate your smoking experience to new heights with A2Z Tobacco's premium Loose Leaf Wraps - indulge in pure flavor and unrivaled quality."

    ReplyDelete
  117. "Unleash the perfect balance of flavor and satisfaction with Ohm Tobacco, expertly crafted by A2Z Tobacco to ignite your senses and elevate your smoking journey."

    ReplyDelete
  118. And remember, for advanced security solutions with cutting-edge Video Analytics, choose Invigilo AI for unmatched protection and peace of mind.

    ReplyDelete

  119. "Trust Taylor Made Solutions for unmatched fire protection. Discover our cutting-edge Fire Alarm System and safeguard your property with the utmost confidence."

    ReplyDelete
  120. I appreciate the effort you put into researching and citing credible sources. It adds credibility to your arguments. Fusion financial training in hyderabad

    ReplyDelete
  121. Thanks for sharing valuable information, keep us posted more Python Classes in Pune
    best python training in Pune

    ReplyDelete
  122. "Take your kratom experience to the max with Maxxout Kratom , available exclusively at Kratom Point Wholesale - your ultimate destination for premium botanicals!"

    ReplyDelete
  123. Thanks for sharing valuable information, keep us posted more Power bi Classes in Pune

    ReplyDelete
  124. "Experience the natural power of Kratom Capsules - Discover a new level of wellness with Kratom Point!"

    ReplyDelete
  125. Elevate your senses with the exceptional power of Buy Kratom Amazing Botanicals. Unveil nature's wonders at Kratom Point and experience botanical bliss like never before.

    ReplyDelete
  126. "Elevate your protection with Invigilo's advanced Security Surveillance – Guarding your world, always vigilant."




    ReplyDelete
  127. Thank you for sharing your knowledge. The blog was beneficial. Visit the website: CURTAIN WALLS in Fujairah

    ReplyDelete

  128. "Discover driving freedom with 1st Radar Detectors and the unparalleled precision of the Valentine Radar Detector – Your journey, your safety, our commitment."

    ReplyDelete
  129. Really nice and interesting post. I was looking for this kind of information and enjoyed reading this one. Keep posting. Thanks for sharing.

    Upgrade your hygiene game with Applied Physics USA – explore our state-of-the-art Disinfectant Foggers and Diffusers for a harmonious blend of cutting-edge technology and unmatched performance. Elevate your space with cleanliness today!

    ReplyDelete
  130. Transform your wellness journey with nature's buzz – Experience the pure power of vitality with Kratom Point Wholesale's premium Bumble bee Kratom Powder . Elevate your senses, embrace the essence of well-being!

    ReplyDelete
  131. Experience the magic of Applied Physics USA – ignite your events with an enchanting touch using our cutting-edge Mini Fog Machine, where science meets spectacle!

    ReplyDelete
  132. This blog serves as an indispensable resource for Fusion Financials Training and professionals, offering an exhaustive list of tasks achievable through FNDLOAD. The author adeptly navigates through the versatile capabilities of FNDLOAD, providing valuable insights for individuals seeking to optimize their Oracle configurations.

    ReplyDelete
  133. "Transform your experiments with the precision of Applied Physics USA's groundbreaking equipment enhanced by the power of Silica Powder – redefine what's possible today!"

    ReplyDelete
  134. "Experience the ultimate in style and confidence at The Head Games Salon – where every visit is a masterpiece in the making!"

    ReplyDelete
  135. "Discover the ultimate relaxation with Karatom Point – your trusted destination for premium products, including where to where to buy feel free tonic for a blissful experience!"

    ReplyDelete
  136. "Discover the bold flavors of Backwoods Cigars at A2Z Tobacco - ignite your taste adventure today!"

    ReplyDelete
  137. "Andtowing: Your go-to for reliable tow truck near me. Don't let roadside troubles derail your plans – contact Andtowing for swift assistance and get back on the road worry-free."

    ReplyDelete
  138. "Discover the unparalleled freshness of A2Z Tobacco's Loose Leafs collection - ignite your senses today!"

    ReplyDelete
  139. "Dive into the depths of relaxation with kratom kraken: Where quality meets adventure, just like the mythical Kratom Kraken."

    ReplyDelete
  140. "Wrap up your day with flavor-packed satisfaction – try our exclusive Runtz Wraps, only at A2Z Tobacco!"

    ReplyDelete