Bind Variable popup when no bind variable declared

I am writing a fairly complex SQL (FYI, I want to keep this all in one step and not split out with multiple sub-selects) and I am getting the bind variable popup and an error message ("The requested URL /apex/wwv_flow.show was not found on this server ") and I am not sure why and could definitely use some help. From what I see there is no issue with the SQL syntax written and when I try to break it down, everything goes well until the point where I write a case statement with an OR and checking for 'BLOCK'.
The issue comes when using the bolded line.
I am using "10g Release 2 (10.2)" and querying from the SQL commands area inside it.
The goal is to identify the area of the court broken down by the x and y dimension, home and away team has different logic to be used and if it is a block there is different logic.
Your help would be greatly appreciated, and I am leaning towards it is a bug in the SQL Commands section of the tool:
The full query is below:
case when E.YEAR IS NOT NULL then
*(case when x_dimension < 12.5 then 'A' when x_dimension <= 25 then 'B' when x_dimension < 37.5 then 'C' else 'D' end ||*
case when ((a.action_team=c.awayname3 and A.ACTION_TYPE = 'BLOCK') or (a.action_team=c.homename3 and A.ACTION_TYPE <> 'BLOCK')) then (case when y_dimension < 9.5 then '4' when y_dimension <= 19 then '3' when y_dimension < 28.5 then '2' when y_dimension <= 38 then '1' else '0' end) else (case when y_dimension > 84.5 then '4' when y_dimension >= 75 then '3' when y_dimension < 65.5 then '2' when y_dimension <= 56 then '1' else '0' end) end) else 'NA' end as COURT_LOC
It would not allow to enter the full SQL but please know that there is no issue with any declaration of the columns.
Edited by: user10615520 on Feb 29, 2012 10:29 AM
It seems that it is an issue with the in house SQL client of XE as I downloaded SQL Developer and ran same query there and the result was no issues. Is anyone aware of a bug for something like this?
Edited by: user10615520 on Feb 29, 2012 10:43 AM

So I am running Oracle Database Express version 10g. When you login through the default web interface, there is a SQL command line option. When I utilize the SQL below, can't insert whole SQL statement for some reason it won't let me, in that SQL command line I get a pop up window asking about values for bind variables... But as you can see from the code below there is no declaration of a bind variable. I also get the error message from the original post.
When I use the same query in Oracle SQL Developer, not express (mistake in previous note), the query runs without any issues.
My question is if anyone is aware of the oracle database express sql command line module having a bug where this is occurring. When I remove the line below from the query it runs fine in the Oracle Database Express command line module.
Thank you for your help, I hope this is clear.
case when E.YEAR IS NOT NULL then
(case when x_dimension < 12.5 then 'A' when x_dimension <= 25 then 'B' when x_dimension < 37.5 then 'C' else 'D' end ||
case when ((a.action_team=c.awayname3 and A.ACTION_TYPE = 'BLOCK') or (a.action_team=c.homename3 and A.ACTION_TYPE <> 'BLOCK'))
then
(case when y_dimension < 9.5 then '4' when y_dimension <= 19 then '3' when y_dimension < 28.5 then '2' when y_dimension <= 38 then '1' else '0' end)
else
(case when y_dimension > 84.5 then '4' when y_dimension >= 75 then '3' when y_dimension < 65.5 then '2' when y_dimension <= 56 then '1' else '0' end)
end) else 'NA' end as COURT_LOC

