|
|
من قبل Udayakumar Ethirajulu , on August 4th, 2011
|
سجل اليوم!
Turn to SharePoint 2010 to automate business processes & provide consistencyin the way your business is run.
|
|
باعتبارها رائدة في مجال التكنولوجيا, 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 في 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!

|
من قبل Udayakumar Ethirajulu , في 14 يوليو, 2011
هنا الويبينار بلدي المقبلة في SharePoint 2010 الاستخبارات التجارية.
|
الوقت ينفد! سجل اليوم!
تحول نحو حل ذكاء الأعمال قوية لتمكين المنظمة الخاص
|
باعتبارها رائدة في مجال التكنولوجيا, تعرف في هذه البيئة الاقتصادية الصعبة, 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 في 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
So register today, because this is one event you don’t want to miss!

|
من قبل Udayakumar Ethirajulu , يوم 1 يوليو, 2011
من قبل Udayakumar Ethirajulu , في 6 يونيو, 2011
هذا هو نوع من طلب مشترك من العميل لديهم نوع من زر حذف صغير أو صورة في كل لحذف.
لم استطع العثور على أي نهج استخدام القواعد لحذف الصفوف. One line C# code would do the trick ياء

إضافة زر وانقر على “تعديل التعليمات البرمجية للنموذج” 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 '.
ملخص:
القوة المحورية المكتبة لديها بعض وجهات النظر الخاصة مثل مشاهدة معرض الصور, دائري رأي, إلخ. طريقة العرض الافتراضية للمكتبة لديه مرجعية من الجمعية ‘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 ياء

من قبل Udayakumar Ethirajulu , في 20 أبريل, 2011
كيفية تشغيل / إيقاف معالج مصمم لبطاقات تسجيل
لتشغيل معالج للبطاقات تسجيل في مصمم لوحة القيادة, انقر على أيقونة مكتب في أعلى الزاوية اليسرى
انقر على زر مصمم خيارات في القائمة.
من قبل Udayakumar Ethirajulu , في 21 مارس, 2011
مشكلة عمل
الشخص مبيعات إرسال الوثيقة إلى فريق التسويق, في هذه الأثناء فريق المبيعات فعلت خلط بعض التنظيم محتوى الوثائق إلى فرعي ومكتبات المستندات المختلفة. اذا كان شخص ما يحاول الانسحاب من وثيقة باستخدام URL, فإنها لن تكون قادرة على العثور عليه.
نظرة عامة على الوثيقة رقم
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.
المتشعب://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 -> إعدادات الموقع --> (إدارة مجموعة الموقع) Document ID Settings

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

من قبل Udayakumar Ethirajulu , في 13 مارس, 2011
كنت أعمل على خلق أداة جديدة لبلدي codeplex الحكم الموقع لأتمتة عملية إنشاء موقع بناء على طلب.
وسيتم المشروطة الموقع برمجيا باستخدام طراز كائن في الإجراءات المخصصة المرتبطة سير العمل SPD. وفي الوقت نفسه بناء هذا العمل, 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 ياء
Get-SPWebTemplate is very useful PowerShell cmdlet to list the ID and templates.

من قبل Udayakumar Ethirajulu , في 12 فبراير, 2011
قضية:
عند محاولة الحصول على بيانات من اتصال البيانات، مثلا. خدمة ويب. يمكنك الحصول على الخطأ التالي:
“وقد تجاوز حجم البيانات التي تم إرجاعها من قبل اتصال البيانات الحد الأقصى الذي تم تكوينه من قبل مسؤول الملقم. شكل عناصر, وقد مثل القوائم المنسدلة فارغة.”

سبب:
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.

|
|