SCOM 2012 Install: Second MS blank drop down on DB name

I sucessfully configured my SCOM 2012 enviroment but when trying to add a second MS I get a blank drop down in the database name under "configure the operational database". I can connect succesfully to the sql server and instance in the install wizard
as well as creating a test ODBC connection to the Operations Manager DB. The SQL server 2008 has been installed with the collation of SQL_Latin1_General_CP1_CI_AS and all the prereq checks pass. 

Never mind I fixed it. A scom agent was installed on the server and was removed  but was not deleted from SCOM
console.

Similar Messages

  • Cascading Select Statements - problem with blank drop-downs

    Hello,
    I have posted a number of questions about Cascading Select Statements in APEX and though I've received some good information, I still get a blank drop-down when I select the first LOV.
    I also found "How to test an On-Demand Process used for AJAX" on the web. Here is the link to the web page:
    http://www.inside-oracle-apex.com/2006/12/how-to-test-on-demand-process.html
    When I try to test the ON-DEMAND Application Process in the Address Bar of my browser by typing the following, I get an error:
    http://beta.biztech.net:2020/pls/apex/f?p=4000:0:211233229176642:APPLICATION_PROCESS=CASCADING_SELECT_LIST:::P6_PROJECT_ID:CASCADING_SELECTLIST_ITEM_1
    The error I get is:
    Unexpected error, unable to find item name at application or page level.
    ERR-1002 Unable to find item ID for item "P6_PROJECT_ID" in application "4000".
    As perhaps a last ditch effort, I will post all the steps, all the code and a link to my application.
    Here is a link you can visit to view my application:
    http://beta.biztech.net:2020/pls/apex/f?p=112:1
    You can log in with the following ID and Password
    ID: tsimkiss
    PW: TS92
    Here are the steps that I have followed and the code that I have used.
    ++++++++++++++++++++++++++++++++++++++++++++++++++
    1. Create an application process in Shared Components
    - On Demand CASCADING_SELECT_LIST - like this:
    Process Point: On Demand
    Name: CASCADING_SELECT_LIST
    TYPE: PL/SQL Anonymous Block
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 1 || '">' || '- select tasks -' || '</option>');
    FOR c IN (SELECT newops.task_name AS task_name,
    newops.task_id AS task_id
    FROM NEW_OPPORTUNITIES newops
    UNION
    SELECT DISTINCT pt.task_name AS task_name,
    pt.task_id AS task_id
    FROM pa_tasks@bizdev pt,
    pa.pa_projects_all@bizdev prj
    WHERE prj.project_id = pt.project_id
    AND prj.project_id =
    CASE
    WHEN TO_NUMBER(:cascading_selectlist_item_1)=1
    THEN prj.project_id
    ELSE TO_NUMBER(:cascading_selectlist_item_1)
    END)
    LOOP
    HTP.prn ('<option value="' || c.task_id || '">' || c.task_name || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    2. Create an application item in Shared Components:
    Name: CASCADING_SELECTLIST_ITEM_1
    3. Create an LOV in Shared Components
    - This is the Primary LOV (name it similar to it's select list page item):
    List of Values Name: PROJECT_ID
    Source: Lists of Values Query
    SELECT newops.CLIENT AS project_name, newops.PROJECT_ID AS project_id FROM NEW_OPPORTUNITIES newops
    UNION
    SELECT ppa.NAME AS project_name, ppa.PROJECT_ID AS project_id FROM pa.pa_projects_all@bizdev ppa
    WHERE ppa.project_status_code='APPROVED'
    AND (ppa.COMPLETION_DATE IS NULL or ppa.completion_date > sysdate)
    AND (ppa.CLOSED_DATE IS NULL or ppa.closed_date > sysdate)
    ORDER BY project_name asc
    4. Create a javascript and put it in the header of the page where cascading drop-downs are:
    <script>
    function get_select_list_xml(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    5. Create two Select List page items:
    P6_PROJECT_ID <-- This is the primary drop-down
    P6_TASK_ID <-- This is the secondary drop-down
    6. In your primary select list, put the following into HTML Form Element Attributes:
    HTML Form Element Attributes: onchange="get_select_list_xml(this,'P6_TASK_ID')"
    Other settings on the page:
    Name: P6_PROJECT_ID
    Display As: Select List
    Source Used: Always, replacing any existing values in session state
    Source Type: Database Column
    Source value or expression: PROJECT_ID
    Named LOV: PROJECT_ID <--- Choose from drop-down (this is the Application LOV created earlier)
    Null display values: - select project -
    Display Null: Yes
    7. The second select list is based on an LOV and depends on the value of the first select list:
    Name: P6_TASK_ID
    Display As: Select List
    Source Used: Always, replacing any existing values in session state
    Source Type: Database Column
    Source value or expression: TASK_ID
    Null display values: - select project -
    Display Null: Yes
    List of values definition:
    SELECT newops.task_name AS task_name,
    newops.task_id AS task_id
    FROM NEW_OPPORTUNITIES newops
    UNION
    SELECT DISTINCT pt.task_name AS task_name,
    pt.task_id AS task_id
    FROM pa_tasks@bizdev pt,
    pa.pa_projects_all@bizdev prj
    WHERE prj.project_id=pt.project_id
    AND prj.project_id=:P6_PROJECT_ID
    ORDER BY task_name asc
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    If you need an actual running copy of my application, I'm not sure I can upload to the Oracle APEX website since uses datalinks to some tables. If necessary, I will give you my login into if you email me directly, however.
    If someone could just straighten my code out especially on the ON-DEMAND Application Process, I think that would really help me out.
    Hope someone out there can help me.
    Thanks
    LEH

    Sorry, looking at your code that testing URL is still incorrect. You should be passing name / value pairs in the last arguments, and your passing P6_PROJECT_ID as the name part and CASCADING_SELECTLIST_1 as the value part. In your application process you are using CASCADING_SELECTLIST_1 as the parent ID for the P6_TASK_ID dropdown, so it is this name / value pair that you'll need to test. So your URL should look something like this...
    http://beta.biztech.net:2020/pls/apex/f?p=112:0:211233229176642:APPLICATION_PROCESS=CASCADING_SELECT_LIST:::CASCADING_SELECTLIST_ITEM_1:[some project id]
    (Note: Where [some project id] should be an ID for a project in your database, that has tasks.)
    And I'm with Dan here, I still can't access that link you provided. apex.oracle.com should be your next move if you can't resolve it, as you've got at least two people willing to go and have a look at your code.
    Hope it helps,
    Anthony.

  • CRASH REPORT  Product:  Adobe Photoshop CC  Application running on:  Apple iMac 3.5GHz / Mavericks 10.9.2  Application crashes without warning. .  Symptom:  Drop down boxes go blank white  (I shot screen captures of blank drop down boxes) and application

    CRASH REPORT
    Product:  Adobe Photoshop CC
    Application running on:
    Apple iMac 3.5GHz late 2013 / Mavericks 10.9.2
    Application crashes without warning.  Symptom:  Drop down boxes go blank white  (I shot screen captures of blank drop down boxes) and application stops working, actions for appox. 10 minutes preceding crash are lost. Force Quit  required to quit unresponsive / frozen  application and then Restart of  Adobe Photoshop CC
    Crash Frequency:  Three time in this work day, 5.6.14  Once a day sporadically (approximately 10 times) in past two weeks.
    Other applications running at time of crashes:  Adobe Bridge - NOT effected.  Computer was on line with no browsers open.
    Otherwise computer continued to operate normally.
    I have been using Adobe Photoshop CC for approximately two months.

    Thanks, Chris,
    I hope that this is the solution.
    re:  "And a crash report without an actual crash report (a long, detailed text document available from the crash report dialog), is not all that useful" :
    I did in deed submit a homemade crash report.
    I would have submitted "an actual Crash Report "  and sooner, but:  When this event occurs. there are NO dialog boxes.  All frozen / blank.  No possibility of "actual crash report" !
    Thank you!

  • Fill-In-The-Blank drop-down list in HTML5 output

    I'm working in Captivate 7 (WIN) and developing for both SWF and HTML5 output, viewing courses in IE9 for Windows and Safari on iPad.
    I have a quiz containing a fill-in-the-blank question, using a drop-down list to select the correct answer, however it does not display the drop-down button or function correctly in HTML5 output (see screenshot).
    The issue began after updating to Captivate 7 version 7.0.1.237. The drop-down list worked prior to the update I installed recently. I'm viewing the published course locally and in the LMS, and it does not work in either.
    I've not read in the help documents that drop-down list questions are an unsupported question type in HTML5, and so I'm wondering if this is a bug that needs to be reported. Has anyone encountered this issue?

    Do you need scoring? There is a Scrolling Text interaction (more control, you can empty the variable and it will be displayed empty) but it is a non-interactive one, no score possible except by adding other interactive objects.
    Custom Short Answer Question - Captivate blog

  • Blank drop-downs when using LOV with static VO

    Hello, I am using JDeveloper 11.1.2.3.0
    I have set some attributes to display as LOV. The attributes that are connected with Entity Based VO are fine but those that are connected with Static List VO not. In the second case I am getting drop-downs with blank values on it. Does anyone have any idea why does this happen?
    PS: The application was working fine, but after I restarted JDev I got this error. Now I restarted it again and again but with no result.

    Hi,
    don't see how we can help unless you provide details steps for how you set up the static LOV.
    Frank

  • SCOM 2012 Install problems - SQL Server 2012

    I am trying to install SCOM 2012 R2 on Server 2012. I cannot connect to sql the log file shows below. I have SQL 2012 installed and patched. Has anyone seen this before?
    [15:18:16]: Always:
    :DatabaseConfigurationPage: Attempting to connect to database using server\instance itp-operations\mssqlserver. If we need it, the port is 1433
    [15:18:16]: Debug:
    :MSSQLSERVER on server itp-operations is in a running state
    [15:18:16]: Info:
    :Info:Opening/Testing Sql Connection on itp-operations, port: 
    [15:18:16]: Debug:
    :Connection was not open.  We will try to open it.
    [15:18:16]: Debug:
    :SqlConnectionReady returned True.
    [15:18:16]: Debug:
    :MSSQLSERVER on server itp-operations is in a running state
    [15:18:16]: Debug:
    :Connection was not open.  We will try to open it.
    [15:18:16]: Debug:
    :SqlConnectionReady returned True.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :SQL Product Level: RTM
    [15:18:16]: Info:
    :SQL Edition: Standard Edition (64-bit)
    [15:18:16]: Info:
    :SQL Version: 11.0.2100.60
    [15:18:16]: Always:
    :Current Version of SQL=11.0.2100.60   Required Version=10.50.2500.0
    [15:18:16]: Always:
    :Entering GetRemoteOSVersion.
    [15:18:16]: Info:
    :Info: remoteOS = 6.3.9600
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :The SQL Collation is valid.
    [15:18:16]: Info:
    :Info:Using DB command timeout = 1800 seconds.
    [15:18:16]: Info:
    :Info:DatabaseConfigurationPage: DB connection attempt completed.
    [15:18:16]: Info:
    :Info:DatabaseConfigurationPage: DB connection attempt completed.

    Hi,
    Please turn off firewall and retry it.
    In addition, please also follow the below two links when installing SCOM 2012:
    Walkthrough: Installing Operations Manager on a Single Server
    http://technet.microsoft.com/en-us/library/hh457006.aspx
    OpsMgr 2012: a quickstart deployment guide
    http://blogs.technet.com/b/kevinholman/archive/2012/04/26/deploying-opsmgr-2012-a-quick-start-guide.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • Fill-In-The-Blank drop down space issue

    Hi,
    I have Captivate 7 and am putting in a number of Fill-In-The-Blank quiz questions and using the drop down but when the user makes the selection, not all the words are shown, it cuts off the last few letters and in some cases where I have a one character you can't see any of the answer.
    Any ways around this? (Other than not using one character)

    Do you need scoring? There is a Scrolling Text interaction (more control, you can empty the variable and it will be displayed empty) but it is a non-interactive one, no score possible except by adding other interactive objects.
    Custom Short Answer Question - Captivate blog

  • Since version 3.6.6 installed, my Location bar drop-down sites have disappeared.

    Since version 3.6.6 automatically installed on my Vista system, all of the drop-down sites on my Location bar have disappeared.

    Make sure that the Location Bar is not set to "Nothing": Tools > Options > Privacy > Location Bar: When using the location bar, suggest: History,Bookmarks,History and Bookmarks - See [[Smart Location Bar]]

  • Firefox freezes and a blank drop down box shows up, then I have to force quit the program

    Firefox will randomly freeze and a white blank box will drop down. I have to force quit firefox and restart it, then it usually works fine without errors for a while. This seems to happen mostly when I am on facebook.
    == This happened ==
    Just once or twice

    Disabled flash player plugin and it doesn't freeze anymore. Plan on reinstalling flash now and hopefully freezing stops.

  • When printing a form, blank drop downs do not print

    I am creating a Form for people to use and wanted to give them the option to print it out and fill it out by hand if they preferred. I have encountered a problem with printing Drop Down Menus: if you select one of the options from a Drop Down Menu, everything prints fine, but if you don't select anything the empty box will not print. The weird part is that if you click on the Drop Down Menu, but don't select anything, it will then print the empty box. I also tried it with one of the existing templates and the same thing happened, i.e. prints the box with the selction if a choice is made, prints an empty box if the menu is clicked on but nothing is selected, prints no box if the Drop Down Menu is left alone.
    I am not sure if this is a printer setting in Adobe Reader/Acrobat or if this is a setting in FormsCentral. Can anyone help me find a way to force all Drop Down Menus to print out the black box regardless of what is entered or clicked on? Thank you!

    How about just the file name of the attachment? How can I get this to print?
    I need this to print in order to match up saved attachments to the respective messages when preflighting incoming files and then distributing hard copies.

  • All SCOM 2012 R2 dashboards are blank on Windows 7 for any user

    All SCOM dashboards are showing up completely blank on several (but not all) Windows 7 machines and a 2008 R2 server (with RDS)...for any type of user. It's not a permissions issue as the same user can RDP to the SCOM Mgt server and view the dashboards just
    fine. It seems to be some underying pre-requisite that isn't there, or isn't working. We've installed the pre-reqs (reportviewer, SQLSsyClrtypes, etc) to no avail. I've also tried doing a "repair" on .Net, and rebooted as described in another thread,
    but that didn't work. I'm guessing it's something baked into our desktop images, but what am I missing

    ...also, we're seeing this event in the application log when the console is opened on an affected machine (but, not necessarily when opening the dashboard)...so, not sure it's 100% relevant. 
    Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. : System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for
    more information.
       at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
       at System.Reflection.RuntimeModule.GetTypes()
       at System.Reflection.Assembly.GetTypes()
       at Microsoft.EnterpriseManagement.Presentation.DeclaredAssemblyLoader.LoadModuleCatalogFromAssembly(IModuleCatalog bootstrapperCatalog, ModuleCatalog catalog, Assembly assembly)
       at Microsoft.EnterpriseManagement.Presentation.DeclaredAssemblyLoader.CreateModuleCatalog(IEnumerable`1 assemblies)
       at Microsoft.EnterpriseManagement.Presentation.DeclaredAssemblyLoader.LoadInternal(IEnumerable`1 assemblies)
       at Microsoft.EnterpriseManagement.Presentation.DeclaredAssemblyLoader.Load(DeclaredAssembly assembly)
       at Microsoft.EnterpriseManagement.Monitoring.Components.ComponentRegistry.<>c__DisplayClass3e.<GetAssemblies>b__3c(DeclaredAssembly declaredAssembly)
       at System.Reactive.Linq.Observable.<>c__DisplayClass413`2.<>c__DisplayClass415.<Select>b__412(TSource x)

  • My form autocomplete shows blank drop down menus with 'Form History' still stated beside the blanks when I type in entries I previously entered.

    It is remembering what I entered, but the options are blank. Please help, this is really annoying. I also lose form history (when it was working properly) after I leave Firefox idle for more than 5 minutes. It's been like that for a long time, but my form history (autocomplete) used to stay intact if I left the computer for a bit. I know exactly how to use my privacy options, they are set the way I always had them set when form autocomplete used to work properly for me.

    Yep, this is def a problem with the google toolbar. I did find that if you turn off the google autofill, you can keep the toolbar enabled and the problem goes away. The browser then uses Firefox's autofill instead. Thanks for leading me down the right track. I didn't want to lose Google toolbar, but not having form history has been a pain, since i use it for shipping packages and not having it makes it time consuming.

  • Drop-Down Boxes showing blank

    I'm recording a software demonstration that includes
    drop-down boxes, which I've done for years with Captivate, but I'm
    encountering a strange issue I've never seen before. When I look at
    the slide itself, everything looks fine, but when I preview the
    demonstration, the drop down box appears blank (a white box) for a
    second before he box appears. There is no background or image
    anywhere in the system, that I can see, of the screen with a white
    box where the drop-down box should go.
    When I go to preview only that slide (F3), the blank drop
    down box appears in the last 1/2 second of the slide, yet it is no
    where in the library of graphics. What is going on here?
    I've been able to "fix" the issue by adding the bitmap of the
    background over the top of the last 1/2 second of the slide, but I
    really don't want to have to do that for every demonstration I do
    in the future that includes a drop-down box. Does anyone know if
    there's a recording setting that might be doing this?

    Thanks for the advice - I usually try and record more slides
    that I need since its easy enough to delete the extras. I've never
    encountered this problem before, though. If anything, I'm used to
    it recording the white screen that appears in a transition from one
    screen to another and I take precautions for that. I've never had a
    white box appear prior to a menu opening, though, or had a slide
    show "movement" in the background graphic itself. It wouldn't
    matter how slow I recorded it - it would still record the last
    fraction of a second. It did get the completely rendered image, it
    just added a little "interlude" on its own.
    I had no idea that captivate recorded layers on the graphics.
    When looking at the slide, the white box only appears when I drag
    the playhead across the slide, and then only for the last fraction
    of the second. Is it possible to edit these in any way? Maybe
    "crop" the end of the end that shows the white box?

  • How to make a drop down list default to a blank space

    I have a drop down list
    <cfselect name="EmployeeName" query="getname"
    value="EmployeeName" selected=" "></cfselect>
    I want the list to default to a blank space, can this be
    done?
    If so, how?

    I figured out a way to do it, except now I ran into another
    problem. The way I have it set up, i can't make it required now.
    Any ideas?
    <cfselect name="EmployeeName" query="getname"
    value="EmployeeName" required="yes" message="Please select your
    name">
    <option value="" selected="selected"></option>
    </cfselect>

  • Drop down that fills a second field and sets the email recipient

    (note: this was incorrecty posted in the Acro forum and I was informed to move it here)
    Apologies for this simple, newbie question but I am stuck. I have worked on this for a few hours, and just cannot get it to work.
    The basics: I want to get a name from a drop down, have it display in another field then set the submit button to email to that recipient.
    Acrobat Pro X
    LCD 9.0.0.2
    Win 7
    I have done this with one recipient before where the Submit button has all the info already entered, but this time I want to allow the user to choose from one recipient in a list and route the completed form to that person. I have tried all sorts of variations on Java examples in multiple forums and while everyone else seems to be able to do this, I have been unsuccessful. I cannot even get the text field to display the email based on the name in the drop down, much less the addressing part. I have tried a custom calculate script, case script and other items to no avail.
    The 3 elements........
    1) Drop down menu with names, let's just say there are two names - "John Doe (Eastern)" and "Jane Smith (Western)". The field is named "DistMgr".
    2) Text Field that displays the corresponding email for the name in DistMgr. Pretty much only used for display to confirm the address visually. This field is named "Email".
    3) Attach & Email button to send the form to the recipient chosen. Subject is always the same, lets just say it says "New Form". The button is named "Submit".
    What I want to do is select the name from DistMgr, have it populate Email (for display in the form) and automatically change the Submit button to allow the user attach the fom, insert the appropriate email address & the standard subject and invoke a standard email client with just the click of the Submit button.
    Any help would be appreciated and even links to locations where this very basic question has already been answered would work.
    Thank you.
    Joe Rowan

    Are you using Adobe LiveCycle Designer?  If so when you have the form open in designer, click on the dropdowns you will see in the code behind that dropdown where it calls a variable which is called myScriptObject.  Behind the drop-down list called "teams" it calls this script.
    Here is what is in the scriptobject:
    var epl = "Chelsea,Manchester United,Arsenal,Tottenham";
    var liga = "Barcelona,Real Madrid,Valencia,Mallorca";
    var seriea = "Roma,Inter Milan,AC Milan,Sampdoria";
    var eplArray = new Array();
    eplArray = epl.split(",");
    var ligaArray = new Array();
    ligaArray = liga.split(",");
    var serieaArray = new Array();
    serieaArray = seriea.split(",");
    function loadData(dropdownField) {
         if (!(form1.page1.subform1.league.isNull)) {
              switch (form1.page1.subform1.league.rawValue) {
                   case "English Premier League":
                        for (var i=0; i < eplArray.length; i++) {
                             dropdownField.addItem(eplArray[i]);
                        break;
                   case "Spanish Liga":
                        for (var i=0; i < ligaArray.length; i++) {
                             dropdownField.addItem(ligaArray[i]);
                        break;
                   case "Italian Serie A":
                        for (var i=0; i < serieaArray.length; i++) {
                             dropdownField.addItem(serieaArray[i]);
                        break;
                   default:
                        break;                    
    Deborah

Maybe you are looking for

  • IPhoto error message - won't open at all!!!

    Anytime I try to use iPhoto I recieve the following message: "You have made changes to your photo library using a newer version of iPhoto. Please quit and use the latest version of iPhoto" with the only option being quit. I have downloaded the newest

  • What's the easiest way to have a message box?

    Hey, i'm making this game and i have one frame and i have and one panel inside, and when the user completes the game i want a message box to popup saying "Congratulations, You Won!" At the moment when the user wins the game, i've just put a "System.o

  • Purchase requisition saved with out any warning or error

    Dear Group Members User created the Purchase requisition with different item number of purchase requisition       Example: Item: generally it starts from 10, 20, 30 u2026.. My user copied the details from other PR using Control C & pasted in the new

  • Podcasts showing up as saved when they are not on my computer

    I have a daily podcast I listen to.  I set the settings to delete all played episodes, and this seems to successfully happen.  When I sync my iPod touch to my computer (via USB; I never sync over WIFI), two old episodes show up under the "saved" tab.

  • Third party cases for ipad

    Does anyone know the "skinny" on why the Apple stores are no longer selling any cases for the ipad including skins? They were at the intro.