How to Change the Home Page / Landing Page in MOSS 2007

To Change the Home Page or Landing Page in SharePoint,

Browse to

साइट क्रियाएँ ->

(Look And Feel) Welcome Page – Specify your Page URL.

How to set the Interval for Alerts in SharePoint 2007

To set the timer job interval for alerts can set by using the setproperty for the property job-immediate-alerts command in stsadm.

वाक्य-विन्यास:STSADM -o getproperty -pn job-immediate-alerts –pv <property value> -url <साइट का URL>

उदाहरण:STSADM -o getproperty -pn job-immediate-alerts –pv “every 2 minutes” -url http://उदय

[…]

SharePoint में फोरम लाइब्रेरी प्रोग्राम में InfoPath एक्सएमएल फाइल को संपादित करने के लिए कैसे 2007

The below lines of code snippet is to update the infopath xml record(file)

SPWeb _web = SPContext.Current.Web; SPList _list = _web.Lists[“SampleFormLib”];

MemoryStream myInStream = new MemoryStream(item.File.OpenBinary()); XmlTextReader reader = new XmlTextReader(myInStream);

XmlDocument doc = new XmlDocument(); doc.Load(reader);

reader.Close(); myInStream.Close();

XmlNamespaceManager nameSpaceManager = new XmlNamespaceManager(doc.NameTable); nameSpaceManager.AddNamespace(“my”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);

doc.DocumentElement.SelectSingleNode(“my:Status”, nameSpaceManager).InnerText = “Saved”; […]

अलर्ट के लिए टाइमर कार्य अंतराल जाओ

प्राप्त करने के लिए अलर्ट के लिए टाइमर कार्य अंतराल stsadm में getProperty कमांड के प्रयोग के द्वारा प्राप्त किया जा सकता है.

वाक्य-विन्यास:Stsadm -o getProperty -pn कार्य तत्काल-अलर्ट -url <साइट का URL>

उदाहरण:

Stsadm -o getProperty -pn कार्य तत्काल-अलर्ट -url HTTP://उदय

SharePoint में नए आइकन संकेतक के लिए निर्धारित अवधि

SharePoint में नई आइकन के लिए अवधि निर्धारित करने के लिए (नए आइटम के बगल से पता चलता है जो सूचक) access the SharePoint WebApplication object and set the value for DaysToShowNewIndicator.

SPWebApplication WebApp = SPWebApplication.Lookup(new Uri(WebAppURL.Text));

WebApp.DaysToShowNewIndicator = 3;

WebApp.Update();

[…]

अनुमोदन वर्कफ़्लो अनंत लूप में चला जाता है, जबकि संपादन

सामग्री अनुमोदन के लिए बॉक्स अनुमोदन वर्कफ़्लो SharePoint में मुद्दा है जबकि वर्कफ़्लो ट्रिगर जब आइटम बदल रहा है, स्थिति पर रहेगा “InProgress” या “अपूर्ण” हालांकि आइटम मंजूरी दे दी है.

माइक्रोसॉफ्ट इस मुद्दे के लिए हॉटफिक्स जारी किया गया है. It can be downloaded from here

प्रयोग में सामग्री प्रकार साइट - त्रुटि जबकि सामग्री प्रकार हटाना

If you get “Site Content Type in Use” error while deleting the content type.

Change the default content type for the list/library, which uses this content type.

Then try to delete the content type.

त्रुटि "फ़ाइल SharePoint प्रणाली द्वारा संशोधित किया गया है" जबकि SharePoint लाइब्रेरी में InfoPath xml फ़ाइल अद्यतन

यदि आप ऑब्जेक्ट मॉडल के माध्यम से / घटनाओं WebParts में या किसी भी माध्यम से InfoPath xml फ़ाइल अद्यतन करने की कोशिश.

जबकि Item.Update execting() नीचे त्रुटि का कारण होगा. While updating the InfoPath xml file in ListItem the file and ListItem object getting disconnected.

Item.File.Update() अपने मुद्दे को हल करेंगे.

StackTrace […]

अपवाद हुआ जबकि प्रकाशन सुविधा को सक्रिय

यदि आप नीचे अपवाद हो रही है जबकि अपनी साइट पर प्रकाशन सुविधा को सक्रिय.

अपवाद हुआ. (HRESULT से अपवाद: 0x80020009 (DISP_E_EXCEPTION)) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetMetadataForUrl(स्ट्रिंग bstrUrl, Int32 METADATAFLAGS, Guid& pgListId, Int32& plItemId, Int32& plType, वस्तु& pvarFileOrFolder) at Microsoft.SharePoint.Library.SPRequest.GetMetadataForUrl(स्ट्रिंग bstrUrl, Int32 METADATAFLAGS, Guid& pgListId, Int32& plItemId, Int32& plType, वस्तु& pvarFileOrFolder)

[…]

विजुअल स्टूडियो के CTP 2008 SharePoint के v1.3 के लिए एक्सटेंशन

एमएस दृश्य स्टूडियो के CTP के विमोचन 2008 SharePoint के लिए एक्सटेंशन.

सामुदायिक प्रौद्योगिकी पूर्वावलोकन (CTP) रिहाई यहाँ माइक्रोसॉफ्ट कनेक्ट पर ग्राहकों को भी उनके पास किसी भी प्रतिक्रिया की रिपोर्ट कर सकते हैं जहां उपलब्ध है. यह अनुमान है कि सभी मौजूदा VSeWSS 1.2 परियोजनाओं CTP के साथ काम करेंगे. CTP के लिए Microsoft ग्राहक समर्थन द्वारा समर्थित नहीं है […]