Not able to configure BDC (Business Data connectivity )service in SharePoint 2012 Using Powershell Script

HI
Now there is an  issue while iam running powershell script for BDC service.
Below is the script i am using to configure BDC service.
Param(           
    [Parameter(Mandatory=$true,ValueFromPipeline=$true)]           
    [string]$ServiceName = $null,
    [Parameter(Mandatory=$true)]           
    [string]$ServiceProxyName = $null,
    [Parameter(Mandatory=$true)]           
    [string]$AppPoolAccount = $null,
    [Parameter(Mandatory=$true)]           
    [string]$AppPoolName = $null,
    [Parameter(Mandatory=$true)]           
    [string]$DatabaseServer = $null,
    [Parameter(Mandatory=$true)]           
    [string]$DatabaseName = $null
# check to ensure Microsoft.SharePoint.PowerShell is loaded if not using the SharePoint Management Shell
$snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
if ($snapin -eq $null) {
    Write-Host "Loading SharePoint Powershell Snapin"
    Add-PSSnapin "Microsoft.SharePoint.Powershell"
Write-Host "Successfully Sharepoint Powershell snapin Loaded"
Write-Host "Started executing Powershell script for configuring Business Data Connectivity Service in sharepoint farm ..."
Write-Host -ForegroundColor Yellow "Checking if Application Pool Accounts exists"
$AppPoolAccount = Get-SPManagedAccount -Identity $AppPoolAccount -EA 0
if($AppPoolAccount -eq $null)
Write-Host "Please supply the password for the Service Account..."
$AppPoolCred = Get-Credential $AppPoolAccount
$AppPoolAccount = New-SPManagedAccount -Credential $AppPoolCred -EA 0
Write-Host -ForegroundColor Yellow "Checking wether the Application Pool exists"
$AppPool = Get-SPServiceApplicationPool -Identity $AppPoolName -ErrorAction SilentlyContinue
if (!$AppPool)
Write-Host -ForegroundColor Green "Creating Application Pool"
$AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account $AppPoolAccount -Verbose
Write-Host -ForegroundColor Yellow "Checking if BDC Service Application exists"
$ServiceApplication = Get-SPServiceApplication -Name $ServiceName -ErrorAction SilentlyContinue
if (!$ServiceApplication)
Write-Host -ForegroundColor Green "Creating BDC Service Application"
$ServiceApplication = New-SPBusinessDataCatalogServiceApplication –ApplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer $DatabaseServer –Name $ServiceName
Write-Host -ForegroundColor Yellow "Starting the BDC Service"
#$ServiceInstance = Get-SPServiceInstance | Where-Object { $_.TypeName -like "BDC Service*" }
#Start-SPServiceInstance $ServiceInstance
Get-SPServiceInstance | where-object {$_.DisplayName -eq $ServiceName} | Start-SPServiceInstance > $null
Write-Host -ForegroundColor Green "Done - BDC Service is up and running."
Error i am getting ->
Started executing Powershell script for configuring Business Data Connectivity S
ervice in sharepoint farm ...
Checking if Application Pool Accounts exists
Checking wether the Application Pool exists
Creating Application Pool
VERBOSE: Leaving BeginProcessing Method of New-SPServiceApplicationPool.
New-SPServiceApplicationPool : The trust relationship between the primary
domain and the trusted domain failed.
At C:\SP2013Service\BDC1.ps1:67 char:12
+ $AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account
$AppPoolAcco ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
    + CategoryInfo          : InvalidData: (Microsoft.Share...ApplicationPool:
   SPCmdletNewIisWebServiceApplicationPool) [New-SPServiceApplicationPool], S 
  ystemException
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewIisWe
   bServiceApplicationPool
VERBOSE: Leaving ProcessRecord Method of New-SPServiceApplicationPool.
VERBOSE: Leaving EndProcessing Method of New-SPServiceApplicationPool.
Checking if BDC Service Application exists
Creating BDC Service Application
New-SPBusinessDataCatalogServiceApplication : Cannot bind argument to
parameter 'ApplicationPool' because it is null.
At C:\SP2013Service\BDC1.ps1:75 char:84
+ ... pplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer
$DatabaseSer ...
+                    ~~~~~~~~
    + CategoryInfo          : InvalidData: (:) [New-SPBusinessD...viceApplicat
   ion], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,M
   icrosoft.SharePoint.BusinessData.SharedService.SPNewBusinessDataCatalogSer 
  viceApplication

hi guys,
same script i have modified with parametes,in below script i have hard corded values for parameters,and it is executing without errors.
Below is script executing without error->
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Settings
$ServiceName = "BDC Service"
$ServiceProxyName = "BDC Proxy"
$AppPoolAccount = "DOMAIN\USERNAME"
$AppPoolName = "BDC SP Ser App Pool"
$DatabaseServer = "SPSQL"
$DatabaseName = "SP2013 BDC"
Write-Host -ForegroundColor Yellow "Checking if Application Pool Accounts exists"
$AppPoolAccount = Get-SPManagedAccount -Identity $AppPoolAccount -EA 0
if($AppPoolAccount -eq $null)
Write-Host "Please supply the password for the Service Account..."
$AppPoolCred = Get-Credential $AppPoolAccount
$AppPoolAccount = New-SPManagedAccount -Credential $AppPoolCred -EA 0
Write-Host -ForegroundColor Yellow "Checking wether the Application Pool exists"
$AppPool = Get-SPServiceApplicationPool -Identity $AppPoolName -ErrorAction SilentlyContinue
if (!$AppPool)
Write-Host -ForegroundColor Green "Creating Application Pool"
$AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account $AppPoolAccount -Verbose
Write-Host -ForegroundColor Yellow "Checking if BDC Service Application exists"
$ServiceApplication = Get-SPServiceApplication -Name $ServiceName -ErrorAction SilentlyContinue
if (!$ServiceApplication)
Write-Host -ForegroundColor Green "Creating BDC Service Application"
$ServiceApplication = New-SPBusinessDataCatalogServiceApplication –ApplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer $DatabaseServer –Name $ServiceName
Write-Host -ForegroundColor Yellow "Starting the BDC Service"
#$ServiceInstance = Get-SPServiceInstance | Where-Object { $_.TypeName -like "BDC Service*" }
#Start-SPServiceInstance $ServiceInstance
Get-SPServiceInstance | where-object {$_.DisplayName -eq $ServiceName} | Start-SPServiceInstance > $null
Write-Host -ForegroundColor Green "Done - BDC Service is up and running."
if any body want need more information please can u respond me to
Email id:[email protected]

Similar Messages

  • Error when click Manage in Business Data Connectivity Service Sharepoint 2013

    Dear all,
    In Sharepoint central administration, I click manage service applications. Then, I click New > Business Data Connectivity Service. After create new Business Data Connectivity Service, when I click Manage to manage this new Business Data Connectivity Service,
    there is error "Cannot complete this action as the Business Data Connectivity Shared Service is not responding. Please contact your administrator." In event viewer, there is error ""The BDC Service application is not accessible. The full
    exception text is : The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'.
    I have tried to delete and create the BDC Service application, but it still did not work. I have tried to restart BDC Service and do iisreset, but it still did not work.
    Please help. Thank you.
    Best regards,
    Johanna

    Hi,
    According to your post, my understanding is that you get an issue about the Business Data Connectivity Service.
    To quickly and accurately find the issue, I recommend you can check the event log and ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Access denied by Business Data Connectivity when trying to add myself to the BDC Metadata Store

    Originally I was trying to create a ECT in SharePoint Designer 2010, on the production server, and every attempt fails with the error "Access denied by Business Data Connector" and I found the post "Deploying a BDC Model project to SharePoint 2010"
    which suggests that I may not have rights to the BCD Metadata Store: "It seems that an account are you using to deploy solution doesn't have sufficient permission in the BDC Metadata Store."
    So I tried to set myself (individual windows user) up to have rights via:  "Central Administration->Application Management->Manage Service Application->Business Data Connectivity Service->Click Set Metada Store Permission
    on the ribbon->Set Permission you need and tick the checkbox "Propagate permission to all"; and pressing the OK button an error dialog displays stating Access denied by Business Data Connectivity.
    What should I check next?

    I'm in a situation similar to MarkDavisHQ's.  I was able to get the Metadata Store working by:
    Making the BDC app pool identity a local administrator (before that, I was seeing lots of WcfSendRequeust like this in the logs - but I'm still not sure this escalation was necessary.   I have since removed the app pool identity from local administrators
    and it ):
    Starting the (SharePoint) Claims to Windows Token Service
    Can anyone else confirm whether or not local admin privileges are required?
    For those who may be stuck at a similar spot,  here are the log excerpts that helped me.
    Before I changed the local admin membership, this was appearing in the logs:
    04/22/2012 15:03:26.62    w3wp.exe (0x0FFC)    0x0DF4    SharePoint Foundation    Runtime    tkau    Unexpected    Microsoft.BusinessData.Infrastructure.AccessDeniedException:
    Access denied by Business Data Connectivity.    at Microsoft.SharePoint.BusinessData.SharedService.BdcServiceApplicationProxy.Execute[T](String operationName, UInt32 maxRunningTime, ExecuteDelegate`1 operation, Boolean performCanaryCheck, Boolean
    isChannelThatDelegatesIdentity)     at Microsoft.SharePoint.BusinessData.SharedService.BdcServiceApplicationProxy.SetAccessControlEntries(MetadataObjectStruct metadataObjectStruct, AccessControlEntryStruct[] aces, String settingId)    
    at Microsoft.SharePoint.BusinessData.Infrastructure.BdcAccessControlList.SaveAs(MetadataObjectStruct metadataObjectStruct, String settingId, BdcServiceApplicationProxy serviceProxy)     at Microsoft.SharePoint.BusinessData.Administration.IndividuallySecurableMetadataObject.SetAccessControlList(IAccessControlList
    acl, String settingId)     at Microsoft.SharePoint.ApplicationPages.ManageBDCPermissions.OkButton_Click(Object sender, EventArgs e)     at System.EventHandler.Invoke(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 includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    c448101d-363b-4e70-bac4-3ffb0c3313dc
    After I changed the membership, I hit this one (which was resolved by starting the Claims to Windows Token Service ):
    04/22/2012 21:50:44.54    w3wp.exe (0x1030)    0x0CF4    SharePoint Foundation    Claims Authentication    bz7l    Medium    SPSecurityContext.WindowsIdentity:
    Could not retrieve a valid windows identity for NTName='XYZDEV1\e-hugh.kelley', UPN='[email protected]'. UPN is required when Kerberos constrained delegation is used. Exception: System.ServiceModel.EndpointNotFoundException: There was no endpoint listening
    at net.pipe://localhost/s4u/022694f3-9fbd-422b-b4b2-312e25dae2a2 that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. ---> System.IO.PipeException: The pipe endpoint
    'net.pipe://localhost/s4u/022694f3-9fbd-422b-b4b2-312e25dae2a2' could not be found on your local machine.      --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.PipeConnectionInitiator.GetPipeName(Uri
    uri)     at System.ServiceModel.Channels.NamedPipeConnectionPoolRegistry.NamedPipeConnectionPool.GetPoolKey(EndpointAddress address, Uri via)     at System.ServiceModel.Channels.CommunicationPool`2.TakeConnection(EndpointAddress
    address, Uri via, TimeSpan timeout, TKey& key)     at System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)     at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan
    timeout)     at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)     at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan
    timeout)     at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)     at System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)    
    at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage
    methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
    reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)     at Microsoft.IdentityModel.WindowsTokenService.S4UClient.IS4UService_dup.UpnLogon(String
    upn, Int32 pid)     at Microsoft.IdentityModel.WindowsTokenService.S4UClient.<>c__DisplayClass1.<UpnLogon>b__0(IS4UService_dup channel)     at Microsoft.IdentityModel.WindowsTokenService.S4UClient.CallService(Func`2
    contractOperation)     at Microsoft.SharePoint.SPSecurityContext.GetWindowsIdentity().    090b18ec-3a6f-4367-a74b-b6a113a62507
    04/22/2012 21:50:44.54    w3wp.exe (0x1030)    0x0CF4    SharePoint Foundation    Claims Authentication    g220    Unexpected    No windows identity
    for xyzdev1\e-hugh.kelley.    090b18ec-3a6f-4367-a74b-b6a113a62507

  • "Access denied by Business Data Connectivity" on trying to connect to SQL server for creating external content type

    I was trying to create external client type but whenever I try to connect to Database server it is showing me error"Access denied by Business Data Connectivity". I have given the Secure Store Target Application ID coorectly and it is setup coorectly.
    In BDC service application I have given myself all the permissions( edit,execute,Selectable in clients,Set Permissions) through set metadata store permission option in it.
    Please suggest what other reason can be there for the error.
    Thanks and Regards
    Gaurav

    Hi Gaurav,
    If you have given your account all permissions through setting metadata store permission, the issue should be resolved.
    For a better trouble shooting , I suggest you do as the followings:
    1. Assign administrators to a Business Data Connectivity service application
    Here is a detailed article for your reference:
    http://technet.microsoft.com/en-us/library/ff973113.aspx
    2. You can try to recreate a Business Data Connectivity service application to test whether it works.
    http://www.dotnetcurry.com/showarticle.aspx?ID=794
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • Business Data Connectivity Metadata Store is currently unavailable for users but not administrator

    Hello,
    We have a SharePoint 2013 Enterprise Multi Tenant deployment. Our customers Site Collection Administrators can not create external content types in SharePoint Designer 2013.
    When clicking on "External Content Types" in the menu they are getting the message "The Business Data Connectivity Metadata Store is currently unavailable." but users are still able to click on "External Content Type" in the "New"
    section of the ribbon. However, when doing that the are getting throwed another error message: "The remote server returned an error: (401) Unauthorized."
    When logged in as the Active Directory Administrator via SharePoint Designer on one of the Site Collections everything works as it should.
    It seems that there is some permissions missing but I can not figure out how to set this properly for the site users. I have tried to add users as administrators at both the Managed Metadata Store Applications and the Business Data Connectivity Application
    with no result. I have also added the users with permissions on the Managed Metadata Store via the Tenant Administration panel for each site.
    I would need this to work, and when it works I need to set the required permissions programatically via Powershell when provisioning sites and users.

    Hi Anders,
    Thanks for posting your issue here, Kindly check out the details in below mentioned URLs to fix this issue. 
    http://www.c-sharpcorner.com/UploadFile/anavijai/the-business-data-connectivity-metadata-store-is-currently-u/
    http://blogs.technet.com/b/namkh/archive/2013/04/18/quot-the-business-data-connectivity-metadata-store-is-currently-unavailable.aspx
    I hope this is helpful to you. If this works, Please mark it as Answered. 
    Regards, 
    Dharmendra Singh (MCPD-EA | MCTS) 
    Blog :
    http://sharepoint-community.net/profile/DharmendraSingh

  • External content type error: Business Data Connectivity object not found.

    Hello
    I have to change the external database (external system) for an external content type. The database view on the new database is exactly the same as on the old database.
    After changing the external system of the external content type, this happens:
    When I try to add a new item to the list, I get this error under the external data field:
    "Business Data Connectivity object not found. Administrators, see the server log for more information."
    Also, when I try to update the external data field, it is not possible because the buttons are grey.
    When I add a new external data field to the same list, I can use the external content type. For some reason the current external data field doesn't update.
    Any ideas?
    Any help would be much appreciated!

    Have you implemented both ‘Read List’ & ‘Read Item’ operations in your ECT?
    This may be helpful -
    https://sharepointcreations.wordpress.com/2014/03/13/business-data-connectivity-object-not-found/
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Error while crawling LOB contents. ( Access denied by Business Data Connectivity. )

    Hi,
    When I execute Incremental or Full Crawl I get 17000 error and only 1 success.
    The error is:
    Error while crawling LOB contents. ( Access denied by Business Data Connectivity. )
    I went to Central Admin > Security > Specify Web application Policy > Search for the service account for crawl and it's "svc_SPSearch"
    I went to Central Admin > Application Management > Manage Service Application > BDC Service > I select all the affected external sources > then Set Object Permission in ribbon > Added "svc_SPSearch" with execute rights > then
     kick incremental crawl...
    After this I still get 17000 error, 1 success.. Still an error.
    I am not sure how the crawler's trust to FAST infrastructure works.
    Your response is appreciated. Thanks!
    -Fran

    I have the same issue. 
    I have Configured the BDC Service application using SQL external content. The connection was successful and I am able to see the external content in the List "BDC Demo" . But when I search in the BDC Demo site it gives nothing.
    So I checked in the crawl logs and identified that it shows " 1 " under error. to further drill down the issue , I went to click on "1" and see the error message : Error while crawling LOB contents SharePoint 2013 .
    I have created an external DB named BCSDemo_DB for which I have granted my search Service account read& write permission.
    I have added the same account under administrators for both secure store and BCS service applications. 
    I have done index reset , done a full crawl but the error still occurs.
    Can someone please advise if I am missing something.
    Regards

  • Business Data Connectivity Store is currently unavailable

    Hello,
    A couple of months ago i started a thread regarding Business Data Connectivity Store and that our tenants could not manage External Content Types via SharePoint Designer. I cannot reply to this thread anymore, so Im starting a new since the issue is still present.
    https://social.msdn.microsoft.com/Forums/office/en-US/dbbfa362-d756-478d-87c8-4ee5831d5827/business-data-connectivity-metadata-store-is-currently-unavailable-for-users-but-not-administrator?forum=sharepointcustomization#dbbfa362-d756-478d-87c8-4ee5831d5827
    A few updates:
    - Were having a multi tenant setup of SharePoint 2013 so the Business Connectivity Data Service is partitioned and the permissions is managed by each site collection administrator at the the Tenant Administration site (usually located at <site-url>/admin/).
    - The Active Directory administrator can log in to each site via SharePoint Designer (SPD) and manage external content types so there is nothing wrong with the version of SPD or bindings for the site collections. We are using SNI for SSL certificates on a single
    IP but this is not a problem.
    - We have logged on to the Tenant Administration site with for a tenant site collection and added users to the Metadata Store so now we can manually import a BDC Model to the site, but we are still not able to use SPD to manage this. Our tenants demand this
    to work.
    How can we get further with this issue?

    Hi Anders,
    Based on your description, I recommend to verify the things below:
    1.  Make sure that the users are added to the Set Metadata Store Permissions.
    2.  Clear SharePoint Designer cache and then check the results.
    http://www.c-sharpcorner.com/UploadFile/sagarp/how-to-clear-your-sharepoint-designer-20102013-cache/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • An internal database error occurred in the Business Data Connectivity Shared Service. SQL Error Number : 229

     Recently i upgraded my SharePoint server 2013 to SP1, after the upgrade i received following message in manage database Status page " Databases running in compatibility range, upgrade recommended" 
    for Business Data Connectivity Database. Then i ran Sharepoint Configuration wizard, which fixed that error on that page but i am getting a error message while accessing BDCApplication page in manage service applications pagein central admin"
    An internal database error occurred in the Business Data Connectivity Shared Service. SQL Error Number : 229
    Sys Log :
    The BDC Service application failed due to a SQL Exception: SQLServer host WSQLD05\DV. The error returned was: 'The EXECUTE permission was denied on the object 'proc_ar_GetAdministrationMetadataCatalogByPartitionId', database 'sp_BusinessDataConnectivity_DV13',
    schema 'dbo'.'
    I checked the Db role of the service app pool account, it has SPDataAccess permission over the Database. i cant recreate another application without knowing the root cause. I hope i can get better option to troubleshoot the issue.
    Thank you

    As per the error message, you can at least grant the BDC service application pool account the EXECUTE perimssions on the sp_BusinessDataConnectivity_DV13 database
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • I am not able to see the Business area in Discoverer desktop

    Hi,
    r
    I am new to Discoverer
    I have created a business area in EUL with user name and password as dewip/dewip in Discoverer administrator and now when I am logging in to Discoverer Desktop with the same user name and password to create workbook I am able to log in but I am not able to find the Business area in the Discoverer desktop.
    After creating the business area do we need to do anything ( We don't even have save option to save also).
    In Discoverer admin -> tools-> privilages I checked to see the privilages for this user ,but I could not see this user name(dewip) only.
    Please help me ,its urgent.
    Thanks,
    gsr

    Hi gsr
    If you are working on Desktop and you change the default EUL but it doesn't stick this means that you don't have Admin rights over your machine.
    In order to make these setting stick you need to have permission to update the system registry.
    If you really cannot be given these rights then I suggest you ask you system admin to change the registry setting for you on your machine so that it reflects the correct EUL. You will find it here:
    1. From the Start button, use Run | regedit
    2. Open your registry to display HKEY_CURRENT_USER | Software | Oracle | Discoverer 10
    3. Expand the folder called Database
    4. Inside here you will see one set of settings that begin with AEUL and another with UEL. The format is like this:
    AEUL_username_database and UEUL_username_database
    5. You should see the name of the default EUL in the column called Data
    6. Right-click on the setting you want to change and from the pop-up select Modify
    7. Type the name of the EUL that Desktop should default to for that user in the database, making sure you type it in UPPERCASE
    8. Click the OK button
    9. Close the registry
    When you now connect to Discoverer Desktop you should be in the correct EUL.
    Note: this is only required if you don't have admin rights on your PC. If you do have admin rights then Discoverer will set this for itself.
    By the way, if you or anyone reading this is unsure about manually editing your registry you should back it up first. Here are the steps:
    To backup your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Export Registry File
    5. When the Export Registry File dialog box opens, give a name to the file you want the registry to be saved as
    6. In Export Range, check "All" or "Selected Branch" - Selected Branch will export the current folder, so if you happen to have already navigated down tp the appropriate Discoverer Administrator folder you will be able to back it up
    7. Click the Save button
    8. Close the registry editor
    To restore your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Import Registry File
    5. Navigate to the folder in which your registry is saved and locate the file
    6. Click the Open button - the registry will be restored
    7. Close the registry editor
    Best wishes
    Michael

  • Cannot connect to Business Data Connectivity Metadata Store

    I am trying to connect to an external data source (web service) that is hosted on another server through SharePoint designer.
    I go to the external content type section->new content type-> External system "click here to discover external data sources and define operations"
    Add connection->data source type ="wcf service"
    enter url in the "service metadata url" and "service endpoint url"
    Try to connect. While trying to connect, it gives me this error
    "Cannot connect to Business Data Connectivity Metadata Store"
    error details: "The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults(either from ServiceBehaviorAttribute or from the <serviceDebug> configuration
    behavior) on the service in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK  documentation and inspect the server trace logs."
    Any help would be greatly appreciated.

    Hello.
    This solution with New-SPTrustedRootAuthority helped me in the following situation (which is like the one in the topic):
    I have a WCF service hosted on the SharePoint web site with dynamic binding. SharePoint web site is configured with host header (DNS alias) and SSL. Kerberous is enabled (this config does not work with NTLM only). I use Secure Store Service identity (Windows
    type) when configuring BSC connection to the service. When I try to connect to this WCF service from SharePoint Designer to create an external content type, I get this errror: "Cannot connect to Business Data Connectivity Metadata Store".
    These two steps resolved the issue:
    1) Add SSL certificate of the web site where WCF service is hosted to the "Trusted Root Certification Authorities" of "Certificates (Local Computer)"
    2) Run the following command in SharePoint PowerShell console:
    foreach ($cert in (Get-ChildItem cert:\LocalMachine\Root)) { if (!$cert.HasPrivateKey) {New-SPTrustedRootAuthority -Name $cert.Thumbprint -Certificate $cert } }

  • HT1414 just got iPad 3.. not able to configure

    just got iPad 3.. not able to configure.. not able to connect to WiFi, at my location WiFi network exists with proxy settings.. pls Help

    I'd talk to your school tech support and see what settings they have in place. For example, I can't access my work's e-mail via the exchange app but I can via the web access...largely because it's not a work iPad and they won't allow that kind of access on a device that's not 'their own'

  • Iphone is not detecting network after updating, i m not able to configure it

    my iphone is not detecting network after updating, i m not able to configure it

    To answer your question there, are you unable to connect to cellular internet (using a SIM or WiFi?

  • Re: Dynadock not able to configure properly external monitor

    Dear Sir/Madam,
    I found a problem with my Dynadock (PA3541EY1PRP) in terms that it is not able to configure properly the monitor (LG Flatron E2250V-PN).
    I would make clear that my PC is working under win 7 64bit.
    Thanks oodles for your support.
    Regards
    MAx

    ok,
    when I connect VGA cable to the dynadock, external monitor apperas to be in low resolution.
    Checking in the "screen resolution", windows shows "no monitor" (can I attach a file to show the screenshot?) and the maximum resolution is set at 1440X900. Therefore, I am forced to connect directly the external monitor to the pc. In this case the monitor is properly recognized as "VGA monitor" and the resolution appears to be rightly set at 1920X1080.
    thanks

  • Not able to configure SSH

    Hi,
    I'm using 1841 router.My question is I'm not able to configure SSH in this router ,Any IOS problem?
    Sh version
    Cisco IOS Software, 1841 Software (C1841-IPBASE-M), Version 12.4(1c), RELEASE SO
    FTWARE (fc1)

    Hi Karthick
    You are currently running IP BASE Feature Set ios on your router you need to upgrade the same to Advanced Security Services or SP Services Feature set to have SSH support in your router..
    http://www.cisco.com/en/US/products/sw/iosswrel/ps5460/index.html
    regds

Maybe you are looking for