Similar Messages

  • Workbook fetching buffer date in variable popup in BI 7.0

    Hi All
    Appreciate ur respose in advance
    I have an issue related to workbook it is taking the buffer date instead current date from the variable
    i have tested the query with its variable popup .when we run it is showing  the current date i.e; sysdate
    and when the user runs the work book it fetches data from the cache it will not take the sysdate i.e; the cuurent date i have checked with all the technical settings with query and workbook as well
    we are using  a customer exit for 0calday varible
    *fo example *when we open the work book it fetches the old date(previousdate) not the current date**
    where as when we run the query it will display the variable popup with current date or sysdate
    Thanks in advance
    Mohammed ghouse
    Edited by: Mohammed Ghouse on Jul 17, 2009 2:05 PM
    Edited by: Mohammed Ghouse on Jul 17, 2009 2:06 PM

    Hi Chandamita Sarmah
    Pleased to see ur  reply but all  the technical settings related to workbook are done .every option is selected with out missing even though the problem persits
    Thanks for ur reply
    Mohammed Ghouse

  • What's disadvantages when using bind variables always in java?

    Hello everyone .. Could someone tell me what's the disadvantage when using bind variable in java ? I heard it somecases since before.. Thanks in advance!

    99% of the time, you should be using bind variables. If you have columns which are highly skewed, however, you may want to consider using literals (assuming CURSOR_SHARING=EXACT), since that may allow the CBO to make a better decision.
    If you have an orders table, for example, you may have a status column that specifies whether the order is complete, in transit, or new. If you've been running for a while, 99% of your orders will be complete, so
    SELECT COUNT(*)
      FROM orders
    WHERE status = :1should do a full table scan if you specify 'COMPLETE'. If you passed in 'IN TRANSIT', though, an index scan might be more appropriate. If you want to pass in different values and get different query plans, you need to use literals. 99% of the time, though, you want the same plan, so you want to use bind variables.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • PL/SQL speed issues when using a variable

    I have a very strange issue that is causing problems.
    I am running Golden connecting to a 11g database.
    I created a procedure to insert records into a table based on a query. The source query includes variables that I have populated prior to the insert statement. The problem is that if I use the variable for one very specific where statement, the statement goes from running in less than 1 second, to running in 15 minutes. It gets even more strange though. Not only does a 2nd variable not cause any problems, the exact same variable in the same statement works fine.
    This procedure takes 15 minutes to run.
    declare
        v_start_period date;
        v_end_period date;
    begin
        select add_months(trunc(sysdate,'mm'), -1), trunc(sysdate,'mm')
        into v_start_period, v_end_period
        from dual;
        insert into RESULTS_TABLE
                (first_audit_date, last_audit_date,
                data_column1, data_column2, data_column3)
            select
                a.first_audit_date, a.last_audit_date,
                b.data_column1, b.data_column2, b.data_column3
            from
                SOURCE_TABLE_1 b,
                (select marker_id, min(action_time) as first_audit_date, max(action_time) as last_audit_date
                    from SOURCE_TABLE_2
                    where action_time >= v_start_period and action_time < v_end_period
                    group by marker_id) a
            where b.marker_id = a.marker_id
                and exists (select 1 from SOURCE_TABLE_2
                    where marker_id = b.marker_id
                    and action_time >= v_start_period and action_time < v_end_period
                    and action_type = 'XYZ');
        commit;
    end;This procedure runs in less than 1 second, yet returns the exact same results.
    declare
        v_start_period date;
        v_end_period date;
    begin
        select add_months(trunc(sysdate,'mm'), -1), trunc(sysdate,'mm')
        into v_start_period, v_end_period
        from dual;
        insert into RESULTS_TABLE
                (first_audit_date, last_audit_date,
                data_column1, data_column2, data_column3)
            select
                a.first_audit_date, a.last_audit_date,
                b.data_column1, b.data_column2, b.data_column3
            from
                SOURCE_TABLE_1 b,
                (select marker_id, min(action_time) as first_audit_date, max(action_time) as last_audit_date
                    from SOURCE_TABLE_2
                    where action_time >= v_start_period and action_time < trunc(sysdate,'mm')
                    group by marker_id) a
            where b.marker_id = a.marker_id
                and exists (select 1 from SOURCE_TABLE_2
                    where marker_id = b.marker_id
                    and action_time >= v_start_period and action_time < v_end_period
                    and action_type = 'XYZ');
        commit;
    end;The only difference between the two is where I replace the first v_end_period variable with trunc(sysdate,'mm').
    I've been googling for possible solutions and keep running into something called "parameter sniffing". It appears to be a SQL Server issue though, as I cannot find solutions for Oracle. I tried nesting the insert statement inside it's own procedure with new variables populated by the old variables, but nothing changed.
    Edited by: user_7000017 on Jan 8, 2013 9:45 AM
    Edited by: user_7000017 on Jan 8, 2013 9:52 AM Put the code in code tags.

    You are not describing procedures. You are listing anonymous PL/SQL blocks.
    As for the code - this approach to assigning PL/SQL variables are highly questionable. As the functions are native PL/SQL functions too, there is no need to parse and execute a SQL cursor, do context switching, in order to assign values to PL/SQL variables.
    This is wrong:
    select
        add_months(trunc(sysdate,'mm'), -1), trunc(sysdate,'mm')
        into v_start_period, v_end_period
    from dual;This is correct:
    v_start_period := add_months(trunc(sysdate,'mm'), -1);
    v_end_period := trunc(sysdate,'mm');Just as you would not use +"select 1 into plVariable from dual;+", instead of a standard variable assignment statement like +"plVariable := 1;"+.
    As for the performance/execution difference. Does not make sense. I suggest simplifying the code in order to isolate the problem. For example, take that in-line SQL (aliased as a in the main SQL) and create a testcase where it uses the function, versus a PL/SQL bind variable with the same data type and value as that returned by the function. Examine and compare the execution plans.
    Increase complexity (if no error) and repeat. Until the error is isolated.
    The 1st step in any troubleshooting, is IDENTIFYING the problem. Without knowing what the problem is, how can one fix it?

  • Executable won't re-connect to shared variable engine when it breifly goes offline

    Hi,
    I have shared variables that are hosted on a field-point controller. I read these variables from executables that run on a PC. When the shared variable engine on the field point controller goes offline and then comes back online (for instance, if I cycle the power to the controller), the executables on the PC don't automatically reconnect. I need to restart the executables in order for them to re-connect and read the shared variables.
    Any ideas on how to have the executables automatically re-connect? I don't want to have to restart the execuables when the power cycles on the controller,
    Thanks, Derek. 

    Hi Derek,
    It is my understanding that the variables should reconnect, even after your FieldPoint has been power cycled.  I found a few articles that could be helpful; read through these and let me know if you are still having issues. 
    http://digital.ni.com/public.nsf/allkb/7BA64956A475405F862570ED007B2A88?OpenDocument
    http://digital.ni.com/public.nsf/allkb/04D9A85B6967EE87862571140065EEC6?OpenDocument
    http://digital.ni.com/public.nsf/allkb/AA97FF29D0B3C748862572F600055B22?OpenDocument
    Cheers, 
    Marti C
    Applications Engineer
    National Instruments
    NI Medical

  • Coercion problem when using Shared Variable

    I have a curious coercion problem when using Shared Variables.  I want to share the state of a State Machine, which is an enum saved as a control (typedef) called TYPE State (see attached).  I create a shared variable called State and define it as a Custom Control, using the just-mentioned typedef.  So far, so good.  I've attached three simple VIs -- the first one, Init State, simply wires a constant to the input of the Shared Variable to initialize it -- the wired constant is, of course, defined by the typedef.  However, the Get State and Set State, meant to wire an indicator (for reading the state) or control (for setting it), develop coercion dots when wired into the Shared Variable.  Why?  How do I get rid of the dot?  [I suppose I could abandon my typedef and custom control, but the beauty of typedefs and custom controls is that it "enforces" rules, lets you use enums for clarity, keeps the code "honest", etc. -- I'd hate to give that up just to get rid of a dot!].
    On a related note, the code seems to work.  This is much too simplistic to do anything, but if you open Set State and Get State, set the state to anything, run it (it immediately stops, of course), then run Get State, you'll see the chosen state appear in the indicator.  So it does appear to work.  The "error" (coercion dot) may, I suppose, be a "bug" in Labview because it can't figure out the mapping of the (very simple!) Custom Control, but if so, I hope it gets fixed quickly!
    Bob Schor
    Attachments:
    Coercion Problem1.zip ‏38 KB

    Hello Bob,
    I am also seeing this behavior, I will escalate this question to our LabVIEW developers and post again here no later than next Tuesday, November 27th as National Instruments will be closed for the remainder of this week.
    If this issue does turn into a product suggestion, I would suspect the workaround would to live with the coersion dot for the time being.
    Enjoy the holiday
    Regards,
    Erik J.
    Applications Engineer
    National Instruments

  • Problem when re-entering variables in report

    hi all,
    I have a very strange problem...
    I'm using a webtemplate with 3 different queries in it.
    One of these queries is a report that shows exchange rates for a certain period... This period is entered in the variable screen upon starting the report
    Using a variable "CE_PERIOD" this period is entered as e.g. "006.2006". After an initial run, everything is fine, exchange rates are shown with and for this period.
    Then when I click "variables entry" on the context menu of the rerport, I can re-enter this CE_PERIOD... when I change it to e.g. "004.2006" and execute the report, nothing is changed in my currency query... the period still mentions 006.2006 instead of the newly entered 004.2006
    by the way, something that may help: the exchange rates are only shown when I click on a button we created for this, it then shows the exchange rates in the template, otherwise it doesn't... but like I said. After first run it works perfect, after changing the period variable, the exchange rate query is not affected?
    any ideas??
    points will be awarded!
    thanks
    Message was edited by: Joris Hens

    thanks a lot! I tried it and it works... I gave you full points for this!
    Thanks a 1000 !
    Message was edited by: Joris Hens

  • When should I use static variable and when should not? Java essential

    When should I use static variable and when should not? Java essential

    Static => same value for all instances of the class.
    Non-static => each instance can have its own value.
    Which you need in which circumstances is completely up to you.

  • What is a Transient Variable and when should it be used

    Hello everyone,
    I just want to know the details regarding the transient variable and when should we use it. what is the significance of this variable?

    Transient variables are not written out when the class is serialized.
    http://java.sun.com/docs/books/tutorial/essential/io/providing.html

  • How to hide a presentation hierarchy in variable popup

    Hi there,
    I've got the following problem:
    one infoobject, let's assume 0material, has got several presentation hierarchies; these hierarchies are actually per country, so two hierarchies for Belgium, three for Netherlands, etc; each BEX user is assigned to a country as well; in reporting there's a variable assigned to 0material which allows the selection of a hierarchy; the request is now to hide in the selection screen of the variable the hierarchies which are not belonging to the user?! so a dutch user should see in the variable popup only the dutch hierarchies
    any help, hint, idea is much appreciated

    Hi,
    Have you tried the option of Personalization of the selction screen ??
    regards,

  • Error when defining a variable  other than CHAR

    I am getting a syntax error when I define variables :
    data: l_arbei  type p.
    constants:  l_delim  type x  value '09'.
    Message L_ARBEI must be a character-type field (data type C, N, D or T). an open control structure introduced by "INTERFACE"
    Has anyone else experienced this problem.  Why can I not define these variables.

    data: l_arbei  type p decimals 1,
          l_ismnw  type p decimals 1.
      write w_ops-work_activity to l_arbei. 
      l_arbei = l_arbei - l_ismnw.          
      if l_arbei gt 0.                      
        write l_arbei to w_ops-work_activity.
      endif.
    As mentioned same error message when defining the following:
    constants:  c_delim  type x value '09'.
         split i_input1-line at c_delim into 
               w_hdr-orderid                 
               w_hdr-order_type.              
    I agree that there should be no problem with the definitions. However cannot understand why it does not like it.  Thought there might be an additional requirement for Unicode systems.

  • Connection closed error when using binding

    Hi,
    I am running WLS 7.0.1.0 with TopLink 9.0.3 as the persistence layer for
    EJB1.1 beans with CMP. When I use bind parameters I get a connection
    closed exception the second time the query is invoked.
    This is the query I see on server console when it is invoked the first
    time. This query returns the expected results:
    [TopLink]: ServerSession(91035)--Connection(887977)--SELECT
    LAST_CHANGED_ID, ALIAS_NAME, REFERENCE_ID, ALIAS_TYPE,
    REFERENCE_QUAL_CODE, ALIAS_QUAL_CODE, TLINK_VERSION, LAST_CHANGED_DATE,
    DELETED_FLAG FROM GLOBAL_ALIAS WHERE (DELETED_FLAG =
    bind => [N]
    However, when I run the same query the second time I get the
    following error:
    [TopLink Error]: ServerSession(91035)--Connection(0)--null--EXCEPTION
    [TOPLINK-4002] (TopLink (WLS CMP) - 9.0.3.1 (Build 426)):
    oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Connection has already
    been closed.
    INTERNAL EXCEPTION: java.sql.SQLException: Connection has already been
    closed.
    ERROR CODE: 0
    Then when I execute the query again the third time I see the following
    sql query and it
    works fine.
    [TopLink]: ServerSession(91035)--Connection(889939)--SELECT
    LAST_CHANGED_ID, ALI
    AS_NAME, REFERENCE_ID, ALIAS_TYPE, REFERENCE_QUAL_CODE, ALIAS_QUAL_CODE,
    TLINK_V
    ERSION, LAST_CHANGED_DATE, DELETED_FLAG FROM GLOBAL_ALIAS WHERE
    (DELETED_FLAG =
    bind => [N]
    Does WebLogic close its connection to the database pool after each
    transaction? Is there something that needs to be done on the database?
    Any help will be greatly appreciated.
    Thanks in Advance,
    Anup.

    Hi. Our transaction coordinator does prevent any code from using a
    pool connection that was part of a transaction, after that transaction
    ends. Applications must obtain and use pool connections totally
    within or totally outside a UserTransaction, to prevent unintended
    or unclear interference of the transaction contents and/or locking.
    Joe Weinstein
    PS: Also post any followup to the ejb newsgroup, because this issue
    is more at the EJB level than JDBC.
    Anup Vachali wrote:
    Hi,
    I am running WLS 7.0.1.0 with TopLink 9.0.3 as the persistence layer for
    EJB1.1 beans with CMP. When I use bind parameters I get a connection
    closed exception the second time the query is invoked.
    This is the query I see on server console when it is invoked the first
    time. This query returns the expected results:
    [TopLink]: ServerSession(91035)--Connection(887977)--SELECT
    LAST_CHANGED_ID, ALIAS_NAME, REFERENCE_ID, ALIAS_TYPE,
    REFERENCE_QUAL_CODE, ALIAS_QUAL_CODE, TLINK_VERSION, LAST_CHANGED_DATE,
    DELETED_FLAG FROM GLOBAL_ALIAS WHERE (DELETED_FLAG =
    bind => [N]
    However, when I run the same query the second time I get the
    following error:
    [TopLink Error]: ServerSession(91035)--Connection(0)--null--EXCEPTION
    [TOPLINK-4002] (TopLink (WLS CMP) - 9.0.3.1 (Build 426)):
    oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: Connection has already
    been closed.
    INTERNAL EXCEPTION: java.sql.SQLException: Connection has already been
    closed.
    ERROR CODE: 0
    Then when I execute the query again the third time I see the following
    sql query and it
    works fine.
    [TopLink]: ServerSession(91035)--Connection(889939)--SELECT
    LAST_CHANGED_ID, ALI
    AS_NAME, REFERENCE_ID, ALIAS_TYPE, REFERENCE_QUAL_CODE, ALIAS_QUAL_CODE,
    TLINK_V
    ERSION, LAST_CHANGED_DATE, DELETED_FLAG FROM GLOBAL_ALIAS WHERE
    (DELETED_FLAG =
    bind => [N]
    Does WebLogic close its connection to the database pool after each
    transaction? Is there something that needs to be done on the database?
    Any help will be greatly appreciated.
    Thanks in Advance,
    Anup.

  • FormulaCalc error when using variablesin variable files?

    I defined two variables RForce_ and IntLength_' in variables files:
    as following:
    IntLength_ : I <1700>
    RForce_ : R <1.4314>
    in vbs file,I have following:
    Call FormulaCalc("Ch('PSA_Kraft') := ('RForce_'-'RForce_'/'IntLength_'*'Gurtweg')")
    When I run the vbs file,diadem reports following error:
    The formula
    Ch('PSA_Kraft') := ('RForce_'-'RForce_'/'IntLength_'*'Gurtweg')
    contains an invalid mathematical operation .. ('RForce_'>-<'RForce_'/'IntLength_'*'G.. with text!
    When I don't use variables, as following:
    Call FormulaCalc("Ch('PSA_Kraft') := (1.4314-0.000842*'Gurtweg')")
    my vbs file can run correctly.
    Anything wrong with my code?

    Hi Junwei You,
    Yes, there is a problem with the formula calculator expression.  You need to use the ' character only when you are referencing existing data channels, not for VAS file variables.  Also, I strongly recommend that you always use the full Ch('ChannelName') construct when you reference an existing data channel.  Try this instead:
    Call FormulaCalc("Ch('PSA_Kraft') := RForce_ - RForce_/IntLength_*Ch('Gurtweg')")  Note that you may need to insert further parentheses to specify the exact order of the / and * operators.
    Regards,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Extendscript variables undefined when triggered from PostFrameMakerDocUpdate event

    I am trying to run an Extendscript script in RH10.0.1.292.
    This script is registered to the PostFrameMakerDocUpdate event so that it runs evey time I update my FM sources.
    Every time I Update or Force Update, when the script runs, I get an 'undefined variable' message.
    However, when I run the same script from within  RoboHelp, or from the ExtendScript Toolkit, everything is fine. The script runs to completion without any errors.
    Initially, the undefined variable is a global (defined at the top of the file before any functions)
    var Rev = "Rev 2.3 December 22, 2013";
    If I move Rev into the only function where it is used, I get another error: the numParaStyles is now an undefined variable. This is a local variable, defined in the one and only function where it is ued.
    var numParaStyles = FM_paragraphStyles.length;
    Although FM_paragraphStyles is a global array:
    var FM_paragraphStyles = ["TipText", "CautionText", "WarningText"];
    This script is is based on the Reference Page Image Updater.jsx script included in the
    Adobe\RoboHTML\10.00\Scripts\Sample Scripts
    folder. I added the Rev string as part of my debugging efforts,
    Since the script works find from the ExtendScript Toolkit and from within RoboHelp, I suspect something is happening to mess up with the script's variable scoping when the script is run in response to an event. But that's just a guess. I am not an expert in JavaScript, let alone ExtendScript.
    Has anyone else seen this behavior? Is there something I can do to prevent the error messages?
    Thanks!

    Extendscript doesn't work nice with globals if you are using scripting
    events. In my experience, the easiest workaround is to create functions
    that create globals and call that function in the function linked to an
    event. Personally, I normally make a script and then add an extra
    function specifically for events that initiates any globals and then
    runs the script normally. There's no easy fix, sorry.
    I believe this is a bug. You can report bugs to Adobe via
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Kind regards,
    Willam

  • CVI 9.1.0 crashes when looking at variables window

    I get the following crash when I have my program at a breakpoint and I pop open the variables windows and try to scroll down to see my globals:
    EventType : BEX     P1 : cvi.exe     P2 : 9.1.0.427     P3 : 4afcd035    
    P4 : cvi.dll     P5 : 9.1.0.427     P6 : 4afcdb5b     P7 : 009d730e    
    P8 : c0000409     P9 : 00000000     
    Can anyone help with this?

    I am getting the exact same crash every time all of a sudden.  It seems to occur now that I've created a viSession variable and viFindlist variable..
    My main looks like:
    int main (int argc, char *argv[])
    int error = 0,j;
    static short addrList[31];
    static short listList[31];
    static int portList[255];
    int nPorts,index;
    char port_name[7];
    ViSession resourceManager;
    ViFindList findList;
    char desc[256];
    int numDevices;
    /* initialize and load resources */
    nullChk (InitCVIRTE (0, argv, 0));
    errChk (instHandle = LoadPanel (0, "Test Application Generator.uir", INST_SETUP));
    /* display the panel and run the user interface */
    errChk (DisplayPanel (instHandle));
    /*for (j=0;j<31;j++) {
    addrList[j] = j;
    addrList[30] = -1;
    SendIFC(0);
    FindLstn(0,addrList,listList,30);
    //Get list of available COM ports
    nPorts = LocateCom("",portList,255);
    for (index = 0; index < nPorts; index++) {
    sprintf(port_name,"COM%d",portList[index]);
    InsertListItem(instHandle,INST_SETUP_PORT_TYPE,-1,port_name,index); //Add to list
    index = viOpenDefaultRM(&resourceManager);
    viFindRsrc (resourceManager, "?*INSTR", &findList, &numDevices, desc);
    errChk (RunUserInterface ());
    Error:
    viClose(resourceManager);
    /* clean up */
    DiscardPanel (instHandle);
    //DiscardPanel (mainPanel);
    return 0;
     And I have a break on the viOpenDefaultRM function so it hasn't been ran.  And my variable looks fine except the variable resourceManager is blank.

Maybe you are looking for

  • Downloaded game and keeps saying it's loading

    I Downloaded a free game off the Apple Store and when I hit open itke saying it's loading.

  • Cannot open dashboard from connected client to restore a single file

    I have a small business network with an existing Server 2008 R2 domain controller.  In order to backup all the client machines with an experience something like windows home server I recently purchased a new server with windows server 2012 r2 and ins

  • How do i change the duration time on my music

    i want to make the duration time on one of my songs shorter but when i 1. right click on the song 2. click get info 3. click options 4. the box turns grey and doesn't let me click on anything i can see the little thing that says start and stop time b

  • Problems with French site

    I'm getting a very large number of Document Fetch Failures (the majority are 500 errors) when crawling our French site. We are not having any problems with crawling our English sites which are similar to the French site (just the language difference)

  • How to use web services with Dynamic url behaviour

    Hi, IView created by me currently uses some web services whose url behavior is static but i want to give a dynamic url behavior. i.e. i want to use the url which user provides. So here are my questions 1. How I shall assign the url supplied by the us