New Content Type with RDL template

I'm building a new Project Server 2010 site template and one of the libraries that I want to provide will store the Status Reports for each Project.
I'm struggling with what seems like a simple concept.
Create a new Content Type that uses the status_report.RDL as it's template so that users can click on the 'New Document' button drop down in the ribbon and select 'Status Report' from a list of possible document templates and then the status report opens, they
add the required parameters, run the report and then 'Export' it as an Excel Sheet which they can store in the library as a point in time report of the projects status.
Am I asking too much or do I just need to decypher the way that SharePoint builds the URL for the report from the actual .RDL file that's stored in a library in order to enter it as the location of the content type template?
Thanks in advance.
N03L.

I should add that I'm planning on having this content type stored in a Content Type Hub and published for use in another Site Collection.

Similar Messages

  • Workflow Status column for new content type

    Hi,
    Initially I had a document library and several workflows associated with it. After that I created a new content type inheriting Folder content type. My existing workflows could be started and work fine with any item of this new content type except anything
    related to the workflow status column, such as "Automatically update workflow status to the current stage name", or workflow action "Set workflow status". If I use the OOTB Folder content type, everything's fine. But I need custom fields
    for folder as well.
    The workflows can be started then it seems unreasonable that they are not associated with the items of the new content type, considering I set my new content type to be the child of the existing Folder content type. So why any item under this new content
    type does not have the workflow status column? I've tried removing the workflow from the list and publishing back using SPD without success.
    I also notice that when you associate a new content type to a document library/list which has some custom columns, you cannot edit those columns to be used in the new content type. You need to delete those columns and recreate them, then the option "Add
    to all content types" is there. Is this expected design?
    Thanks

    Hi,
    According to your post, an error occurred when you created a custom Edit form for new content type.
    We can do as follows:
    1.Add the MyNameSpace.MyNewEditPage dll file into GAC(C:\Windows\assembly).
    2. Execute the iisreset command.
    We can create a new content type using visual studio 2012/2013.
    http://www.sharepoint-journey.com/sharepoint-list-content-types-and-site-columns.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • I lost the ability to order and hide site columns if i use custom content type with a custom Create Form

    I have a team site collection and I want to add a new App of type Issue Tracking list. so I did the following:-
    From the site collection I created a new App of type issue tracking.
    Then from the site collection I created a new Content type named “CustomIssue” which has its parent as “Issue” content type.
    I went to the Issue tracking list and I changed the default content type from Issue , to the new “CustomeIssue” content type.
    I open the site collection using SP designer and I created a new Create form for my Issue tracking list based on the "CustomIssue" content type and I select to have the Create form as the default form when creating an item.
    Everything till this point worked well. But when I open the “customIssue” content type , and I re-order the columns and I hide some columns, this was not reflected inside the custom Create form …
    although when using the default content type and the default create form you can control the order of the fields and to specify if certain fields hold be hidden inside the Create form.. so can anyone advice on this please?

    Hi,
    According to your post, my understanding is that you lost the ability to order and hide site columns if i use custom content type with a custom Create Form.
    I try to reproduce the issue, the result is the same as yours.
    As a workaround, if I modify the custom content type form the site setting, and then change the NewForm as the default form, it will change the column orders.
    However, if I use the new created form as the default form, it will remain the original orders.
    I recommend that you modify the custom content type form the site setting, and then reset the NewForm as the default form.
    The result is as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support
    ok thanks for the explanation ,, but what if i want to change the order and hidde some fields in the future ,, do i have to chnage the defualt create form again ...

  • How to Create Custom Content Type with 100 site columns ?

    Hi EveryOne,
    i have one requirement to create custom conten types in sharepoint 2013 as follows.
    1. Create a content type with 100 site columns ( in this 100 site columns includes 10 mms feilds and 10 lookup fields).
    2.when we deploy the content type in other server if already the same content type existing in the server it should be upgrade the existing content type.
    Please advise how do develop the solution ( using power shell script or visual studio with event receiver or xml file)
    Regards,
    Srinivas

    Try below:
    http://www.mindfiresolutions.com/Add-Columns--Fields-Programmatically-to-a-SharePoint-List-282.php
    using(SPSite
    oSPsite = new SPSite("http://Web-URL"))
        oSPsite.AllowUnsafeUpdates =
    true;
    using (SPWeb oSPWeb = oSPsite.OpenWeb())
            oSPWeb.AllowUnsafeUpdates =
    true;
    /* get the SPList object by list name*/
    SPList lst = oSPWeb.Lists["EmpList"];
    /* create a Numeric field for EmpID */
    SPFieldNumber fldEmpID = (SPFieldNumber)lst.Fields.CreateNewField(
    SPFieldType.Number.ToString(),
    "EmpID");
            fldEmpID.Required =
    true;
            fldEmpID.DisplayFormat =
    SPNumberFormatTypes.NoDecimal;
    /* create a Text field for Name */
            SPFieldText fldName = (SPFieldText)lst.Fields.CreateNewField(
    SPFieldType.Text.ToString(),
    "Name");
            fldName.Required =
    true;
            fldName.MaxLength = 50;
    /* create a Date field for Dob*/
    SPFieldDateTime fldDob = (SPFieldDateTime)lst.Fields.CreateNewField(
    SPFieldType.DateTime.ToString(),
    "Dob");
            fldDob.DisplayFormat =
    SPDateTimeFieldFormatType.DateOnly;
    /* create a Currency field for Salary */
            SPFieldCurrency fldSal = (SPFieldCurrency)lst.Fields.CreateNewField(
    SPFieldType.Currency.ToString(),
    "Salary");
            fldSal.Currency =
    SPCurrencyFieldFormats.UnitedStates;
            fldSal.DisplayFormat =
    SPNumberFormatTypes.TwoDecimals;
    /* add the new fields to the list */
            lst.Fields.Add(fldEmpID);
            lst.Fields.Add(fldName);
            lst.Fields.Add(fldDob);
            lst.Fields.Add(fldSal);
    /* finally update list */
            lst.Update();
            oSPWeb.AllowUnsafeUpdates =
    false;
        oSPsite.AllowUnsafeUpdates =
    false;
    If this helped you resolve your issue, please mark it Answered

  • SharePoint 2013 Custom Content Type with Site Column custom validations

    Hello,
    Can somebody please suggest me how I can create custom content type with site columns with custom validation to site columns programmatically?
    Thanks,
    Praveen Kumar Padmakaran

    Hi,
    From your description, my understanding is that you want to create content type with site column with validation.
    You could create a site column, and add some validation to the site column. After you could create a custom content type, please add the site column with validation to the content type. Please refer
    to this code below:
    static void Main(string[] args)
    // replace your url
    using (SPSite site = new SPSite("http://sp/sites/sp2013"))
    using (SPWeb web = site.OpenWeb())
    //define the type of the field
    SPFieldType type = SPFieldType.Number;
    // create a site column
    SPField field = CreateSiteColumn(web, "newTest", type, "");
    // add custom formula for the field
    SPFieldNumber fieldNumber = web.Fields.GetField("newTest") as SPFieldNumber;
    fieldNumber.ValidationFormula = "=[newTest]>5";
    fieldNumber.ValidationMessage = ">5";
    fieldNumber.Update();
    SPContentTypeId parentItemCTypeId = web.ContentTypes[0].Id;
    // create custom content type
    SPContentType contentType = CreateSiteContentType(web, "newContent", parentItemCTypeId, "Custom Content Types");
    // add the site column to the content type
    AddFieldToContentType(web, contentType, field);
    // add fiedl to contenttype
    public static void AddFieldToContentType(SPWeb web, SPContentType contentType, SPField field)
    if (contentType == null) return;
    if (contentType.Fields.ContainsField(field.Title)) return;
    SPFieldLink fieldLink = new SPFieldLink(field);
    contentType.FieldLinks.Add(fieldLink);
    contentType.Update();
    // create a custom content type
    public static SPContentType CreateSiteContentType(SPWeb web, string contentTypeName,SPContentTypeId parentItemCTypeId, string group)
    if (web.AvailableContentTypes[contentTypeName] == null)
    SPContentType itemCType = web.AvailableContentTypes[parentItemCTypeId];
    SPContentType contentType =
    new SPContentType(itemCType, web.ContentTypes, contentTypeName) { Group = @group };
    web.ContentTypes.Add(contentType);
    contentType.Update();
    return contentType;
    return web.ContentTypes[contentTypeName];
    // create a site column
    public static SPField CreateSiteColumn(SPWeb web, string displayName,SPFieldType fieldType, string groupDescriptor)
    if (!web.Fields.ContainsField(displayName))
    string fieldName = web.Fields.Add(displayName, fieldType, false);
    SPField field = web.Fields.GetFieldByInternalName(fieldName);
    field.Group = groupDescriptor;
    field.Update();
    return field;
    return web.Fields[displayName];
    You could refer to these articles:
    C# code to create Site Column, Content Type, and add fields to Content Type
    http://spshare.blogspot.jp/2013/10/c-code-to-create-site-column-content.html
    How to do custom validation for site column in SharePoint
    http://www.c-sharpcorner.com/uploadfile/anavijai/how-to-do-custom-validation-for-site-column-in-sharepoint/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected].

  • How to read the content from a External Content Type with out creating External List in Sharepoint 2013?

    Hi,
    I have a requirement to read the External Content Type and storing the Data in a Session Variable. The Reading of the content from External Content Type with out creating a External List.
    Please help I am trying to find the solution, but unable to do that.
    Thanks,
    Pradeep

    Hi,
    Firstly an external content type designed to work with SharePoint list and there is no way to read apart from this.
    If you are looking the solution out of the " Business Connectivity" then find that data source has been exposed through WCF and  Web Service ?
    So you can use REST API and CSOM to consume those data in SharePoint.
    You can also leverage the ADO.NET option if the datasources based on MS technologies.
    Murugesa Pandian| MCPD | MCTS |SharePoint 2010

  • New Content Type doesn't apperas at dDocType field - UCM 11g

    Hi,
    I have created a new Content Type for a new content in the configuration manager, i have added the dDocType field to a profile's rule. Now when i try to check in a new content the dDocType field is not showing the new added content type.
    What could be the reason is not showing or maybe i have omited a step.
    Regards
    Carlos

    Hi ,
    Navigate to UCM UI - Administration - Admin Applets - Configuration Manager - File - Publish Schema (and also Publish Schema Base) .
    Then test and update the results.
    Thanks,
    Srinath

  • How to configure a new product type with a new operation deal?

    hello, All,
    I wonder to know if somebody knows, how to configure a new product type with a new operation deal with the amortization divided?, I mean in the SPRO, portfolio of securities with the characteristics mentioned.
    Hope you help me.
    Bests regards.

    Hi Prasad,
    Thanks for the information, but the directions that you give me not be useful, I want that the UPDATE TYPE  appears in the position cash flow in the transaction deal in the option-->operative valuation area( 2nd option) or in the report TPM13, this for two treasury ledger dates.
    I mean that the update type "samxx" affect the accountant as amortization divided?, this transaction deal is a purchase.
    Thanks in advanced

  • Significance of associating content type with folder in repository

    Hi All,
    pls. tell me the significance of associating content type with the folder.
    Thanks in advance....

    This ought to help:
    http://dev2dev.bea.com/cs/user/blog?file=/blog/cindymc/archive/2007/04/portal_content_1.html

  • External content type with web service - new read item operation disable

    Hi,
    i'm tring to create an external content type based on web service.
    I add for test the web service:
    http://www.webservicex.net/globalweather.asmx?WSDL
    when i try to set get reat item operation- it's disabled.
    what should i do in order to create the operations?
    keren tsur

    Hi,
    Please Provide screenshot about your issue.
    For more information about how to create an external content type based on a web service:
    http://msdn.microsoft.com/en-us/library/office/ee556431(v=office.14).aspx
    besides, here are two posts about defining read operation on External content type error, you can take a look at:
    https://social.technet.microsoft.com/Forums/en-US/f86a8f37-7c8c-4cf0-8722-c6d44aa1e3d8/defining-read-operation-on-external-content-type?forum=sharepointadmin
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/4bcc1cd9-a9d6-4171-87d9-c6749543749c/bcs-connecting-to-a-list-in-another-site-collection-using-the-wcf-service?forum=sharepointcustomizationprevious
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • How to create an External Content Type with SQL Stored Procedures Parameters and query it in a SharePoint App

    Hi,
    I'm new to SharePoint 2013 I want to be able to query a MSSQL database from a SharePoint App I have tried to create an External Content Type (ECT) which is produced from a MSSQL stored Procedure, this procedure has several parameters which are needed to
    filter the data correctly.  From here I want to produce an external list which I can then query from a c# SharePoint app.  If I leave the filters in the ECT null then the list is of course empty or if enter a default values the results are limited
    for the app to query so are no good.
    I want to dynamically pass values to the ECT when querying from the app, is this not possible.  Should I just be returning everything in an external list and then letting the query in the app filter the data, this seems inefficient?
    Is this the best way to do this or should I be doing this differently?
    Please can someone point me in the right direction.
    Thanks

    Hi Pandra801,
    When you create a the external content type, please try to add a filter based on your select statement.
    http://arsalkhatri.wordpress.com/2012/01/07/external-list-with-bcs-search-filters-finders/
    Or, try to create a stored procedure based on your select statement, then create ECT using the SQL stored procedure.
    A step by step guide in designing BCS entities by using a SQL stored procedure
    http://blogs.msdn.com/b/sharepointdev/archive/2011/02/10/173-a-step-by-step-guide-in-designing-bcs-entities-by-using-a-sql-stored-procedure.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Template File created in DreamWeaver Looks ok. But when a new file created with this template shows disordered

    I created a template file in DreamWeaver cs5. It is OK. and it looks like this, with Pink box showing the editable region. http://smsoftsolutions.com/downloads/test.jpg
    Now the problem is, when I create a NEW html file from this Template, in the DESIGN view, the template contents are shown in a flowing mode. ie. Absolutely positioned DIVs are showing in a disorderly way, as shown in this screenshot. http://smsoftsolutions.com/downloads/test2.jpg
    When I preview it in browser, it is showing as I expect. But only in the design mode, it is showing in a relatively positioned way.
    Can anyone tell me what I should do in the dreamweaver settings, to show the layout in a WYSIWYG way?

    Hi,
    Thank you for your reply.
    If I post the pages alone, the link to the images will be broken.
    The css files also will be broken.
    The css file should be in the folder css, images should be in the folder home_images, and template file should be in the folder templates.
    The link to three files are:
    1. HTML FILE
    http://smsoftsolutions.com/downloads/t.html
    2. TEMPLATE FILE
    http://smsoftsolutions.com/downloads/vetiver_master.dwt
    3.  CSS FILE
    http://smsoftsolutions.com/downloads/css/vetiver_css.css
    Sincerely,
    Tomy Sebastian
    >

  • Invalid Content-Type with SAAJ

    I get the following exception when trying to send a SOAPMessage with an attachment. Sorry for the length of this post. Lots of info.
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:application/x-www-form-urlencoded. Is this an error m
    essage instead of a SOAP response?
    The HTTP request looks like the following, I abbreviated the attachment content.
    POST /edlf/design/service/ManagerServices/import HTTP/1.1
    Accept: text/xml
    User-Agent: Java/1.5.0_10
    Host: localhost:9080
    Connection: keep-alive
    Content-type: application/x-www-form-urlencoded
    Content-Length: 17537
    ------=_Part_0_24087760.1169577467505
    Content-Type: text/xml; charset=utf-8
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
    <SOAP-ENV:Body>
    <ImportFileRequest>
    <File name="test.dlf"/>
    </ImportFileRequest>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    ------=_Part_0_24087760.1169577467505
    Content-Type: application/octet-stream
    lMqAAMxQMQBQSwMEFAAAAAgAPFtWNrcaY4xxAQAANwYAADMAAABMaXZlRG9jcy9Db250ZW50L0N1
    c3RvbWVyLzEvRG9jdW1lbnQvMS9QYWdlLzEvMS5iaW6VVL1OAzEMdig/LbQsLEggcV1ZbmGv1Lkj
    ooIJJKoCC0J06MDAyIxY4QGYeYATj8LEgtQBCTawcUIck8sdn2QlduwvsePEAMAZyjrKPYoBxhrK
    awOgBR47XYDPba/LuRHjO8at4niXsy0THPuLAAcr8AdfFjG71K9Qd7yEl3nmpANL3jp2uU5273fd
    YwmBaf3UxEP6aH+qxEjow6VZn2fOSql5awRG6VRwF1wURToYwsI3d0fTSdY/n6YC/ochSsceU95/
    WX66GgbC+3UcVGOSQ5x3sZHMQvVZtF9rM+zPeNqznr6lMnzU8JHQecW6IdbvdXgJrn6as+OUwenl
    hBzI0LYbPeN4Ija9QHkETo7Wxig5BhU4zlmfp1/6N5Tc3hGVO2zPduBXDeIfCF0nciz0LOl3BBtg
    ------=_Part_0_24087760.1169577467505--
    My code snippet for producing the above is:
    BASE64Encoder encoder = new BASE64Encoder();
    String encString = "";
    encString = encoder.encode(content);
    ByteArrayDataSource bds = new ByteArrayDataSource(encString, "application/octet-stream", fileName);
    DataHandler dh = new DataHandler(bds);
    URL url = new URL(serviceEndPt + "ManagerServices/import");
    HttpURLConnection connection = (HttpURLConnection)url.openConnection();
    connection.setDoOutput(true);
    connection.setDoInput(true);
    connection.setRequestMethod("POST");
    connection.setRequestProperty("Accept", "text/xml");
    OutputStream out = connection.getOutputStream();
    MessageFactory mf = MessageFactory.newInstance();
    SOAPMessage msg = mf.createMessage();
    SOAPPart sp = msg.getSOAPPart();
    SOAPEnvelope envelope = sp.getEnvelope();
    SOAPBody body = envelope.getBody();
    SOAPBodyElement root = body.addBodyElement(envelope.createName("ImportFileRequest"));
    SOAPElement fileEl = root.addChildElement(envelope.createName("File"));
    Name attName = envelope.createName("name");
    fileEl.addAttribute(attName, fileName);
    root.addChildElement(fileEl);
    AttachmentPart ap = msg.createAttachmentPart();
    ap.setDataHandler(dh);
    msg.addAttachmentPart(ap);
    msg.writeTo(out);

    The error does not seem to appears in WLS stack. Place a sniffer tool between your client and service to capture more info.
    Jong

  • Newbie: managing content types with metadata - inheritance

    Hello all,
    a newbie-question:
    Is it possible to set up new contenttypes with a hierarchical structure ?
    For instance: every contenttype should have a meta-datafield called TEST123.
    Can we make a 'superclass' contenttype with above mentioned meta-datafield and every contenttype created 'under' the superclass should inherit this meta-datafield.
    Is this possible ? Or should we create every new contenttype with metadata TEST123 seperately ?
    Thanks in advance.

    In fact if you create a metadatafield TEST123, that field is available for every content type.
    I think you need to look at profiling. A profile is a set of metadatafields. For example you create a set called Document. That set holds field like:
    TEST123
    Type
    Title
    Author
    You could then create severall profiles using that set, including other sets. In fact you could see a profile as a composite of different sets. In ECM these sets are called rules.

  • Create new content type...

    Greetings all,
    I am trying to include the Word, PowerPoint and Excel content types in my document libraries so that when a user clicks the "New" drop down they can select which document they want to create.  However I seem to be running into some problems
    getting this done.  I have created the Site Content Type and have also uploaded a template to be used for the document.  I have also gone into the library settings and have added the content types to the document library and set it to open the documents
    in the browser rather than in the client application.  Using Internet Explorer or Mozilla Firefox when creating the new document I am prompted if I want to open the corresponding application, it does not open the new document in the browser.
     Using Google Chrome I am prompted for a name for the new file and when I click OK I receive this error message:
    "Invalid template URLhttp://sharepoint-dev/Documents/Forms/New Word Document/WDTMPL.DOTXThe template must exist in the Forms directory of this document library. Create the
    template in the Forms directory, and then re-type the Web address. Note that you cannot move or copy a template into the Forms directory."
    Any thoughts or ideas?
    Thanks
    Ryan 

    Here is what shows up in the log when trying to create a new Word document (hopefully it makes sense):
    07/25/2011 10:45:28.30 w3wp.exe (0x0DA0)                      
    0x1910
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Name=Request (POST:http://sharepoint-dev:80/Divisions/ASD/_layouts/CreateNewDocument.aspx?id=http://sharepoint-dev/Documents/WDTMPL.DOTX&SaveLocation=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%20Documents&Source=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%2520Documents%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)
    d26f4b74-fe13-481c-9f72-0fd006902be9
    07/25/2011 10:45:28.31 w3wp.exe (0x0DA0)                      
    0x1910
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Request (POST:http://sharepoint-dev:80/Divisions/ASD/_layouts/CreateNewDocument.aspx?id=http://sharepoint-dev/Documents/WDTMPL.DOTX&SaveLocation=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%20Documents&Source=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%2520Documents%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)).
    Execution Time=2.50925746149301 d26f4b74-fe13-481c-9f72-0fd006902be9
    07/25/2011 10:45:28.31 w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Request (POST:http://sharepoint-dev:80/Divisions/ASD/_layouts/CreateNewDocument.aspx?id=http://sharepoint-dev/Documents/WDTMPL.DOTX&SaveLocation=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%20Documents&Source=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%2520Documents%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1))
    07/25/2011 10:45:28.31 w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Name=Request (POST:http://sharepoint-dev:80/Divisions/ASD/_layouts/CreateNewDocument.aspx?id=http://sharepoint-dev/Documents/WDTMPL.DOTX&SaveLocation=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%20Documents&Source=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%2520Documents%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)
    d380d046-cea0-4484-a42a-55fcaec9dab7
    07/25/2011 10:45:28.32 w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Site=/ d380d046-cea0-4484-a42a-55fcaec9dab7
    07/25/2011 10:45:28.33 w3wp.exe (0x0DA0)                      
    0x11E4
    SharePoint Foundation         Topology                      
    e5mc Medium  
    WcfSendRequest: RemoteAddress: 'http://sharepoint-dev:32843/b44120536e3e41c5b8056b2ce95a8a3a/ProfilePropertyService.svc' Channel: 'Microsoft.Office.Server.UserProfiles.IProfilePropertyService' Action: 'http://Microsoft.Office.Server.UserProfiles/GetProfileProperties'
    MessageId: 'urn:uuid:f7e044c1-5283-4719-ac0e-37a0dfd1b75b'
    07/25/2011 10:45:28.34 w3wp.exe (0x0508)                      
    0x0E84
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://sharepoint-dev.rld.state.nm.us:32843/b44120536e3e41c5b8056b2ce95a8a3a/ProfilePropertyService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://Microsoft.Office.Server.UserProfiles/GetProfileProperties'
    MessageId: 'urn:uuid:f7e044c1-5283-4719-ac0e-37a0dfd1b75b'
    87f1f985-4628-4f5a-a778-0685e6e1dd43
    07/25/2011 10:45:28.34 w3wp.exe (0x0508)                      
    0x0E84
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation)
    87f1f985-4628-4f5a-a778-0685e6e1dd43
    07/25/2011 10:45:28.35 w3wp.exe (0x0508)                      
    0x0E84
    SharePoint Foundation         General                      
    8kh7 High    
    Cannot complete this action.  Please try again.
    87f1f985-4628-4f5a-a778-0685e6e1dd43
    07/25/2011 10:45:28.35 w3wp.exe (0x0508)                      
    0x0E84
    SharePoint Foundation         General                      
    8kh7 High    
    Cannot complete this action.  Please try again.
    87f1f985-4628-4f5a-a778-0685e6e1dd43
    07/25/2011 10:45:28.35 w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Runtime                      
    tkau Unexpected
    System.ArgumentException: Value does not fall within the expected range.    at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)     at Microsoft.SharePoint.SPWeb.GetFile(String
    strUrl)     at Microsoft.Office.Web.CreateNewDocument.Pages.CreateNewDocument.CreateDocumentFromListTemplate(String fileName)     at Microsoft.Office.Web.CreateNewDocument.Pages.CreateNewDocument.ButtonOkClick(Object sender, EventArgs e)
        at System.Web.UI.WebControls.Button.OnClick(EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String
    eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBe...
    d380d046-cea0-4484-a42a-55fcaec9dab7
    07/25/2011 10:45:28.35* w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Runtime                      
    tkau Unexpected
    ...foreAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    d380d046-cea0-4484-a42a-55fcaec9dab7
    07/25/2011 10:45:28.36 w3wp.exe (0x0508)                      
    0x0E84
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=17.1270370954968
    87f1f985-4628-4f5a-a778-0685e6e1dd43
    07/25/2011 10:45:28.36 w3wp.exe (0x0DA0)                      
    0x128C
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Request (POST:http://sharepoint-dev:80/Divisions/ASD/_layouts/CreateNewDocument.aspx?id=http://sharepoint-dev/Documents/WDTMPL.DOTX&SaveLocation=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%20Documents&Source=http%3A%2F%2Fsharepoint%2Ddev%2FDivisions%2FASD%2FShared%2520Documents%2FForms%2FAllItems%2Easpx&DefaultItemOpen=1)).
    Execution Time=46.808463086789 d380d046-cea0-4484-a42a-55fcaec9dab7

Maybe you are looking for

  • Using iTunes with multiple macs

    I have a MacBook Pro and a Mac mini. I use a portable hard drive to store my iTunes library. I was able to use the same library for both Macs before and I'm not sure when (maybe before iTunes 8) but I'm not able to anymore. I can run it just fine in

  • How can i log in itune in free

    when i trying to log in itune........i tune gives a window message that enter credite card number pay some payment then you use it further

  • MacBook Pro 13'' FireWire 800 Port

    Hey all I'm quite worried about the FW 800 port in my macbook pro 13''. Any time i connect my camcorder to it, it doesn't show up in iMovie nor final cut pro. However in system profiler Firewire is showing up but all that is displayed is the speed of

  • Final Cut Pro 3 System Requirements

    Does anybody know the System Requirements to run Final Cut Pro v.3? I am curious about putting it on my computer because Final cut 5 HD has a 800mHz minimum. My hope is that you can disable a lot of the features, Trans, RT, Effects, Live Type, and th

  • VPN-PassThrough with wlc 5508 7.0.235.0

    HI, i have 2 ssid with the same comfiguration (diff only in name) in one ipsec ssid vpn (l2tp over ipsec with natt ) works fine, in another after phase 2 is completed no traffic is forwarded and vpn session is dropped. There are no access lists on eq