Missing workflow app identifier in Site App Permissions

Hi everyone,
I´m wondering if anyone can help me with this issue: I can´t get the Workflow app identifier to appear (again) in Site App Permissions. I was having some trouble with workflow permissions after changes in our SharePoint environment and decied to
delete the Workflow app permissions and de-activate the "Workflows can use app permissions", and re-activate to hopefully get things working again...
Issue:
However, when I activate the feature (again), the App identifier does not appear in the "Site App Permission".
Can anyone tell me how to acivate/add this identifier other than with activating the site feature?
-Why SharePoint, why?-

Hi,
For your issue, Try to do the steps below:
Navigate to _layouts/15/appinv.aspx i.e. grant permission to app page.
Type app identifier and click Lookup, it will generate Title.
Type App Domain such as contosoapps.domain.
Type the following to App's Permission Request XML.
Click Create, it will pop up SharePoint app, and click Trust it.
<AppPermissionRequests>
<AppPermissionRequest
Scope="http://sharepoint/content/sitecollection"
Right="FullControl" />
</AppPermissionRequests>
Besides, App permissions in SharePoint 2013, refer to it:
http://msdn.microsoft.com/en-us/library/jj822159.aspx
 http://msdn.microsoft.com/en-us/library/office/fp142383(v=office.15).aspx
Best Regards,
Lisa Chen
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Lisa Chen
TechNet Community Support

