Skip to main content

Posts

Showing posts from June, 2012

How to Configure the ReportViewer in Sharepoint 2010

Follow The below Steps... 1. Navigate the c:\inetpub\wwwroot\VirtualDirectories\[Your port Number] 2. Make a backup copy of web.config 3. Open web.config in some text editor , may be notepad     Look for following tag , ensure enableSessionState="true"     <pages asynctimeout="7" enablesessionstate="true" enableviewstate="true" enableviewstatemac="true"        pageparserfiltertype="Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" validaterequest="false">  4. Look for <httpmodules> tag and add below statement as last child node ( if not there already ) <add name="Session" type="System.Web.SessionState.SessionStateModule"> 5. Look for this tag below and update version to 10.0.0.0  <add name="ReportViewerWebControl" verb="*" path="Rese...

JavaScript for Date and Time Formatting

JavaScript for Date and Time Formatting //function for the getting the formatted date and time  // current output June 26, 2012 4:04 PM function formattedUTCDateTime(d) {     // code for the year     var m_names = new Array("January", "February", "March",     "April", "May", "June", "July", "August", "September",     "October", "November", "December"); //    var d = new Date();     var curr_date = d.getUTCDate();     var sup = ""; else if ( curr_date  == 3 ||  curr_date  == 23) {          sup  = "rd";     }     if ( curr_date == 1 || curr_date == 21 || curr_date == 31) {         sup = "st";     }     else if ( curr_date == 2 || curr_date == 22) {         sup = "nd";     }         else {         sup = ...

Repeating Sections with People Picker in Infopath 2010

An InfoPtah 2010 form consist of a repeating section, In this section Three  People/Group picker controls exists. Evenry time I open this form in the web, I cannot seem to validate/resolve the users. A Script error is shows: Message: 'EntityEditor_UseContentEditableControl' is undefined. Apparently  this has someting to do with the fact that the controls are hidden by default. I am not sure but my collegue is using repeating tables and does not have the same errors, so perhaps  Resolve the issue. For me I just had to open the first section by default so that on loading the form, all the controls are visible. Go to: File->Form Options -> Advanced ->Edit Default Values check the box in front of the repeating section that holds the people picker.

Sharepoint 2010 Interview Questions

 Pennywise Solutions 1. what is masterpage ? use of materpage..? 2.  what is meant by sitetemplate ? how can u create a site template? 3. Wat is meant by work flow ? how can u create a workflow on lists and libraries 4. Wat is meant by webpart ? how can u deploy the webpart ? h’w many ways we deploy the webpart 5. did u use any contenteditor webpart in ur project..? 6. Wat is meant by features, uses of features ? did u create any features in ur project..? 7. did u create any event handlers ? on which events u rised those event handlers…? 8. Wat is sharepoint solution file..? 9. did u write any BDC in ur project..? 10. did u configure enterprise search crawl settings ? how ? 11. what is sharepoint object model ..? 12. diff betwen intranetsite extranet site and internet sites 13.  h’w can u create a cutsomtemplates..? 14. what is the use of infopath forms…? did u use any datasource in infopath forms..? 15. what...

Sharepoint 2010 Interview Questions

Intelli Group 1. How can u create a customwebparts through vs2005 ? tell me the stepwise 2 .Tell me abt contentEditor Webpart..? 3. Tell me the Base class Methods in developing a webpart..? 4. What is the use of create child controls()..? 5. How can we configure the Enterprise search ? tell me the steps..? 6. Did u use any Webusrcontrls in ur project..? can u tell me the differences between Webparts and webuserconrols…? 7. What is the use of ” Using” clause…? , 8. write the coding for creating a customlist say order list , that list should be populate with orders table ..? 9. How to Deploy the sharepoint designer workflows from dev server to production server? 10. difference between SPSite , SPWeb..? 11.  h’w can u create the Custom fields ..? 12. wat is the use of BDC..? DID u write any BDC code in ur project ../ 13. wat r the features..? did u create any features in ur project…? wat r the feature classes that u used 14. can u tell me the steps to de...

Sharepoint Interview Questions

Sonata   1.  Have u ever worked on Master page..? What is the use of master page..? Can u tell me , I want to put the Dropdown control in master page, and this dropdown control should populate the data from database..? 2. H’w can u create and deploy the workflows by using Visualstudio 2005, tell me the stepwise 3. Can u tell me how to create the HRLeaveapproval workflow by using SPDesinger..? 4. What is the use of infopathforms.? I have the List called ”Employees”,in that there is a Field called ” Department”, I want to Fill the Department names in the infopathform control ( eg: Take the Dropdown control , iwant to fill this Department names in Dropdowncontrol) 5. 10 users entering the data in infopath forms and submit the data, now I want to generate the reports for those 10 users, how can u do this ..? 6.  What is the use of BDc…? 7. How can u Configure the Enterprise Search ..? 8.  What are the Base class methods u used in ...

Sharepoint Interview Questions

Mahendra Satyam sharepoint Inteview Questions CTS Interview Questions YASH Technologies Pvt Ltd 1)How to identify the IIS Server Whethe it is Asp.net Page Or Sharepoint page at IIS ? 2)How to fetch the data from multiple lists ? 3)Asp.net Life cycle and Webpart Life Cycle? 4)Form Topology? 5)Throttling? and Load Balancing? 6)Difference between SSP and SSA? 7)Infopath Forms (Conditional Formating?) 8)Zones?and Explain about FBA? 9)How to give the access to External Users? 10)OOPS Concepts? 11)How to check the users or groups? 12)Crawl Logs and Rules? 13)Search Scopes? 14)What is the importance of Sync DB and Tags DB?While configure the User Profiles? 15)What are the config files? 16)Ghosting and Unghosting with example? 17)CLR? 18)GC? 19) Using Keyword? 20) How to deploy the Workflows using sharepoint designer 2007? 21)How to move the workflows from Testing server to Production server in Moss 2007? 22)How to move the content query webpart...

How to Configure the Master Data Services(MDS) to a workflow

Step 1: Install Master Data Services First, install Master Data Services. For more information, see the SQL Server 2008 Books Online topic “How to: Install Master Data Services” ( http://msdn.microsoft.com/en-us/library/ee633762(SQL.105).aspx ). This white paper uses C:\Program Files as the folder where Master Data Services is installed. Step 2: Install Visual Studio Install Visual Studio 2010 or later. You will use Visual Studio to create your workflow handler. You can install Visual Studio from: http://www.microsoft.com/visualstudio/en-us/products/2010/default.aspx Step 3: Optionally Install SharePoint If you use Master Data Services to start a SharePoint Workflow, Master Data Services requires a version of SharePoint to be on the server where Master Data Services is installed. This version of SharePoint can host the workflow, but it does not need to. If you plan to use a custom workflow instead of a SharePoint workflow, you do ...