Posts

Showing posts from March, 2015

Paradise - Secunderabad

Image
Paradise Circle, Secunderabad The Place Welcome to the home of authentic Hyderabadi cuisine, a landmark that lent its name to the neighbourhood. This is where the Paradise saga began in 1953. A favourite with celebrities and common folk alike, our flagship Restaurant is arguably the largest dine-in eatery in the country. The Ground Floor houses the Paradise Café, Bakery and Takeaway and the other floors, the grand restaurants including the Open Air Garden Restaurant. Guests throng the Restaurant to savour the finest Hyderabadi cuisine with friends and families keeping the buzz alive throughout the day. Exuding history in every corner, the place invokes special memories for innumerable guests. Dine in at our Secunderabad Restaurant and enjoy a rendezvous with history. Every day, people from all walks of life come to Paradise to enjoy good food, great service and happy times. With a unique blend of tradition and innovation, our Chefs bring the exquisite culinary marvels from t...

Infosys Recruitment Event for JKC 2015 Pass outs - Andhra Pradesh

Infosys Recruitment Event for JKC 2015 Pass outs - Andhra Pradesh Eligibility Criteria considered: B. Tech all disciplines and MCA For B Techs: 70% in class 10th, 70% in Intermediate / Diploma and 70% in B. Tech For MCAs: 70% in class 10th, 70% in Intermediate / Diploma and 70% in Degree and 70% in MCA No active backlogs are allowed NOTE: The Students Whose status is either 'In Process' or 'To be tested' can participate in the drive. Recruitment Process: We have uploaded your details into Infosys Application portal & you will receive a user name & password from Infosys. You Need to login & fill the application form correctly then you will see the message that 'Your application was sent'. Please follow the link given below for Step-By- Step process of Application filling. Untill unless your application was submitted correctly and you have your application printout with you you are not eligible to go through the online test. Click here for list of coll...

Step-by-step: Integrating SalesForce.com with on-premises databases and applications

Image
If you're considering or currently administering a SalesForce.com account, this article may help you explore how to integrate your CRM data between SalesForce.com and in-house databases, flat files, and legacy applications. Here's a deep look at how to get the job done without having to study SalesForce.com APIs and writing, debugging, and maintaining custom code. Five essential steps 1. Explore your integration goals Before any data migration starts, you should clarify the goals of the on-coming SalesForce.com integration. You need to know exactly what data should be extracted and what data tables/fields should be considered as targets. Also, ask yourself, "Do I need to integrate SalesForce.com with one single database or multiple data sources? Is it enough to perform a one-time migration, or do I need an ongoing synchronization? Do I need to have SalesForce.com data backed up? Do I have enough experience to do manual coding, or would the use of visual data integration to...

How to disable the command buttons and Grey out the total vf page on any action?

Usually we multiple records creates whenever multiple click on save button on custom save button on VF page. So to overcome this issue we can hide the all buttons once user click on buttons. VF Page: <apex:commandButton action=”{!doSave}” id=”saveButton ” value=”save” onclick=”disableAllButtons()”/> <apex:commandButton action=”{!doCancel}” id=”cancelButton” value=”cancel” onclick=” disableAllButtons()”/> <Script> var j$ = jQuery.noConflict(); function disableAllButtons(){ j$(“[id$= saveButton],[id$= cancelButton]”).hide(); } function showButtons(){ j$(“[id$= cancelButton],[id$= saveButton]”).show(); } </Script> showButtons function is to show the button once the action. If we can use the same code for the input fields as well which have the action function. So that we can restrict the user to change the field and click the buttons immediately. Some times we have to restrict the user to modify the fields on that page after click on button or change on any fields ...