Dear All
Following are the steps for the
After this setup if you got the error for the
Following are the steps for the
After this setup if you got the error for the
"Access denied by Business Data Connectivity error for anonymous users when accesing external list"
You need to follow the following steps
This is because the user doesn't have the permission to the external content type.
How to resolve:
- Open Central Administration.
- Click on Manage service applications which is available in the Service Applications section.
- Click on Business Conectivity service application.
- Select the external content type, click on Set Permissions in the ECB menu.
- Add the user and then click on Add.
- Give the permissions for the user and click on Ok.
- Now navigate to the external list you will be able to see the data in the list.
After that if you face a problem with the “Login failed for user "NT AUTHORITY\ANONYMOUS LOGON" while browsing to external list.”
To resolve it following script need be write
$bdc = Get-SPServiceApplication | where {$_ -match "Business Data Connectivity Service"}
$bdc.RevertToSelfAllowed
$bdc.RevertToSelfAllowed = $true
$bdc.Update()
and update the connection database to BDC in external content via sharepoint
Below Connection properties -> Select Client -> Below Secure Store Application ID -> Select BDC Identity.
Below Connection properties -> Select Default-> Below Secure Store Application ID -> Select BDC Identity.
Comments
Post a Comment