|
|
Од страна на Udayakumar Ethirajulu , на 4 август, 2011
|
Регистрирај се денес!
Се претвори во SharePoint 2010 да ги автоматизира бизнис процесите & обезбеди consistencyin начинот на кој вашиот бизнис е воден.
|
|
Како технологија лидер, знаеш на предизвиците на имплементирање на деловните процеси во вашата организација. Обично, процесите не се интегрираат со начинот на кој луѓето всушност работат. За бизнис процес за да бидат ефективни, тоа мора да бидат интегрирани со секојдневните алатки и апликации кои се користат на работното место, така што таа ќе стане дел од секојдневната рутина. Во областа на електронските работното место, ова вклучува интеграција со e-mail, календари, задача листи, и соработка веб-сајтови.
Како што компаниите се обидуваат да се справат со овие предизвици, се повеќе и повеќе се вртат кон стабилна работното решение кое им овозможува раствор архитекти, дизајнери, и администраторите за подобрување на бизнис процеси: Microsoft SharePoint 2010.
Приклучи се Microsoft SharePoint МВП Удај Ethirajulu и ЦРС решенија во септември 8та, 2011 на 11:00AM EST за информативни веб семинар (webinar) како што се дискутира и покажува основното придобивките од користењето на работните процеси во SharePoint 2010 да се олесни бизнис процеси и се подобри соработката. Удај ќе ја нагласи бизнис вредност може да се добијат од 2010 и се концентрира на три области од интерес:
- Работното во SharePoint Designer
- Прилагодено workflows – Користејќи го Visual Studio
- Процесот на проток без SharePoint работното
Значи се регистрирате денес, бидејќи ова е еден случај да не сакате да се пропушти!

|
Од страна на Udayakumar Ethirajulu , на 14 јули, 2011
Овде е мојот претстојните webinar во SharePoint 2010 Business Intelligence.
|
Времето истекува! Регистрирај се денес!
Се сврти кон стабилна Business Intelligence решение да ги поттикне вашата организација
|
Како технологија лидер, знаеш во оваа предизвикувачка економска средина, getting access to the right information at the right time has become one of the biggest challenges for organizations. A key stakeholder wants a special report/dashboard. Analysis and interpretation of unstructured data is becoming more and more complex.
Како што компаниите се обидуваат да се справат со овие предизвици, more and more are turning towards a robust BI solution that empowers an organization’s decision makers, improves organizational effectiveness, and provides the backbone to truly enable IT efficiency: Microsoft SharePoint 2010.
Join Microsoft SharePoint MVP Udayakumar Ethirajulu on August 4th, 2011 at 11:00на EST for an informative web seminar (webinar) as he discusses and demonstrates the most exciting new capabilities of SharePoint 2010. Uday will highlight the business value you can get from the new features in 2010 concentrate on three areas of interest:
- Capabilities for Solution Architects and Developers
- Capabilities for Infrastructure Architects and IT Pros
- Capabilities for Users and the Enterprise as a whole
Значи се регистрирате денес, бидејќи ова е еден случај да не сакате да се пропушти!

|
Од страна на Udayakumar Ethirajulu , на 1 јули, 2011
Од страна на Udayakumar Ethirajulu , on June 6th, 2011
This is kind of common request from client to have kind of small delete button or image in every to delete.
I couldn’t find any approach using Rules to delete the rows. One line C# code would do the trick J

Add Button and Click on the “Edit Form Code” in Button Properties.
public
void DeleteRow_Clicked(object sender, ClickedEventArgs e)
{
// Write your code here.
e.Source.DeleteSelf();
}
When delete the source for the button, it deletes the current node in the DOM, the node contains the entire row.
Download the sample Form with code here.

Од страна на Udayakumar Ethirajulu , on May 31st, 2011
I just installed the Microsoft Online Services Module for Windows PowerShell to configure single sign on for Office 365.
When I try to run the PowerShell script for Single Sign on Module:
The default script execution policy is set to Restricted. You can get the default execution policy by using cmdlet Get-ExecutionPolicy
Set-ExecutionPolicy
Set-ExecutionPolicy will set the policy in your local system, RemoteSigned will trust all local scripts and signed script downloaded internet.

Од страна на Udayakumar Ethirajulu , на 10 мај, 2011
Грешка:
Не може да се вчита вид ‘Microsoft.AnalysisServices.SharePoint.Integration.ReportGalleryView’.
Summary:
Моќ Пивот библиотека има некои посебни пати како галерија видите, рингишпил видите, итн. Во добра за библиотеката има повикување од Собранието ‘Microsoft.AnalysisServices.SharePoint.Integration.ReportGalleryView’, која е спакуван во пакет решение “powerpivotwebapp.wsp“.
Резолуција на:
When PowerPivot addin deployed for SharePoint, it adds two solution packages to “Farm Solutions”
Go to Central Administration, Click on System Settings in Left Navigation.
Then Click on “Manage farm solutions” under Farm Management.
List of farm solutions will be listed.
Powerpivotfarm.wsp would be already deployed globally.
Click on the powerpivotwebapp.wsp and deploy the solution to the web app where you are trying to create the Power Pivot Gallery.
You are good to go. Create the library now, no error J

Од страна на Udayakumar Ethirajulu , on April 20th, 2011
How to Turn On/Off the Wizard for Score Card Designer
To turn on the Wizard for Score Card in Dashboard designer, click on the Office Icon in top left corner
Click on the Designer Options button in the Menu.
Од страна на Udayakumar Ethirajulu , on March 21st, 2011
Business problem
The sales person sending document to marketing team, meanwhile the sales team has done some content organization reshuffled the documents to subfolder and different document libraries. If someone tries to pullout the document using the URL, they wouldn’t be able to find it.
Overview of Document ID
Document ID is the new feature in SharePoint 2010. By enabling the document ID feature, it assigns the unique ID to every document in Site Collection. Irrespective of location the document ID would help the user to find the document.
Activate Service
Activate the Document ID Service feature at Site Collection level to generate the ID for documents.
Now every document in the site collection has the unique ID. The link to document can be defined with “DocIdRedir.aspx?ID=xxxxxx”
DocIdRedir.aspx accepts the query string ID in the URL, which would be used to lookup the document using its unique ID, then it will be redirected to the current location of the file.
http://intranet.contoso.com/_layouts/DocIdRedir.aspx?ID=YHNNQ7JVKVWQ-1-1
Change Document ID
Can I change the document ID prefix?
Yes
Go to -> Site Actions -> Мапа на Settings -> (Мапа Колекција администрација) Document ID Settings

Change the Text in “Begin IDs with the following characters”

Од страна на Udayakumar Ethirajulu , on March 13th, 2011
I was working on creating my new codeplex tool for Site Governance to automate the process of creating the site based on the request.
The site will be provisioned programmatically using the object model in custom actions associated with SPD workflow. While building this action, I was trying to get the list of site templates and ID’s to automate the creation process. Конечно, figured out the PowerShell cmdlet does the magic of listing all ID’s J
Get-SPWebTemplate is very useful PowerShell cmdlet to list the ID and templates.

Од страна на Udayakumar Ethirajulu , on February 12th, 2011
Issue:
When you try to get data from Data Connection for e.g. web service. You get the following error:
“The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator. Form elements, such as drop-down lists may be blank.”

Cause:
The Default data connection response size if set to 1500kb for Form Services, If the response from the data connection size exceeds the default limit the warning will be shown on screen.
Резолуција на:
Click on General Application Settings in Central Administration
Click on Configure InfoPath Forms Services under InfoPath forms Services

Change the Response Size in kilobytes.

|
|