|
|
Nga Udayakumar Ethirajulu , on August 4th, 2011
|
Regjistrohu Sot!
Turn to SharePoint 2010 to automate business processes & provide consistencyin the way your business is run.
|
|
Si udhëheqës të teknologjisë, you know the challenges of implementing business processes across your organization. Typically, the processes do not integrate with the way people actually work. For a business process to be effective, it must be integrated with everyday tools and applications used in the workplace so that it becomes part of the daily routine. In the electronic workplace, this includes integration with e-mail, calendars, task lists, and collaboration Web sites.
As companies seek to address these challenges, more and more are turning towards a robust workflow solution that enables solution architects, designers, and administrators to improve business processes: Microsoft SharePoint 2010.
Join Microsoft SharePoint MVP Uday Ethirajulu and RSC Solutions on September 8th, 2011 në 11:00am EST for an informative web seminar (webinar) as he discusses and demonstrates the primary benefits of using workflows in SharePoint 2010 to facilitate business processes and improve collaboration. Uday will highlight the business value you can get from 2010 and concentrate on three areas of interest:
- Workflow in SharePoint Designer
- Custom Workflows – Using Visual Studio
- Process flow without SharePoint workflow
So register today, because this is one event you don’t want to miss!

|
Nga Udayakumar Ethirajulu , Korrik 14, 2011
Këtu është webinar ime e ardhshme në SharePoint 2010 Business Intelligence.
|
Ora është Running Out! Regjistrohu Sot!
Kthehet drejt një zgjidhje të Inteligjencës të fuqishme të biznesit për të fuqizuar organizatën tuaj
|
Si udhëheqës të teknologjisë, ju e dini në këtë mjedis të vështirë ekonomike, 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.
As companies seek to address these challenges, 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:00në 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
So register today, because this is one event you don’t want to miss!

|
Nga Udayakumar Ethirajulu , më 1 korrik, 2011
Nga 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.

Nga 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.

Nga Udayakumar Ethirajulu , më 10 maj, 2011
Gabim:
Nuk mund të ngarkesës lloj ‘'Microsoft.AnalysisServices.SharePoint.Integration.ReportGalleryView.
Përmbledhje:
Fuqia strumbullar Biblioteka ka disa pikëpamje të veçanta të tilla si galeri pamje, carousel Shiko, etj. Pamja e parazgjedhur për bibliotekën e ka referencë nga kuvendi ‘Microsoft.AnalysisServices.SharePoint.Integration.ReportGalleryView’, e cila është paketuar në pako zgjidhje “powerpivotwebapp.wsp“.
Zgjidhje:
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

Nga Udayakumar Ethirajulu , më 20 prill, 2011
Si të Turn On / Off Wizard për Card Designer Vota
Për ta ndezur Wizard për Card Score në projektuesi Pult, klikoni në ikonën Office në këndin e majtë
Kliko në butonin Options Designer në Menu.
Nga Udayakumar Ethirajulu , më 21 mars, 2011
Problemi Biznes
Personi shitjes dërguar dokumentin për ekipin e marketingut, Ndërkohë Ekipi i shitjes ka bërë disa organizata Përmbajtja riorganizuar dokumentet për subfolder dhe bibliotekave të ndryshme të dokumenteve. Nëse dikush përpiqet të tërheqjes e dokumentit duke përdorur URL, ata nuk do të jetë në gjendje për të gjetur atë.
Pasqyrë e ID Document
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 -> Paneli i punëve Site -> (Administratës Site Mbledhja) Document ID Settings

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

Nga Udayakumar Ethirajulu , më 13 mars, 2011
Unë kam qenë duke punuar në krijimin e ri mjet time CodePlex për Qeverisje Site të Automate procesin e krijimit faqen e bazuar në kërkesën.
Faqe do të parashikohen programmatically duke përdorur modelin objekt në veprimet doganore të lidhura me SPD workflow. Ndërsa ndërtimin e këtij veprimi, I was trying to get the list of site templates and ID’s to automate the creation process. Më në fund, 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.

Nga Udayakumar Ethirajulu , më 12 shkurt, 2011
Çështje:
Kur ju përpiqeni të merrni të dhënat nga lidhjen e të dhënave për shembull. web shërbim. Ju merrni gabim në vijim:
“Shuma e të dhënave që ishte kthyer nga një lidhje të dhënave ka tejkaluar limitin maksimal që është konfiguruar nga administratori server. Elementet formë, si drop-down lista mund të jetë bosh.”

Shkak:
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.
Zgjidhje:
Click on General Application Settings in Central Administration
Click on Configure InfoPath Forms Services under InfoPath forms Services

Change the Response Size in kilobytes.

|
|