answersLogoWhite

0

Sharepoint

Sharepoint is a collection of products used to host customizable websites that allow for content management and collaboration using shared workspaces, dashboards, workflows, versioning, archiving etc. These portals can be exposed as intranet, extranet or internet sites. One can manage tasks, projects, an entire team, departments etc. with the help of various features provided by this technology. Post all your Sharepoint related queries to this category.

465 Questions

Where can i find microsoft sharepoint certification online?

User Avatar

Asked by Wiki User

Microsoft SharePoint Certification is a good step forward to progress in your professional future. Here is the Microsoft website for more information about certification: http://www.microsoft.com/learning/en/us/certification/cert-sharepoint-server.aspx

What is a prompt?

User Avatar

Asked by Wiki User

on time ; done without delay

What are some of the benefits of hosted share point?

User Avatar

Asked by Wiki User

Hosted share point has several features that are beneficial to the communications of a company. Windows share point can be used to create a portal of communications for any size company from a large corporation to a small "mom and pop" operation. A company using windows share point can expect increased productivity, greater efficiency, to save money, to maintain security, and to customize the program to fit their specific needs.

Suppose you want to receive automatic email notifications only when users remove files from a library on a SharePoint site How do you do this?

User Avatar

Asked by Wiki User

In a Sharepoint, one can register for alerts on the entire library.

  1. Browse to the library.
  2. Click Actions > Alert Me.
  3. Choose 'change type' as 'Items are deleted'.
  4. Keep the other sections with default values. Click OK.

This will allow you t receive alerts upon file deletion form the Sharepoint library. If you wish to retain files and create a hold on them, the best way to manage is using a Records Centre site.

What is sharepoint developer training?

User Avatar

Asked by Wiki User

Hi All,

The SharePoint Developer training program ensures your mastery of enterprise content management, BI solutions, the architecture of service applications, carrying out governance plans, and other skills connected to the SharePoint environment through the exploration of real-world projects.

SharePoint is a web-based document management and collaboration platform that enables users to store and share data. It is a simple software tool for developing solutions to match your business needs.

To further know about this software tool, one can visit SharePoint Online Training.

For More Information, Contact at - +91-9711526942

How do you sharepoint?

User Avatar

Asked by Wiki User

You can follow technet articles for installation procedure. Please check related links.

Why would you create a sharepoint document workspace?

User Avatar

Asked by Wiki User

to manage a set of documents using an office application.

A Document workspace allows to colloborate on documents with other team members. This helps maintain a single copy of the document being worked upon and avoids conflicts. Every person added in the To, Cc field of the outlook message automaticlaly becomes the member of the workspace used for working on the document.

The workspace provides tools to provide up-to-date status on the document, create tasks for it, add relavant links for it. One can easily track changes and maintain versions.

What is meant by aggregation according to dbms?

User Avatar

Asked by Wiki User

Aggregation is an important concept in database design where composite objects can be modelled during the design of database applications. Therefore, preserving the aggregation concept in database implementation is essential. In this paper, we propose models for implementation of aggregation in an Object-Relational Database Management System (ORDBMS) through the use of index clusters and nested tables. ORDBMS is a commercial Relational Database Management Systems (RDBMS), like Oracle, which support some object-oriented concepts. We will also show how queries can be performed on index clusters and nested tables.

What are some great reasons for paying for sharepoint server?

User Avatar

Asked by Wiki User

Sharepoint (specifically MOSS) provides a rich user interface and a seamless consistent user experience. It integrates tighly with Microsoft Office 2007, client applications, emails, browsers etc.One can specify security settings, apply policies for record retention, archive documents using the Portal features. It allows for content management using workflows, versionining etc.

Sharepoint allows the implmentation of processes across disparate systems.

For a detailed discussion on this, please refer to the related links section.

IPC 420 is bailable or non bailable?

User Avatar

Asked by Wiki User

one person open a fake account with his peon and my name. he is deposit my saving in a fake account and withdraw the all my savings from fake account.

Is visual basic a scripted language?

User Avatar

Asked by Wiki User

VBSCRIPT FILES: (.vbs)

No, VBScript is an 'interpreted' language; where the code is both read/interpreted and translated into machine code line by line; this is a rather 'slow' method of doing things, though, when compared with using a 'compiled' language, instead.

A compiled language, on the other hand; runs code much faster; because it translates the whole entire program into machine code *before* running it. Compiled languages are used to create stand alone executable (.exe) files with.

VBScript does NOT create stand alone executable (.exe) files; instead, VBScript creates (.vbs) files; which rely on having an interpreter program to work.

====

CONCLUSION

As you can see from my short descriptions above...which are by no means fully exhaustive; VBScript, is a rich, powerful, and, extremely diverse form of programming technology; which in my own humble opinion, is very well worth learning; as it gives you lots of control covering many different areas; and, especially so, if you are interested in working with Microsoft Windows based technologies.

What is a visualisation diagram?

User Avatar

Asked by Wiki User

It is a type of flow chart

If you have accessed site settings for creating a new site search scope and have already specified a title for the new search scope What else can you choose to specify for the new search scope?

User Avatar

Asked by Wiki User

  • A target page that will display the results of searches that use the scope
  • Whether the new scope must be available for performing advanced searches
  • Whether the new scope must display as an option on the dropdown list for performing ordinary searches

Where can I get Sharepoint web hosting?

User Avatar

Asked by Wiki User

Numerous companies provide SharePoint web hosting. FPWeb.net, 1and1.com, and sherweb.com are three popular choices.

Try webhosting4life.com. They seem to be a good provider.

There are numerous providers of SharePoint web hosting. Do a bit of research on the web to see which will fit your needs best.

You want to be able to use outlook to add and remove appointments from a sharepoint calendar what is the sequence of steps for doing this?

User Avatar

Asked by Wiki User

view the calendar in sharepoint connect to outlook and approve the security confirmation then approve the connection

How do you write a program to find the kinetic energy in C?

User Avatar

Asked by Wiki User

The equation to find kinetic energy is based on knowing the mass and velocity of the object in question. Specifically, the equation is as follows:

KE = ½ mv2

In C, this equation can be specified as:

v*v*m/2

...since it's half of the mass multiplied by the square of the velocity.

If you haven't written a C program before, see the related links for a solid C tutorial, or try a Web search for c tutorial. Also included in the related links are pages about kinetic energy formulae.

Draw a program flowchart to find the least number in a list of 100 numbers?

User Avatar

Asked by Wiki User

It's a bit difficult to show a flowchart using nothing but words, but here goes:

start

let list[] be 100 random values

let best be value of list[0]

let index be 1

repeat

is value of list[index] less than best?

YES: let best be value of list[index] {continue}

NO: {continue}

increment index

is index less than 100?

YES: {go to repeat}

NO: {continue}

print value of best

end

Previous answer:

start test number =100 count = count +1 list number =< test number if true testnumber = list number count = 100 goto end else start end

The previous answer assumes 100 to be largest number in the list. What happens when all of the numbers in the list happen to be greater than 100? Also, previous answer exits the loop prematurely as soon as any number equal or smaller than 100 is located. To locate the smallest number in a list, the entire list must be compared with the current best, which is initially taken to be the first number in the list.

What is field control sharepoint?

User Avatar

Asked by Wiki User

SharePoint Server can contain field controls. Field controls are controls that everyone can create.

Is share point one word or two?

User Avatar

Asked by Wiki User

The name of the program by Microsoft is written as one word, but has a capital P in the middle of it, so it is SharePoint.