I have a problem with MS project online string custom field using
Send an HTTP request to SharePoint
but initially after project was created the field is empty checking on (after checkout)_api/ProjectServer/Projects('ProjectUid')/draft/includecustomfields
it does not appear. If I set data on this field on PWA save it and publish the above action work and I can update it.In short how can I update this field when it's empty using MS power automate actions ?
Related
Update action not works in kingswaysoft premium slowly dimension on ssis.
Hi,
I need to update SharePoint list everyday using SSIS. While updating new records should be created and changed records should be updated. New records can create using create action in premium slowly dimension. However update action not works. flow executed without any error. Any suggestions to make update action success or any method to update changed records while looking from sql source?
Thanks
I am very new to Kentico. I have been saddled with a project of recreating a spreadsheet as part of a Kentico built website. I need to accept input from a form, and do calculations and then spit the results back on the screen for the end-user. Again...I am very new to Kentico. So I have been trying to use a custom table, and a custom-table-form. I have it saving an initial record to the custom table, but it overwrites it each time. What would be a proper way of taking in an end-users values from a form and being able to preform basic CRUD tasks with that data (and then display it back on the page for the user to see)?
Thanks in advance!
#Tom,
Please try with Custom Table Input Edit web part from Kentico Marketplace.
You can always use the rest service
you can have table url like ~/rest/customtableitem.customtable.sampletable?format=json
and then do all CRUD operations.
The other way if you are new (my suggestion) is to start with examples (install corporate site example locally if you don't have it ). Check the /Examples/Web-parts/Custom-tables/ section it has all the example how to deal with a custom table. For editing you can use combination: custom table you should use custom table repeater, object management buttons and custom table form. Install the the example (even with the trial version)
I'm trying to recreate this functionality in a SharePoint add-in using Visual Studio 2015. I'm stuck at customizing the MS Word template to include metadata fields (DevNumber, DevOpen, etc). If I create a content type in SharePoint itself, I get a template that includes my fields as custom proprieties. How can I get similar functionality in a SharePoint add-in?
Run the app, then create a document using the default template.dotx. Update the document how you want the template to look, including adding property fields, then save the file as template.dotx in the appropriate folder - something like: https://myAppWeb/MyProjects/Lists/MyList/Forms
Hello this is probably really simple but I do not have much experience with creating workflows
I am using SharePoint WSS 3.0 on SBS 2008
I want an email to be sent automatically when a new document is added to a document library when a user clicks the new button and fills out the document, then saves it to the library
I have figured out how to send the email but I cant get it to send the email automatically upon creation of the new document, I always have to manually start the workflow
I have selected "Automatically start this workflow when a new item is created
I know I need to create a condition but I'm unsure what I need to create?
Here is my workflow
http://cl.ly/image/2K2r3r3F1Z1O
Here are the columns in the document library
http://cl.ly/image/433i450s1D3O
Any help would be great
Check the workflow settings. It may be set to "No New Instances", which happens when you redeploy workflows.
I am using On-Premise crm dynamics 2011 and I am facing problem in the following situation. The requirement in one of the modules I am developing is to get an input from the end user and use it to filter the contacts in crm and display it to the user. I was doing this by using asp.net and crm sdk and I was retrieving the entity collection filtered by the user input and displaying the resultant contacts in a web page (custom aspx page outside crm). However, now the requirement is to display the contacts list within crm itself. Not in my asp.net application.
I was actually doing a similar thing of displaying a contact, by using the filter and fetching the guid of the contact and using the url
(http://server/organization/sfa/conts/edit.aspx?id=12b3bd97-57f8-e211-b4fd-000c29ea65f3).
This is fine with displaying a single contact. I was displaying all the contacts using the url
(http://server/organization/main.aspx?etc=2&etn=contact&extraqs=%3fpagemode%3diframe%26sitemappath%3dWorkplace%257cCustomers%257cnav_conts&pagetype=entitylist&viewid=%7b00000000-0000-0000-00AA-000010001004%7d&viewtype=1039).
Now the question is how can I open a similar form that displays only filtered contacts? Is there an in built form to fulfill my requirement? if not what I should do. I thought of creating a custom page and embedding in crm, however is it advisable in practical situations? I have this doubt because I would be installing this customization to the client servers. Therefore there is a chance that they might not allow third party customizations. I was wondering if there was any other way to do it.
An example is, when a customer calls, I use his phone number as a filter to lookup for a contact in crm and if there are many contacts associated with the number I need to display them all to the user.
I would build a custom html page.
Query the results using the OData service and display the results in a grid.
You can then add this webpage to a form or a dashboard using an IFRAME.
I've used a combination of crmfetchkit and jQGrid to implement this in the past.
http://crmfetchkit.codeplex.com/
http://www.trirand.com/blog/
Implementation is 100 percent client side javascript and works pretty well.