Similar Messages

  • Manage Site App Permissions Programmatically?

    Hello,
    Is it possible to manage a site's app permissions programmatically? (site settings -> site app permissions)
    I am deploying a SharePoint-Hosted App to an on-premises instance of SharePoint 2013 using server object model:
    SPAppInstance instance = web.LoadAndInstallApp(stream);
    The app requires some permissions (Web, Read). I would like to trust the app programmatically as well.
    Thank you!
    Andre

    For anyone that's interested, I came across a similar requirement. The code above is a good start, but it assumes that the app principal is already created (i.e. LookupAppPrincipal). Unfortunately, when installing an app, the app principal doesn't exist
    and isn't created (unless of course it was done so manually). So, the code below is a variation of the above code, for when an app principal must first be created before being assigned permissions.
    SPAppInstance appInstance = web.LoadAndInstallApp(package);
    char[] separators = { '|', '@' };
    string appPrincipalIdentifier = appInstance.AppPrincipalId.Split(separators)[2];SPAppPrincipalPermissionsManager permissionsManager = new SPAppPrincipalPermissionsManager(web);
    SPAppPrincipalManager principalManager = SPAppPrincipalManager.GetManager(web);
    List<string> endpoints = new List<string>();
    endpoints.Add("<EndPoint Authority>");
    SecureString secureString = new SecureString();DateTime now = DateTime.Now;SPAppPrincipalCredential credential = SPAppPrincipalCredential.CreateFromSymmetricKey(secureString, now, now);SPExternalAppPrincipalCreationParameters creationParameters = new SPExternalAppPrincipalCreationParameters(
    appPrincipalIdentifier,
    "<Display Name>",
    endpoints,
    credential
    SPAppPrincipal principal = principalManager.CreateAppPrincipal(creationParameters);
    permissionsManager.AddAppPrincipalToWeb(principal, SPAppPrincipalPermissionKind.FullControl

  • Missing Workflow XAML Feature Error during site creation from custom template Microsoft.Workflow.Client.ActivityNotFoundException

    Hi,
    I am using SharePoint 2013 Enterprise with the March CU.
    I created a project site template with libraries, lists and workflows and saved it as a template with content.  When I try to create a new site using this template, I get the error pasted at the bottom.
    I was using SharePoint designer workflow custom activities created in VS2012. I uninstalled those and decided to call a web service directly from SharePoint designer.  The workflows work fine inside of the site which I want to create a project template
    from.  When creating a new site from the template, SharePoint complains about a missing workflow XAML feature.
    Do I have some leftover references to the custom features? Does anyone know how to resolve this issue?
    <nativehr>0x8107058a</nativehr><nativestack></nativestack>Microsoft.Workflow.Client.ActivityNotFoundException: The activity named 'WorkflowXaml_13602d27_d83f_48bb_b73b_54ef9df29a0e' from scope '/SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c'
    was not found. HTTP headers received from the server - ActivityId: 22e889a4-6edb-4b0b-8e09-9bb04483b991. NodeId: SERVERNAME. Scope: /SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c. Client ActivityId : 69e6449c-9c3c-f090-404f 
      Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
     Exception Details: System.Runtime.InteropServices.COMException: <nativehr>0x8107058a</nativehr><nativestack></nativestack>Microsoft.Workflow.Client.ActivityNotFoundException: The activity named 'WorkflowXaml_13602d27_d83f_48bb_b73b_54ef9df29a0e'
    from scope '/SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c' was not found. HTTP headers received from the server - ActivityId: 22e889a4-6edb-4b0b-8e09-9bb04483b991. NodeId: SERVERNAME Scope: /SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c.
    Client ActivityId : 69e6449c-9c3c-f090-404f
    Source Error: 
     An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
    Stack Trace: 
    [COMException (0x8107058a): <nativehr>0x8107058a</nativehr><nativestack></nativestack>Microsoft.Workflow.Client.ActivityNotFoundException: The activity named 'WorkflowXaml_13602d27_d83f_48bb_b73b_54ef9df29a0e' from scope '/SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c'
    was not found. HTTP headers received from the server - ActivityId: 22e889a4-6edb-4b0b-8e09-9bb04483b991. NodeId: SERVERNAME. Scope: /SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c. Client ActivityId : 69e6449c-9c3c-f090-404f]
       Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, Int32 fIgnoreMissingFeatures, String& bstrWebTemplate,
    Int32& plWebTemplateId) +0
       Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, Int32 fIgnoreMissingFeatures, String& bstrWebTemplate,
    Int32& plWebTemplateId) +293
    [SPException: Microsoft.Workflow.Client.ActivityNotFoundException: The activity named 'WorkflowXaml_13602d27_d83f_48bb_b73b_54ef9df29a0e' from scope '/SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c' was not found.
    HTTP headers received from the server - ActivityId: 22e889a4-6edb-4b0b-8e09-9bb04483b991. NodeId: SERVERNAME. Scope: /SharePoint/default/cbb1afbb-8112-47b3-82b1-6e1f47923d9a/20857512-9689-4361-a887-04644d740b1c. Client ActivityId : 69e6449c-9c3c-f090-404f]
       Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) +146
       Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String bstrWebTemplateContent, Int32 fWebTemplateContentFromSubweb, Int32 fDeleteGlobalListsWithWebTemplateContent, Int32 fIgnoreMissingFeatures, String& bstrWebTemplate,
    Int32& plWebTemplateId) +889
       Microsoft.SharePoint.SPWeb.ProvisionWebTemplate(SPWebTemplate webTemplate, String webTemplateToUse, SPFeatureWebTemplate featureWebTemplate, Page page, SPFeatureDependencyErrorBehavior featureDependencyErrorBehavior, ICollection`1& featureDependencyErrors)
    +928
       Microsoft.SharePoint.SPWeb.ApplyWebTemplate(SPWebTemplate webTemplate, Page page, SPFeatureDependencyErrorBehavior featureDependencyErrorBehavior, ICollection`1& featureDependencyErrors) +532
       Microsoft.SharePoint.ApplicationPages.TemplatePickerUtil.ApplyWebTemplateAndRedirect(SPWeb Web, String strWebTemplate, Nullable`1 bSharedNav, Boolean bOnTopNav, Boolean bOnQuickLaunch, Page page, Boolean bDeleteOnError, SPFeatureDependencyErrorBehavior
    featureDependencyErrorBehavior, ICollection`1& featureDependencyErrors) +2076
       Microsoft.SharePoint.ApplicationPages.NewSubwebPage.BtnCreateSubweb_Click(Object sender, EventArgs e) +861
       System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +146
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3586
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18045  

    Hi  Jerry Choinski,
    For your error, It could possibly have something to do with that the workflow did not publish before saving your project site as a template.
    The "Elements.xml" file, which is packaged within the "wsp" solution file contains 2 "<File" elements. One file element represents the XAML file, and the other
    represents the WF association file. If the WSPublishState value for each "<File" element differ (one has a value of "3" and the other a value of "1"), the error will occur. For solving your problem, please update the WSPublishState value for both "<File"
    elements to “3”.
    PropertyName="WSPublishState"
    Value="3"
    Also note that the WSPublishState property is also duplicated within the "MetaInfo" property, so both occurrences should be updated. Then the resulting files need
    to be re-packaged into the template.
    Reference :
    http://social.technet.microsoft.com/Forums/en-us/be41f1c5-1dfb-4869-9a52-1c93902bfd91/microsoftworkflowclientactivitynotfoundexception-when-deploying-solution-with-workflow
    Please inform me freely if you have any questions.
    Thanks

  • How to Install and Configure Workflow For PO in Oracle Apps Version R12

    Hi,
    Please do let me know how to install and configure Workflow for Purchasing in Oracle Apps R12 Version.
    I want to the standard setup of workflow configuration for the PO.
    Thanks and Regards
    Srini

    Hi Suresh
    Only the latest version of WLP which is WLP 10.3.2 has facility to integrate with Oracle UCM with Adapaters. So make sure that you do have this latest version of WLP 10.3.2. Older versions like WLP 10.3 do not have this provision.
    Also I guess when you install and configure this Oracle UCM Adapater and choose above WLP Home, I guess these modules may be added in already installed WLP folders. I checked on my side for WLP 10.3.2 and I could NOT find the modules you mentioned. So most probably you may be missing some installation/configuration stuff from UCM side.
    Thanks
    Ravi Jegga

  • Issue with Workflow in a SharePoint-hosted App Application

    Hi,
    I have created a Sharepoint-hosted app which has a list workflow in it. After I deploy it to the sharepoint server,  I can not find any workflow under the associated list.
    However, I did have target list associated with workflow in workflow project property.  
    (My app and worflow is developed in VS 2012)
    I have searched the forum and found some similar question. However, all of them don't have useful answers.....
    Can anyone give me some help~?

    Hi Baron123,
    I can reproduce your scenario, that create an app with list, and add a workflow associates with it, the workflow is not working, that seems doesn’t associates successfully.
    Before I can tell why this happens, I found a helpful blog about keeping the list definitions and workflow definitions separate, use Handle APP installed event receiver to wire up a workflow to lists in app web or host web.
    As it is not a good solution to deploy the list and workflow in the same app solution, because that if you redeploy the app the date will be lost, the list will be new created, so I would suggest you to reference the blog, check whether this can meet your
    requirement.
    SharePoint Apps and Workflow:
    http://jonfancey.azurewebsites.net/2013/03/22/SharePointAppsAndWorkflow.aspx
    Thanks,
    Qiao Wei
    TechNet Community Support

  • I'm running10.8.5. I have tried to install a programme but can't because it is from an unidentified developer. the box says-Your security preferences allow installation of only apps from the Mac App Store and identified developers.how do i install the pro

    i'm running10.8.5. I have tried to install a programme but can't because it is from an unidentified developer. the box says-Your security preferences allow installation of only apps from the Mac App Store and identified developers.how do i install the programme

    macjack gave you the easiest solution. Need to have admin privilieges to change this option.

  • When I opened iweb it opened as a file I deleated. I have a published website with godaddy and would like to update. How can I open the existing iWeb app to the site that is already published?

    When I opened iweb it opened as a file I deleated. I have a published website with godaddy and would like to update. How can I open the existing iWeb app to the site that is already published?

    You cannot retrieve the already published site as iWeb CANNOT open it - it has no import facility.
    You need your domain.sites file, which you can find under User/Library/Application Support/iWeb/domain.sites.  You do not need any kind of account for this because it is your domain.sites file that resides on the hard drive of your Mac anyway.  Find this file and you can alter your website.
    Use a spotlight search to try and find it and if this does not work you can download something called Find Any File.  If you really can't find it, then you'll have to start from scratch because iWeb cannot open a site that is already published.

  • Gallery App identified as a threat

    I have the basic Verizon Support and Protection installed on my Maxx.  The scan just identified the Gallery App as a threat.  Malware that can Replicate itself hijack my device.  Send junk emails from my device. and a bunch of other things.  Has anyone else experienced this?

    Search is your friend:
    VSP is saying the gallery app is malware.

  • I'm trying to download adobe indesign but i'm getting a message that's saying "Install.app" can't be opened because it is from an unidentified developer. Your security preferences allow installation of only apps from the Mac App Store and identified devel

    I recently purchased adobe indesign I'm trying to download it but i'm getting a message that's saying “Install.app” can’t be opened because it is from an unidentified developer. Your security preferences allow installation of only apps from the Mac App Store and identified developers.

    System Preferences / Security & Privacy / General tab.
    Change the settings at the bottom half of the window.

  • When I open email or texting I am often sent to the Web to either the Playstore to look at a new app or some site that want me to choose some singles site to chat with chick avatar.  How do I remove this  - what? cookie?

    When I open email or texting I am often sent to the Web to either the Playstore to look at a new app or some site that want me to choose some singles site to chat with chick avatars.  How do I remove this  - what? cookie?

    I will try safe mode.
    I did download Ad Network Detector and opted out of JumpTap and AdMob.   Today I found more: MoPub and Millenial which I will opt out of.  I had previously opted out of Google Ads on the Cell phone but not on the net - so did that.  Allegedly it take time for the opt outs to reach the originators of these pop ups
    Thanks all for the suggestions - but not cleaned up yet.
    Verizon Wireless Customer Support <[email protected]> wrote:
    Verizon Wireless Customer Support  created the discussion
    "When I open email or texting I am often sent to the Web to either the Playstore to look at a new app or some site that want me to choose some singles site to chat with chick avatar.  How do I remove this  - what? cookie?"
    To view the discussion, visit: https://community.verizonwireless.com/message/1081202#1081202
    >

  • Cross-sites App parts using iFrames

    I have a wiki page library inside site collection A, now I can add an app part which display the latest modified items , as follow:-
    Now the problem is that I cannot do the same steps if I am inside site collection B , as the app parts are not available cross-sites. I read about the content search and content quesry web parts for cross-site references, but these two web parts lack the
    view settings where I can define setting such as:-
    So the approach I am thinking of:-
    To add the app part inside site A.
    Then inside site B using Iframe inside a code snippet, to reference the app part at site A.
    I tried doing so but this resulted in showing the whole page inside the iframe , what I need is to only display the app part’s related HTML inside the iframe.
    Can anyone advice about this please?
    Thanks

    App Parts are only available where the Apps are installed.  You need to install the App on Site Collection B in order to add the App part to the page.  In Site Collection B go to Site Contents and use the Company App catalog to add the
    app to the site.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.
    Sorry but i did not get your point, now i created a new test team site collection. but inside the site collection contents i can not find an App catalog . here is how Site Content and app contains:-

  • I miss some pages from My Notes APP duaring backup

    I miss some pages from my NOTES APP during backup

    Hi laurenfrommotown!
    I feel like the best option for you now will be to restore from any backups you may have in order to get that note back onto your iPhone. We have an article that talks about backups and how to restore from one, and it can be found right here:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/ht1766
    Keep in mind that if the note is stored on a sync server, such as Gmail or Yahoo!, it is likely to not be stored in the backup, and therefore, might not appear back onto your phone. Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Why" app.store"web site can't open?

    why can't use itunes in china?now,my ipad2 can't open "app.store"web site ? can't download program???I wish use chinese mandarin reply me,my mobile phone is 86 2818908235925,thank your sincere sevice!thank you very much!!!

    appstore is an app not a real web site
    even if it's all html then you have to use the app

  • I am Canadian. I apparently tried to download an app from the US app center but couldnt. Now I can't download or update any apps because I am still connected to the US site. When I try it says "change over to the Canadian site" but it doesnt shown me how.

    I am Canadian. I apparently tried to download an app from the US app center but couldnt. Now I can't download or update any apps because I am still connected to the US site. When I try it says "change over to the Canadian site" but it doesnt shown me how.

    You cannot use other countries itunes stores.
    You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country...

  • The LOVOO app has hijacked the app store on my ipad. Plus, it often redirects me to the hijacked app store when I'm in safari (from any number of anodyne sites). I've cleared history and cookies, and will now reboot the whole ipad. What permanent fix?

    The LOVOO app has hijacked the app store on my ipad. Plus, it often redirects me to the hijacked app store when I'm in safari (from any number of anodyne sites). I've cleared history and cookies, and will now reboot the whole ipad. What permanent fix?

    I have exactly the same problem with my iPod touch 5. The Lovoo application hijacks me to the App Store constantly. It is a nightmare. This is disgusting.

Maybe you are looking for

  • Editing events in Ical

    I saw that a similar question was posted, but no reply received, so here we go... I cannot right click and edit the information I put into my ICal - not an invitation, an event I set up myself (any, in fact). Ical version 3.0.5. Any help out there? I

  • My hd makes clicking noises...

    I just got the 30GB iPod video yesterday and I noticed at the start and finish of a video, and occasionally while playing music, the HD makes quite obvious clicking noises. The reason I'm worried is because I though HD's only make the noise of starti

  • Default Owner in A/R Invoice to change into creator

    Just to check is there anyway that I can have the default value of creator in the Owner field from of A/R Invoice copy from SO.

  • Crystal report misalignment

    I am facing a crystal report alignment issue in my web server. The Microsoft visual studio .net 2003 Enterprise was installed and application was tested and running fine in Jan 09. When we tested the application in March 09 again, the report printed

  • CANNOT RECORD REAL INSTRUMENT ON TO TRACK

    I need help with a sound recording issue. I have a Macbook, an M-box2 with Protools and Garage Band software. Recently i have had a challenge trying to figure out what went wrong and where. I've used my setup many times before but, all of a sudden, I