"A valid repository does not exist at the specified connection" when connecting

Hi all,
I'm using ODI 11g and Oracle Database 11g EE.
I've installed ODI without any errors, and chose to skip repository configuration during installation.
I created the Master and Work Repositories with the RCU that was provided in the same media pack as the ODI installation files.
After starting ODI, clicking "Connect To Repository..." and inputting the correct credentials I get the following error:
A valid repository does not exist at the specified connection...
http://pastie.org/pastes/8081847/text?key=grna09suyra4w0vgitbxiw
Has anyone had this error before, can anyone help?
Thanks!
Josh.

Josh,
Looks like the RCU did not create the repository in the intended schema for some reason. you can check the schema for the ODI tables (SNP_*) presence.

Similar Messages

  • Database does not exist in the specified path

    Just bought a USB 6009 DAQ and for some reason I now keep getting this error: "Database does not exist in the specified path" in VI Logger 2.0.1 it was working.  Can anyone help??

    Jared,
    It sounds like VI Logger somehow lost its association with its
    database. Please open MAX and check out the "Historical
    Data"->"Citadel 5 Universe" entry. Under "My Computer" in the
    right-hand pane, you should have a database called "VI Logger Data". It
    must be spelled, spaced, and capitalized the exact same way. If you do
    not have this database (which I suspect you do not), right click on "My
    Computer" and select "Create/Attach Database..." The default database
    path (if you want to have access to your old data) is C:\Documents and
    Settings\All Users\Application Data\National Instruments\VI Logger,
    with the database name as "VI Logger Data". If you want to create a new
    database, then specify a new path.
    If "VI Logger Data" does appear, a possible fix is to detach and
    reattach it. Right click on "VI Logger Data," select
    "Detach/Delete...," and chose the "Detach" option. Finally, reattach
    the database as described above.
    Hope this helps,
    Ryan Verret
    Product Marketing Engineer
    Signal Generators
    National Instruments

  • SSO App Config : 0xC0002A1C, The account name is not valid or does not exist.

    Hi there,
    We are using BizTalk Server 2010, I want to use the SSO to store and modify sensitive data. I am trying to automate through scripts the creation and updates of the SSO.
    So I used the sso manage to create the sso application where I want to store my data. Everything works fine. Then when I try to access the data
    I got the error :
    SSO AUDIT
     Function: GetConfigInfo (ConfigProperties)
     Tracking ID: 701b9529-a356-4bdd-ac63-d8152a838370
     Client Computer: <MyComputer> (SSOApp.exe:4508)
     Client User: <Domain>\<BizTalkUser>
     Application Name: <SsoApplication I just created with ssomanage>
     Error Code: 0xC0002A1C, The account name is not valid or does not exist.
    Check group membership failed.
     Group Name: <Domain>\<BizTalkUserGroup>
     Account Name: $ConfigStore$\ConfigProperties
     Additional Data: 533
     Error Code: 0xC0002A1C, The account name is not valid or does not exist.
    By googling I seem to be missing one step related to
    BTSScnSSOApplicationConfig.exe But I looked everywhere, I didn't know where to find this exe file. Do I have to download something? Where can I find it? was it renamed to something else?
    Thx for any help,
    Stefan

    Hello,
    I found finally the solution to my problem.
    You'll need to use the ssomanage and use the to
    BTSScnSSOApplicationConfig.exe found in the link mentionned previously.
    In order for it to work, a special attention needs to be paid to the AffiliateApplication.xml
    The contact XmlElement is important (it's not an email address as I used to think (smile))
    Regards,
    Reporting Solution for BizTalk |
    follow-us on twitter

  • [SOLVED] fatal: repository '' does not exist

    Ive written a nice little Python library for ADB and Fastboot and figured I would use the opportunity to create my first AUR package, however, Im having some (hopefully) minor issues.
    # Maintainer: Edvard Holst <edvard.holst at gmail>
    pkgname=python2-pyand-git
    pkgver=0.9.1.2
    pkgrel=3
    pkgdesc="A python wrapper library for ADB and Fastboot"
    arch=('any')
    url="https://github.com/Zyg0te/pyand"
    license=('MIT')
    depends=('python2' 'python-setuptools')
    makedepends=('git')
    source=('git+https://github.com/Zyg0te/pyand.git')
    md5sums=('SKIP')
    package() {
    msg "Connecting to github server...."
    if [[ -d $_gitname ]] ; then
    ( cd "$_gitname" && git pull origin )
    msg "The local files are updated."
    else
    git clone "$_gitroot" --depth=1
    fi
    msg "GIT checkout done or server timeout"
    cd "$_gitname/../../"
    sudo easy_install-2.7 pyand
    mkdir -p "$pkgdir/usr/share/licenses/$pkgname/"
    cd "src/$_gitname/"
    cp LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
    With this, I get the following error when installing..
    ==> Building and installing package
    ==> Making package: python2-pyand-git 0.9.1.2-3 (Wed Apr 2 14:34:27 CEST 2014)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Cloning pyand git repo...
    Cloning into bare repository '/tmp/yaourt-tmp-myuser/aur-python2-pyand-git/pyand'...
    remote: Reusing existing pack: 96, done.
    remote: Counting objects: 46, done.
    remote: Compressing objects: 100% (46/46), done.
    remote: Total 142 (delta 22), reused 0 (delta 0)
    Receiving objects: 100% (142/142), 28.61 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (65/65), done.
    Checking connectivity... done.
    ==> Validating source files with md5sums...
    pyand ... Skipped
    ==> Extracting sources...
    -> Creating working copy of pyand git repo...
    Cloning into 'pyand'...
    done.
    ==> Entering fakeroot environment...
    ==> Starting package()...
    ==> Connecting to github server....
    fatal: repository '' does not exist
    ==> ERROR: A failure occurred in package().
    Aborting...
    ==> ERROR: Makepkg was unable to build python2-pyand-git.
    Any ideas? And of course, any other feedback, suggestions, etc, is most welcome.
    Last edited by Zygote (2014-04-02 15:35:19)

    Further improvements can still be made. For example, you should still double quote all instances of $pkgdir and $srcdir.
    cd $srcdir/$pkgname/../
    Is completely redundant -- you always start in $srcdir, and that is a really odd way of getting to it even if you didn't.
    You should write a pkgver function to automatically update the pkgver value each time you run makepkg (explanation is in the wiki link I posted a few posts ago)
    I'll see if your packages 'builds' fine in a clean chroot when I get home. In the meantime, you could check your package+PKGBUILD with namcap to see if there are any other improvements you can make.
    The first thing I found was your pkgver doesn't work
    ==> Starting pkgver()...
    fatal: No names found, cannot describe anything.
    The repository doesn't have any tags, so git describe isn't very useful here. You would be better off using the final git example on the wiki page.
    The next problem I found, is that you haven't included the package that provides easy_install-2.7 in the makedepends array. You have, instead, declared the wrong package in the depends array. Note that packages with "python-" at the start of their name are actually python3 packages, whereas your package needs python2.
    The next thing I noticed is that you've included pacman as a dependency. You don't need to do that, you can assume that anyone installing the package has pacman installed, this is the Arch User Repository, after all.
    Finally, the completed package doesn't have any binary files in it, so nothing is compiled for a specific architecture. In this case, you can drop 'i686' and 'x86_64' from the arch array, and replace them with 'any'.
    A further point of interest, is that, what I assume to be the main python file, ADB.py, has a shebang calling /usr/bin/python. This may not be a problem if it isn't meant to be called directly, but will cause problems if it is, and expects to get python 2.x. On ARch, /usr/bin/python is a symbolic link to /usr/bin/python3. Ideally, this shebang should be replaced with '#!/usr/bin/python2', or even better '#!/usr/bin/env python2'. This should be done upstream, but can be done in the PKGBUILD, in a prepare function, using sed.
    If the script can be called with either python2 or python3, then the shebang doesn't need to change, and actually complies with PEP394.
    Last edited by WorMzy (2014-04-02 20:25:27)

  • Error: The plugin -65221 does not exist in the CMS

    Hi,
    I uploaded my Crystal Reports in the Business Objects InfoView. I can schedule them using the Schedule link but when I use the Reschedule link in the History and click on the paramater value, I' getting the following error:
    An error has occurred: The plugin -65221 does not exist in the CMS
    Did I miss a configuration? The source of the Crystal Report is a direct connection to the Oracle database. I also configured the Username and Password connection in the Business View tool.
    Thanks!

    Hi,
    I am not sure but I assume that the error has to do with the business views. Some component was not available in your repository and it was created when you imported the report using the CR Designer.
    It may also be the case that this error has been corrected in a newer service pack (SP5 is the latest SP for BOBJ XI R2) To be honest I could not match your case to any of the the corrections contained in SP4 and SP5 but this does not mean that the issue is not corrected.
    Regards,
    Stratos

  • 'ServerProperty' with 'Name' = 'Language' does not exist in the collection

    LS,
    One of my customers (using ssas 2012) is facing collation issues which result in missing facts in the cubes. I suggested them  to have a look at the Analysis Server Properties. Howevere, on selection of the Analysis Services Properties page 'Language-Collation',
    it doesn't open the page showing the properties, but instead the following message pops up:
    'ServerProperty' with 'Name' = 'Language' does not exist in the collection
    Any ideas on what could have caused this and how it can be fixed ?
    We're considereing a restart of the SSAS server, but need to be very carefull because it's their production environment.
    Appreciate your help,
    Kind regards,
    Cees
    Please remember to mark replies as answers or at least vote helpfull if they help and unmark them if they provide no help.

    I am also experiencing this error when clicking on the Language/Collation page of the Analysis Services Properties dialog.
    I suspect this is causing some other strange behavior such as an "invalid characters in hierarchy names" error when deploying an SSAS database, when the same solution/project can be deployed successfully from other machines. In that case, there are parenthesis
    in the attribute name but no user-defined hierarchies. Error:
    Errors in the metadata manager. The name, 'Project ID (Description)', for the cube hierarchy is not valid because this name is a reserved word, contains one or more invalid characters (.,;'`:/\*|?"&%$!+=()[]{}<>), or is longer than 100 characters.
    I would like to avoid having to re-install SSAS if at all possible. Any help is much appreciated.
    LB

  • Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID:

    Expert,
    I did the following steps to upgrade the OWB repository from 10g to 11g
    • Created a dummy workspace in the 11.2 repository
    • Created users in the destination environment
    • Run Repository Assistant against the 11.1 source database
    • Then selected *“Export entire repository to a file”* and selected the MDL(10g) to import
    After 99% of completing I have got the below error
    Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID: 65314
    Please let me know the solution.
    Thanks,
    Balaa...

    Hi I had the same error and worked on it for almost a week with no success but there is few work around for this try it it might work for you.
    Step 1>Run a health check on OWB 10.2 enviroment(make sure you clone your OWB 10.2 enviroment and then do this healthcheck ,these checks are tricky )
    refer
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    This will give you info about your missing ACL
    Step 2> download these two scripts fixLostACLContainer.sql ,fixAllACLContainers.sql
    please refer :
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    OWB 10.2 - Internal ERROR: Can not find the ACL container for object (Doc ID 460411.1)
    Note 754763.1 Repository Cleanup Script for OWB 10.2 and OWB 11.1
    Note 460411.1 Opening Map Returns Cannot find ACL Containter for Object
    Note 1165068.1 Internal Error: Can Not Find The ACL Containter For for object:CMPPhysical Object
    It might resolve this ACL issue but it did not work for me.
    If none of these work then
    Perform export from design center of OWB 10.2 and import through design center of OWB 11.2.(ONLY OPTION)
    It worked for me.
    Varun

  • Error in Test Connection - Content Repository does not exist

    Hi, I have created a content repository which points to our own external HTTP content server which is a DMS through transaction OAC0.
    In transaction CSADMIN I can see our server's status as running, still it shows yellow icon "customizing missing" in CSADMIN and in transaction OAC0 whenver I click "Test Connection" it gives the message" Content Repository does not exist". CMS 106.
    Kindly help.
    Regards
    Neha

    Hi,
    We are using OACO as follows:
    Choose Tools ® Business documents, Environment ® Knowledge Provider® KPro® Content Repositories
    Enter the following fields in the u201CChange Content Repositories : Detailu201D :-
    1) Content Rep. :- ZO (Content Repository Name)
    2) Description :- Content Repository
    3) Storage type :- HTTP content server.
    4) Version no :- 0045
    5) HTTP svr:p :- IP or machine name of application server on which DMS has been deployed : Web port of the application server on which DMS has been deployed.
    1) Program :- sap/sapDocView.jsp
    Save the created Content Repository by clicking on u201CSaveu201D. We are working on SAP 4.7 versionon a SAP development server and the content repository has not been transported after creation. Will not transporting be causing this error ?
    Please reward points
    Thanks
    Vikranth

  • Content repository does not exist

    Hi,
    Kindly see the way we are creating the SAP content repository pointing to an external content repository which is our own DMS server. Our server is returning the success status in CSAdmin.  But customizing is being shown as missing.
    When I click on Test Connection, then I get the error CMS 106 content repository does not exist.
    It seems as the content repository created by us is visible in the content repository list, entry is there in TOAAR table too, still somehow SAP system thinks that it doesnt exist. 
    We are working by logging into quality testing client.  Kindly suggest do we need to login into customizing client to solve this problem. And also suggest is transporting necessary to complete the content repository creation.
    Is it related to contentserver.ini file, do we need to see whether there's entry in it.
    Kindly help.
    With Regards
    Neha

    in customizing  of the archiving object is a field where you specify an indicator for the content repository.
    (go SARA -enter archiving object - click customizing button - click technial settings)
    As archiving objects are customized in DEV and transported to PRD systems,  here often an indicator for the DEV content repository is transported to PRD.
    But usually you dont have customizing for the DEV conentent repository in PRD to avoid that you write into the wrong content repository.

  • OTL Error - Hrs - Element link does not exist for the duration of the entry

    Hi,
    We had a few new people start just before xmas however when the person entering their record did it, they didn't date-track the additional assignment time information record to the start of the week (they did however correctly date-track their employee and assignment record) so when the timecard was filled in errors were thrown up.
    Since then I have gone back into the employees assignment time record, purged it and then re-created it effective from the week beginning.
    However when we try to enter time for them now using delegated self service, the following error is shown for the two days which were originally excluded from the date-tracked record:
    Hrs - Element link does not exist for the duration of the entry Cause: The link has been purged or date effectively deleted. Action: Check the effective start and end dates on the link definitions for this element. The original record should have been created from the 19th dec 2009 however was done from the 23rd by accident. I have since been in and replaced it with a record effective from the 19th.
    I have re-run the security list generation (we are using static list).
    The only thing I can find on metalink is 372086.1 which doesn't really describe the problem or help!!
    The people don't appear in the timekeeper form though which is strange. I really can't see any reason why their record isn't valid - no data is missing. Do I need to run a job to update the information or something?
    We are using 11.5.10.2
    Thankss

    Well would you believe it!? After much late night meddling around, I noticed one employee worked! There was absolutely no difference in any settings between his record and a persons who did not work. So I went into another employees record, changed his name and saved (correcting). Tried again and he worked fine! So, just by changing the employee name it seems to have worked for self service! I still cannot see them in timekeeper which is worrying however at least we can get time in for them now!
    If anyone knows why I may not be able to see them in timekeeper (even using an un-secured responsibility) then that would be a great help! :)

  • When I try to open Firefox, Google say the ULR does not exist on the website?

    I use Firefox and have the latest version. Currently when I try and open Firefox, Google posts and error message saying the 404 the ULR does not exist on the web. What do I need to do? In layman's terms please.

    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    If you use a bookmark then try to navigate to that page starting with the home page of the website (main domain) in case the bookmark is no longer valid.

  • Test Connection - Content Repository does not exist

    Hi,
    I have created a content repository which points to our own external HTTP content server which is a DMS through transaction OAC0.
    In transaction CSADMIN I can see our server's status as running, still it shows yellow icon "customizing missing" in CSADMIN and in transaction OAC0 whenever I click "Test Connection" it gives the message" Content Repository does not exist". CMS 106.
    Kindly help.
    Regards
    Neha

    Hi,
    We are using OACO as follows:
    Choose Tools ® Business documents, Environment ® Knowledge Provider® KPro® Content Repositories
    Enter the following fields in the u201CChange Content Repositories : Detailu201D :-
    1) Content Rep. :- ZO (Content Repository Name)
    2) Description :- Content Repository
    3) Storage type :- HTTP content server.
    4) Version no :- 0045
    5) HTTP svr:p :- IP or machine name of application server on which DMS has been deployed : Web port of the application server on which DMS has been deployed.
    1) Program :- sap/sapDocView.jsp
    Save the created Content Repository by clicking on u201CSaveu201D. We are working on SAP 4.7 versionon a SAP development server and the content repository has not been transported after creation. Will not transporting be causing this error ?
    Please reward points
    Thanks
    Vikranth

  • Document does not exist in the calender year 2006

    Hi,
    I am getting an error message while posting MIGO stating that "Document "XXXXXXXXX" does not exist in the calender year 2006" Please help to resolve this issue...
    Thanks in advance....
    Senthil Kumar

    Hi Senthil
    Try these steps
    Go to TCode SU01 ==> In that go to the change tab with your loging Name
    ==> go to Parameters tab ==> give Parameters MMPI_READ_NOTE with
    date
    format as YYYYMMDD (say today 20060612) and SAVE.
    Go to MMPI T-code and open the old periods which you want to post into,
    But one thing the period opening will be valid for only for the
    particular day only. After you complete the posting you have to close
    the periods through MMPV accordingly,
    Regards,
    Sachendra Singh

  • The name "Folder" does not exist in the namespace

     I am trying to learn Wpf and doing some of the examples on the Microsoft site. https://msdn.microsoft.com/en-us/library/vstudio/bb546972(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
    I am using Visual studio 2013. As I work through the example I am getting the following error. 
    Error 1
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    11 17
    FolderExplorer
    Error 2
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    16 7
    FolderExplorer
    Here is the code:
    <Window x:Class="MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:my="clr-namespace:FolderExplorer"
        Title="Folder Explorer" Height="350" Width="525">
        <Window.Resources>
            <ObjectDataProvider x:Key="RootFolderDataProvider" >
                <ObjectDataProvider.ObjectInstance>
                    <my:Folder FullPath="C:\"/>
                </ObjectDataProvider.ObjectInstance>
            </ObjectDataProvider>
            <HierarchicalDataTemplate 
       DataType    = "{x:Type my:Folder}"
                ItemsSource = "{Binding Path=SubFolders}">
                <TextBlock Text="{Binding Path=Name}" />
            </HierarchicalDataTemplate>
        </Window.Resources>
    I have a class file named Folder.vb with this code. 
    Public Class Folder
        Private _folder As DirectoryInfo
        Private _subFolders As ObservableCollection(Of Folder)
        Private _files As ObservableCollection(Of FileInfo)
        Public Sub New()
            Me.FullPath = "c:\"
        End Sub 'New
        Public ReadOnly Property Name() As String
            Get
                Return Me._folder.Name
            End Get
        End Property
        Public Property FullPath() As String
            Get
                Return Me._folder.FullName
            End Get
            Set(value As String)
                If Directory.Exists(value) Then
                    Me._folder = New DirectoryInfo(value)
                Else
                    Throw New ArgumentException("must exist", "fullPath")
                End If
            End Set
        End Property
        ReadOnly Property Files() As ObservableCollection(Of FileInfo)
            Get
                If Me._files Is Nothing Then
                    Me._files = New ObservableCollection(Of FileInfo)
                    Dim fi As FileInfo() = Me._folder.GetFiles()
                    Dim i As Integer
                    For i = 0 To fi.Length - 1
                        Me._files.Add(fi(i))
                    Next i
                End If
                Return Me._files
            End Get
        End Property
        ReadOnly Property SubFolders() As ObservableCollection(Of Folder)
            Get
                If Me._subFolders Is Nothing Then
                    Try
                        Me._subFolders = New ObservableCollection(Of Folder)
                        Dim di As DirectoryInfo() = Me._folder.GetDirectories()
                        Dim i As Integer
                        For i = 0 To di.Length - 1
                            Dim newFolder As New Folder()
                            newFolder.FullPath = di(i).FullName
                            Me._subFolders.Add(newFolder)
                        Next i
                    Catch ex As Exception
                        System.Diagnostics.Trace.WriteLine(ex.Message)
                    End Try
                End If
                Return Me._subFolders
            End Get
        End Property
    End Class
    Can someone explain what is happening. 
    Thanks Hal

    Did you try to build the application (Project->Build in Visual Studio) ? If the error doesn't go away then and you have no other compilation errors (if you do you need to fix these first), you should replace "FolderExplorer" with the namespace
    in which the Folder class resides. If you haven't explicitly declared a namespace, you will find the name of the default namespace under Project->Properties->Root namespace. Copy the value from this text box to your XAML:
    xmlns:my="clr-namespace:FolderExplorer"
    The default namespace is usually the same as the name of the application by default so if your application is called "FolderExplorer" you should be able to build it.
    If you cannot make it work then please upload a reproducable sample of your issue to OneDrive and post the link to it here for further help.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • The name '' does not exist in the current context

    I have a recurring problem where all of a sudden I can no longer see the values of my variables when I debug my unit tests. I cannot find a pattern as to when this happens but I experience this across one of every 20 tests that I write. Occasionally this
    has also happened during normal debbuging of running code on my machine. 
    I have included 2 screen shots. The first is when it is working. I have a break point set at the declaration of list of types. At this point all my variables are still reporting their values back to the debugger. Once I step over this to the next line (screen
    shot 2) I get the error message 'The name '[variable name]' does not exist in the current context'
    This problem is annoying me to no end. If anyone has any insight as to why this might be happening I would be very much appreciative.
    My Settings/Configuration
    Using Visual Studio 2013 Premium (Version 12.0.31101.00 Update 4)
    Projects are all set to Target Framework = .NET 4.5.1
    Resharper 9.1 is installed
    My active configuration is debug mode, Any CPU
    My PC is 64bit and so is the O/S windows 8.1
    All of my projects are also compiled and built in debug mode
    For all my projects configuration debug has the Optimize Code check box unchecked
    I am unit testing code in an outside project referenced by the unit testing project (standard unit test project setup)
    I make use of the latest version of NSubstitute in my tests although I do not think that would have any bearing on this issue
    I omitted the code following the error because it is not relevant. I had cut it out and replaced it with a Task.Delay(4) which resulted in the same issue. 
    What I have tried so far
    I have tried debugging the unit test  from Visual Studio Test Explorer instead of from Resharper with the same result.
    If I remove 2 items at the end of the array it starts to work again (so 6 items initialized instead of 8)
    I clean solution with rebuild has no effect
    Removing properties of the array also seems to work, example remove all initialization of property Value
    Mark as answer or vote as helpful if you find it useful | Igor

    Hi IWolbers,
    >>I have a recurring problem where all of a sudden I can no longer see the values of my variables when I debug my unit tests. I cannot find a pattern as to when this happens but I experience this across one of every 20 tests that I write. Occasionally
    this has also happened during normal debbuging of running code on my machine.
    So you mean that it worked well before, am I right? 
    If you debug the same app in other VS machine, does it work well? So we could make sure that whether it is related to the VS IDE.
    Please disable all add-ins in your VS IDE, and then reset your VS settings, debug it again.
    https://msdn.microsoft.com/en-us/library/ms247075(v=vs.100).aspx
    Or you could run your VS in safe mode, debug it again, at least, we could know that whether it is the add-in's issue.
    https://msdn.microsoft.com/en-us/library/ms241278.aspx
    To make sure that it is not the project files' issue, create a new blank solution, copy the project files to the new solution, clean and rebuild the solution, check the result.
    >>Once I step over this to the next line (screen shot 2) I get the error message 'The name '[variable name]' does not exist in the current context'
    How about debugging it with "Step Into" instead of "Step Over"? Or you could add breakpoints between 234 line to 241 line, after the breakpoint is hit, check the watch window again. How about the result?
    In addition, do you check other debugger window like local or others?
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for