See the query at runtime in the OPS

Can someone please tell me is it possible to display the request for enforcement on the fly in php, I can see the declaration of var_dump ($sql).
I want to see the sql script of the execution on the fly.

could you please say how if possible.

Dina

Dina,

You can make use of vo.getQuery before vo.executeQuery to get the script.

Kind regards
GYAN

Tags: Oracle Applications

Similar Questions

  • Microsoft Visual C ++ Runtime Error - can not see the path of the file.

    When I get the runtime at startup error, I don't see the destination of the file. It is very annoying that I can not see the program that gives me the problem.

    All it says, this is:

    Runtime error!

    Program: C:\Program F...

    How can I extend the above so I can see the path of the actual file?

    Also going to go for a 2 for 1 here...

    Immediately after the closure of the runtime error box, I get the message that search settings stopped working.  I close who and everything is fine until I reboot (by making the error happen) but I'd rather not have the problem in the first place.  I run Windows 7 Ultimate.

    Error information:

    Signature of the problem:
    Problem event name: APPCRASH
    Application name: SearchSettings.exe
    Application version: 4.5.0.2
    Application timestamp: 4e04ab86
    Fault Module name: MSVCR90.dll
    Fault Module Version: 9.0.30729.4940
    Timestamp of Module error: 4ca2ef57
    Exception code: 40000015
    Exception offset: 0005beae
    OS version: 6.1.7601.2.1.0.256.1
    Locale ID: 1033
    Information additional 1:9956
    More information 2: 995611374799875ff43c42d4b1b84d70
    3 more information: 3d4b
    Additional information 4: 3d4b4db0455ea2295d172b959897673c

    Maybe just download a new MSVCR90.dll but I would like to hear what you have to say.

    Hello

    ·         Did you the latest changes on the computer?

    We must first identify to identify the program that is causing startup problems.

    Step 1:

    Check if the problem persists in safe mode.

    Start your computer in safe mode

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    Restart the computer to return to normal mode.

    If the problem does not persist in safe mode, then it is possible that some third-party programs installed on the computer is causing the problem.

    Step 2:

     

     

    I suggest that you put the computer in a clean boot state and check.

    To help resolve the error and other messages, you can start Windows Vista or Windows 7 by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click Start, type msconfig in the search box and press ENTER.

    (b) If you are prompted for an administrator password or for confirmation, type your password or click on continue.

    (c) under the general tab, click the Normal startup option, and then click OK.

    (d) when you are prompted to restart the computer, click on restart.

  • The foreach loop to see the result in richTextBox1 but only see the first result of the query. ?

    I have the table names in the list box to check if the same tables has same columns. For example

    listBox3 is the name of the EMPLOYEE table that my request must verify if the EMPLOYEE table has different columns.

    This query working as for example: table Employee UserA and UserB has Employee table too. After comparing the time user Employee table I get the altar of statements about richTextBox1.

    Depends on my EMPLOYEE table, I guess only to see the result as below;

    ALTER table EMPLOYEE add DESCRIPTION VARCHAR2 (15);

    ALTER table EMPLOYEE add CITY VARCHAR2 (10);

    but only seeing:

    ALTER table EMPLOYEE add DESCRIPTION VARCHAR2 (15);

    foreach (string Items in listBox3.Items)
      
    {
      
    using (OracleCommand crtCommand = new OracleCommand(
    "with src as(select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale, src.nullable src_nullable,decode(T.Constraint_Type,'P', 'Primary Key','U','Unique','') as src_cons from all_tab_columns src left join (select Cc.Column_Name,Uc.Constraint_Type from user_cons_columns cc, user_constraints uc where Cc.Constraint_Name = Uc.Constraint_Name and Cc.Table_Name = Uc.Table_Name) t on T.Column_Name = Src.Column_Name where table_name = '" + Items + "' and owner='" + txtSrcUserID.Text + "'), tgt as(select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len, tgt.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale, tgt.nullable tgt_nullable, decode(T.Constraint_Type,'P', 'Primary Key','U','Unique','') as tgt_cons from all_tab_columns tgt left join (select Cc.Column_Name,Uc.Constraint_Type from user_cons_columns cc, user_constraints uc where Cc.Constraint_Name = Uc.Constraint_Name and Cc.Table_Name = Uc.Table_Name) t on T.Column_Name = tgt.Column_Name where table_name = '"+Items+"' and owner='" + txtDesUserID.Text + "'), col_details as(select src.src_table_name, nvl(tgt.tgt_table_name, first_value(tgt_table_name) over(order by tgt_table_name nulls last)) tgt_table_name, src.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable,src_cons, tgt.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable,tgt_cons from src full outer join tgt on (src.src_col_name = tgt.tgt_col_name))select * from (select case when tgt_data_type != src_data_type or tgt_data_len != src_data_len or tgt_data_precision != src_data_precision or tgt_data_scale != src_data_scale or tgt_nullable != src_nullable then 'alter table ' || tgt_table_name || ' modify ' || tgt_col_name || ' ' || src_data_type || ' ' || case when src_data_type in ('DATE') then null else case when src_data_type in ('VARCHAR', 'VARCHAR2') then ' (' ||nvl(to_char(src_data_len), ' ') || ') 'else decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')') end end || case when tgt_nullable = 'Y' then ' null ' else ' not null ' end || tgt_cons when tgt_col_name is null then 'alter table ' || tgt_table_name || ' add ' || src_col_name || ' ' || ' ' || ' ' || src_data_type || ' ' || case when src_data_type in ('DATE') then null else case when src_data_type in ('VARCHAR', 'VARCHAR2')then '('|| nvl(to_char(src_data_len), ' ') || ') ' else decode(nvl(src_data_precision, -1), -1, null, nvl(to_char(src_data_precision), ' ') || ', ' || nvl(to_char(src_data_scale), ' ') || ')')end end || tgt_cons when src_col_name is null then 'alter table '|| tgt_table_name ||' drop '||tgt_col_name end alter_statement from col_details) where alter_statement is not null", conn1))
      
    {
      
    var result = crtCommand.ExecuteScalar();

      
    if (result != null)
      
    {
      richTextBox1
    .AppendText(Environment.NewLine);
      richTextBox1
    .AppendText(result.ToString() + ";");
      richTextBox1
    .AppendText(Environment.NewLine);
      
    }
      
    else
      
    {
      
    continue;
      
    }

      
    }  
      
    }


    This is the same query:


    with the CBC as

    (

    Select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale,

    CBC. Nullable src_nullable, decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as src_cons

    all_tab_columns CBC

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = Src.Column_Name

    where table_name = ' EMPLOYEE worker ' and owner = "ERHAN"

    ),

    As TGT

    (

    Select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len,

    TGT.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale, tgt.nullable tgt_nullable,

    Decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as tgt_cons

    from all_tab_columns tgt

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = TGT. Column_Name

    where table_name = 'EMPLOYEE' and owner = "SARIGUL"

    ),

    col_details as

    (

    Select src.src_table_name, nvl (tgt.tgt_table_name, first_value (tgt_table_name) more (order of nulls last tgt_table_name)) tgt_table_name;

    SRC.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable, src_cons,

    TGT.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable, tgt_cons

    the CBC

    outer join full tgt

    on)

    SRC.src_col_name = tgt.tgt_col_name

    )

    )

    Select *.

    BeO

    Select the case sensitive option

    When tgt_data_type! = src_data_type or tgt_data_len! = src_data_len or tgt_data_precision! = src_data_precision or tgt_data_scale! = src_data_scale or tgt_nullable! = src_nullable

    then 'alter table ' | tgt_table_name | 'Edit ' | tgt_col_name | ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' (' |) NVL (to_char (src_data_len), ' ') | ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    ||

    cases where tgt_nullable = 'Y' then 'null '.

    of another end 'not null '.

    || tgt_cons

    When tgt_col_name is null

    then 'alter table ' | tgt_table_name | 'Add ' | src_col_name | ' ' ||  ' ' || ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' ('| nvl (to_char (src_data_len), ' ') |) ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    || tgt_cons

    When src_col_name is null

    then 'alter table' | tgt_table_name: ' drop '. tgt_col_name

    end alter_statement

    of col_details

    )

    where alter_statement is not null;


    After reading the post, I could not understand if you mean that the problem is with your query or the code displays the result on your UI.

    The query returns a correct result when it is run on SQL Prompt?

    If this is the case, then perhaps problem exists with your logic to assign variables. Maybe, you need a loop in the set of results rather that by assigning them once. Or maybe not, because I do not know what language you are using.

    var result = crtCommand.ExecuteScalar();
    
       if (result != null)
       {
      richTextBox1.AppendText(Environment.NewLine);
      richTextBox1.AppendText(result.ToString() + ";");
      richTextBox1.AppendText(Environment.NewLine);
       }
       else
       {
       continue;
       }
    

    If you say, there is problem with the query, it's a good place to ask your question, but you must provide the Table definitions that can be replicated.

    If the query works fine, then maybe consider posting this question at an appropriate forum (c#).

  • How to see the info of waiting events. After executing a statement select query

    Hello

    How to see the info of waiting events. After running a select query. Is there a setting to the value of this option?
    And I also want to see the following info. in the trace file. For this, what are the settings I need to adjust to the right?
    SELECT * FROM emp, dept 
    WHERE emp.deptno = dept.deptno;
    
    call   count      cpu    elapsed     disk    query current    rows
    ---- -------  -------  --------- -------- -------- -------  ------
    Parse      1     0.16      0.29         3       13       0       0
    Execute    1     0.00      0.00         0        0       0       0
    Fetch      1     0.03      0.26         2        2       4      14 
     
    Misses in library cache during parse: 1 
    Parsing user id: (8) SCOTT 
    Concerning
    Evelyne

    For

    SQL > show parameter dump;

    ORA-00942: table or view does not exist
    >
    Use

     GRANT SEECT ON v_$parameter to Your_User_Name
    

    For

    SQL > ALTER SESSION SET EVENTS = 10046 trace name forever, context level 12';

    ERROR:
    ORA-01031: insufficient privileges
    >
    Use

     GRANT ALTER SESSION to your_user
    
  • How to see the lock on the table and query?

    Hi all
    How do we see the lock on the table and query?


    Thank you
    Rafi

    Yes Rafi,

    It works fine at my end... see below:

    Opening of Session 1 with scott/tiger and:
    setting a day emp set ename = 'xx' where empno = 7499;

    Opening of Session 2 with scott/tiger and:
    setting a day emp set ename = 'xx' where empno = 7499;
    > This session is locked by a superior.

    Open 3 Session with pw/sys as sysdba and:

    SQL> set serveroutput on
    SQL> BEGIN
      2  dbms_output.enable(1000000);
      3  for do_loop in (select session_id, a.object_id, xidsqn, oracle_username, b.owner owner,
      4  b.object_name object_name, b.object_type object_type
      5  FROM v$locked_object a, dba_objects b
      6  WHERE xidsqn != 0
      7  and b.object_id = a.object_id)
      8  loop
      9  dbms_output.put_line('.');
     10  dbms_output.put_line('Blocking Session : '||do_loop.session_id);
     11  dbms_output.put_line('Object (Owner/Name): '||do_loop.owner||'.'||do_loop.object_name);
     12  dbms_output.put_line('Object Type : '||do_loop.object_type);
     13  for next_loop in (select sid from v$lock
     14  where id2 = do_loop.xidsqn
     15  and sid != do_loop.session_id)
     16  LOOP
     17  dbms_output.put_line('Sessions being blocked : '||next_loop.sid);
     18  end loop;
     19  end loop;
     20  END;
     21  /
    .
    Blocking Session : 139
    Object (Owner/Name): SCOTT.EMP
    Object Type : TABLE
    Sessions being blocked : 134
    
    PL/SQL procedure successfully completed.
    

    HTH
    Girish Sharma

  • query sql in the OPS

    Hi all

    I need to get a value using a request in the LICS of the controller.below sql is the query

    sqlText = "SELECT application_id ';
    sqlText += 'FROM ego_attr_groups_v ';
    sqlText += ' WHERE attr_group_name = 'TREASURE "";

    I would like to know how get the jdbc connection, run the query and assign to a variable.

    Help, please.

    Thank you
    Robet

    Hello

    Import oracle.jdbc.OraclePreparedStatement;
    Import oracle.jdbc.OracleResultSet;
    Import oracle.apps.fnd.framework.server.OADBTransaction;

    see the following code

    OAMessageChoiceBean lineTypeBean = (OAMessageChoiceBean) webBean.findChildRecursive ("LineType");
    OraclePreparedStatement oraclePreparedStatement = null;
    OracleResultSet oracleResultSet = null;

    String lineTypeIdValue = null;
    StringBuffer stringBuffer = new StringBuffer();

    stringBuffer.append ("SELECT line_type_id FROM apps.po_line_types_val_v");
    stringBuffer.append ("WHERE SUPERIOR (line_type) = UPPER (" ' ");")
    stringBuffer.append (lineTypeStr);
    stringBuffer.append("')");
    OADBTransaction oadbTransaction = am.getOADBTransaction ();
    try {}
    oraclePreparedStatement (OraclePreparedStatement) = oadbTransaction.createPreparedStatement (stringBuffer.toString (), 1);
    oracleResultSet (OracleResultSet) = oraclePreparedStatement.executeQuery ();
    {if (oracleResultSet.Next ())}
    lineTypeIdValue = oracleResultSet.getString (1);
    }
    on the other
    oracleResultSet.close ();
    }
    {} catch (sqlexception Exception)
    pageContext.putDialogMessage (new OAException ("OraclePreparedStatement OR OracleResultSet Exception"));
    sqlexception.printStackTrace ();
    }

  • Query to see the list of tables is selected frequently

    Hi all


    Please tell me is it possible to find out the list of tables is repeated selected, (Please exclude the insert + updates + deletions truncated drop).


    Concerning

    Hi Sameer

    You can check V$ SQL_PLAN to see the objects being accessed by your SQL queries. If you have a diagnostic license, you can also consult DBA_HIST_SQL_PLAN

    select distinct object_owner, object_name from v$sql_plan;
    
    select object_name, count(*) from v$sql_plan group by object_name
    

    Remember, this is only a crude way to find this information.

    Concerning
    Vincent

  • Name of the table to see the forecast in the backend SQL query

    Hello


    Forecast is released on ASIC of Dematra,

    I have the name of the table to see the forecast published in Demantra

    How to confirm that the same forecasts are published in CPSA also

    What is the name of Table to see forecasts, forecasts

    Data published in the CAWC Demantra forecasts will be stored in the following MSD_DP_SCN_ENTRIES_DENORM table

    first get the scenario_id of the msd_dp_ascp_scenarios_v of table using scenario_id check if the forecast is filled in msd_dp_scn_entries_denorm

    Published by: user11986840 on August 13, 2012 03:15

  • See the query below.

    How can I make Adobe program preferred on Acrobat Reader to download PDFs on my Mac?

    Hi wrhudgins,

    There are 2 ways to do this:

    Method 1:

    -Launch Acrobat / Reader on your Mac.

    -Click on Acrobat / Reader at the top and goto "preferences".

    -On the 'Préférences' window in the left column, select 'Général' and on the right side at the bottom, you will see the button 'Select default PDF Handler'

    -Select 'Reader' by default in the drop-down list and click 'Ok '.

    Method 2:

    -Single click on a PDF file you want to open or any PDF file in general while maintaining the control key. Then select 'Get Info' in the menu you opened or

    Right-click on any pdf file and go to "Get Info" option.

    -Under the heading 'open with' the current default application for opening of PDF files is listed. If there is no registered application, you may need to click the triangle to the left of 'Open with' so that it points down to display the current setting.

    -Click on the registered application to open a menu with additional applications. In this menu, search for Adobe Reader 11.

    -If the drive is not listed, select "Other" from the bottom of the menu.

    -Navigate to your Applications folder to locate the Adobe Reader app icon and click to highlight. Click the Add button to select the drive.

    -In the Info window, click on the button 'Change everything' so that all of the following PDF files will be opened by the Adobe Reader 11.

    -Click on the button continue to confirm that you want to change your settings. Now, all PDF files will be open with Adobe Reader 11.

  • I want to max my screen to be able to see the images in the messages. The ' to, subject, to and BCC occupy 25% of the screen - one under the other.

    When I view a message it is a title showing the ' to, subject, to and Bcc' message under each other in a group which occupies about 25% of the screen. This prevent me to see a complete picture of the message. Can not change this option for do not show this information at all because it is used to occupy a large part of the screen?

    Not being able to increase the resolution will mean less can be displayed, but obviously, it is a personal thing and you should be able to see the screen comfortably.

    However, I noticed your picture looks like quite like mine, although similar.

    The pale blue bar at the top of the tab should display icons "Mail Toolbar" which does not appear in your screenshot.
    It should have these buttons or icons for example: get Messages, write, address book, Menu icon and research.
    If it has been disabled, then the pale blue box would not be showing. Thus, it is a query.

    Q: do you have 'tailor-made' bar messaging tools to remove the icons from buttons?
    Customization allows you do drag icons on and off the e-mail toolbar. Do you have this is thinking he might save you space, but in fact you still have the domain - the mail toolbar, but it is now empty?
    If you have removed them in order to create a space, I would say that you put all the icons back, so that they are available. It is easier to hide the view by disabling the e-mail toolbar.

    View > toolbars > mail toolbar
    Q: is the messaging on or off toolbar?

    Disabling should you save space by deleting the pale blue box above, but it still won't create the kind of space you're talking about. Baring in mind that each image can be a different size.

    The area with of, subject, to and Bcc, should also show several buttons for example: answer, before, Archive, Junk, Delete and another button called 'other Actions '. These buttons appear on the right side. Maybe you have them, but they cropped in the displayed image.
    If the area to which you refer has done more than just the titles. It also offers you a way to click on for example; Respond directly from the email that you look.

    What version of Thunderbird do you use?

    Have you tried the 'Conversations' addon because this will reduce the headers?

    There is also another Addon called "Headers Compact" will be also reduced the size of the headers:

    But you are only going to win some space which cannot result will be enough to see the large embedded images.

          -------------------------------------
    

    The person who transmits the image should really be sending these images in the form of attachments, so that you can choose to view by using the correct application of the program and/or reduce the size of the screen if they are incorporating the image in the content.

    If they refuse to send the image properly and persist in sending large embedded images, then you may not be able to see full images without scrolling you have no control over how they sent the image; It could be small or huge, which will affect the ability to view an image all at once.

    For large images nested:
    The best option for you would be to right click on the image and use "save image under" choose to save the image to your computer in a right example folder: Photos. Then open and view them using an appropriate such as "Windows photo Gallery" or similar application.
    So if you choose to delete the email you don't waste the image she's saved elsewhere on your computer.

  • FAQ (29): why the "See the last SoftPaqs" button grayed out?

    When I'm in the mode 'All products' or "Building Driver Pack", "Show the last SoftPaqs" button is gray. How to enable this feature for SDM will show me the latest versions of the SoftPaqs for my selected models?

    In the modes of 'Building Driver Pack' and 'All products', you have the ability to check more than one model. Unfortunately, showing the latest version of a SoftPaq for more than one model is problematic because the same version of a SoftPaq maybe not the one which is responsible for all the models selected that makes the application unnecessary and ambiguous.

    Just think about it for a second. If we had a model (let's call ModelA) 5 years ago and another model who is only 1 year old (let's call ModelB) selected in SDM. Keep in mind that computer models of different years will probably have material differences that require different hardware drivers. Also note that this could be the case even if the models were of the same year. Furthermore, models most recent software qualification only goes back a number of years. It could very well be that the software can run on older models, but if HP do not qualify and test it, HP will not associate the new version of the SoftPaqs with older models.

    So, what does the request: "Show me the latest versions of SoftPaq for some models ModelA and ModelB" really means? We asked this exact question to various people and two completely DIFFERENT responses are returned. The answer seems to be influenced by the different needs of the Organization to which the respondents belonged to.

    For some, the answer was: ' show me the most recent SoftPaq who qualified for BOTH models. This is known as a query "AND". This query would only show what are the common SoftPaqs between ModelA and ModelB, but would show NO SoftPaqs, who were qualified for only one and not the other.  With this query, most of models that are selected, the lower number of SoftPaqs appears.

    But for other respondents, the answer was ' show me the lastest Softpaq is qualififed for EITHER model; which is a query "GOLD". This query would show all the SoftPaqs associated with each model. But it is not clear if each SoftPaq was qualified for ModelA, ModelB or for both. This request seems to be too broad, because the models have been selected, more likely it is that a SoftPaq would appear even if she wasn't qualified for a model on the list only.

    So, to illustrate this, imagine the following scenarios...

    Scenario 1

    We have three SoftPaqs. SoftPaq1 qualified for the ModelA and ModelB, SoftPaq2 is ONLY responsible for ModelA and SoftPaq3 is ONLY responsible for ModelB. What SoftPaqs should appear as the "last SoftPaq ModelA and ModelB"?

    Answer:

    Query AND: SoftPaq1 because it is "the latest version of a SoftPaq who qualified for BOTH models.

    GOLDEN request: SoftPaq2 and SoftPaq3 because everyone is "the latest version of a SoftPaq for at least one model.

    Scenario 2

    What happens if the SoftPaq3 did not exist?

    Answer:

    Query ANDoftPaq1 because it is "the latest version of a SoftPaq who qualified for BOTH models.

    OR queryoftPaq1 and SoftPaq2 because everyone is "the latest version of a SoftPaq for at least one model.

    Scenario 3

    What happens if the SoftPaq1 did not exist?

    Answer:

    AND query: No. SoftPaq is qualified for BOTH models

    GOLDEN request: SoftPaq2 and SoftPaq3 because everyone is "the latest version of a SoftPaq for at least one model.

    Add more models and SoftPaqs and results gets confusing real fast. Therefore, to avoid confusion, it was decided that the "View the last SoftPaqs" button would be disabled if more than one model was chosen because it is the only case where "See the last SoftPaqs" is not ambiguous. Thus, the "View the last SoftPaqs" button is available, if only a model (and OS and language) are selected.

    If you have several patterns that you manage, and you want to use the button "See the last SoftPaqs", please enjoy SDM configurations and save a configuration for each model. For more information on SDM configurations, please see using SDM.

  • You see the IP addresses of the devices listed on the parental control?

    Is - it there anyway I can see the IP addresses of my family security "devices" devices list?

    Previous title - your devices

    Hi Ruben Soltren,.

    Please submit your query. I understand how it was to have this feature in parental control, but currently, we have no option. What we can do is to send this as a feedback through this link so that our product team will be aware of the suggestions of our users of the product.

    If you have other concerns, feel free to post back.

    Kind regards

    Richard

  • Can not see the mouse pointer

    Whenever I go to a program like WoW or Media Center, my mouse becomes invisible. I can always click on things and move it, I can't see the pointer! I saw a question asking pretty much the same thing, but it did not help me at all the... I also noticed that I can not only see the pointer when I fullscreen, however I can't get full screen sometimes.

    Hi Roxas72,

    Turn off the mouse pointer trails and check if you are able to access the mouse pointer in Windows media center.

    (a) open mouse by clicking the Start button, click Control Panel, clicking hardware, and then clicking the mouse

    (b) on the Pointer Options tab, uncheck 'Display pointer trails.

    (c) click on OK to save the settings.

    See the links below for the Wow game and try the steps.

    http://forums.worldofwarcraft.com/thread.html?TopicId=24401852177&SID=1

    http://forums.worldofwarcraft.com/thread.html?TopicId=2967988341&SID=1

    More support on the game Wow post your query in the forums of game and check.

    http://forums.worldofwarcraft.com/

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Windows Live Messenger won't let me see the other person

    I install live messenger 2011, then resart the computer and it works again 2009

    also can't see the other person, but they can see me

    Hi scottdahl,

    I suggest you to send your query in hotmail forum for assistance on the concern.

    Link, please refer to:http://www.windowslivehelp.com/product.aspx?productid=2

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • The application has failed to start because its side-by-side configuration is incorrect. See the application event log or use the command-line sxstrace.exe for more details

    Hello

    I can t open Google Earth or Microsoft Office programs because I get this message - the application could not start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe for more details.

    A few days ago I could open all what programs. I put t know what is the problem.

    I did sxstrace and that's what I have-

    =================
    Launch the activation context generation.
    Input parameter:
    Flags = 0
    ProcessorArchitecture = Wow32
    CultureFallBacks = en-US; en
    ManifestPath = C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe
    AssemblyDirectory = C:\Program Files (x 86) \Google\Google Earth\client\
    Application configuration file =
    -----------------
    INFO: File analysis shows C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe.
    INFO: Manifest definition identity is (null).
    INFO: Reference: Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053"
    INFO: Resolving reference Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053".
    INFO: Resolving reference for ProcessorArchitecture WOW64.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    INFO: No found publisher policy.
    INFO: No redirect political connection is found.
    INFO: Start the detection of assembly.
    INFO: Can't find the assembly in WinSxS.
    NEWS: Try to detect manifest to C:\Windows\assembly\GAC_32\Microsoft.VC80.CRT\8.0.50727.4053__1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.DLL.
    INFO: Found no manifesto for the neutral culture.
    INFO: End detection of assembly.
    INFO: Resolving reference for ProcessorArchitecture x 86.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    NEWS: Control strategy of the Publisher C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.5592_none_517247830f45081d.manifest
    INFO: Start the detection of assembly.
    INFO: End detection of assembly.
    ERROR: Activation context generation failed.
    End activation context generation.

    Help, please!

    This type of error can be caused if the Visual C++ library runtime components are missing or because of a third-party software.

    Follow the steps below:
     
    Method 1:
    If the problem is caused by the lack of Visual C++ libraries, you can download and install the Runtime components of Visual C++ libraries from the link below:
     
    This error can occur when the Microsoft .NET Framework installation on the computer is damaged or is missing.

    Try it out below step to reinstall and repair installation of Microsoft .NET Framework on the computer, then check if you can install the software.

    (a) click the Start button, select Control Panel, click programs and then click on 'Turn Windows has or not.' If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) search for Microsoft .NET framework 3.5.1 uncheck, click OK and restart the computer.

    (c) after the reboot, open again "Turn Windows features on or off" and place a check next to Microsoft .NET framework 3.5.1 and restart the computer.

    Step 2

    If the previous step fails, then I suggest that you manually download and install Microsoft Visual C++ 2005 and 2008 Redistributable Package and check to see if you can install the software.

    In programs and features, you do not show that you have installed Microsoft Visual C++ 2005 Redistributable and Microsoft Visual C++ 2008 Redistributable? If this is not the case, download the links here.
     
    Package redistributable Visual C++ 2005 (X 86)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&displaylang=en
     
    Visual C++ 2005 (x 64) redistributable package manager
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=eb4ebe2d-33c0-4A47-9dd4-b9a6d7bd44da&displaylang=en

    Package redistributable Microsoft Visual C++ 2008 (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en

    Package redistributable Visual C++ 2008 SP1 (x 64)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=BA9257CA-337F-4B40-8C14-157CFDFFEE4E&displaylang=en

    I hope this helps.

Maybe you are looking for

  • BACKFLIP: Using background (wallpaper) in the market place application

    Hi everyone, I d/l the background market application to change my background. When I bring up a picture that I want to save my background and click on to make it my background I get confirmation that the image has been changed. But when I navigate to

  • How to know if someone copied a file on a USB?

    If you have a person who you think access to your USB key, how do you know if they copied a file from your USB key on his computer?

  • 2nd hard drive on the dv7-6b77dx

    I have a dv7-6b77dx, and I decided to upgrade my laptop with an SSD, only to discover that, even if there is a cabby for a second drive, the sata cable is not included. Also, if I want to order to the HP parts store, I can not just the cable; I have

  • Why my screen stops frequently when I'm in the middle of a task?

    I replaced the hard drive and the power cable to the screen but the screen turns off in the middle of a task and requires to restart and reconnect the power cord to the monitor before it will work.  Any suggestions? Thank you.

  • WRT1900AC NAT OPEN Xbox problems.

    I dove in the forums for days looking for a solution, but I can't get my Xbox to have an open NAT. I booked the IP address, port, and made sure that UPnP is enabled. What Miss me? NOTE (I did not open port 53, which causes only the router lose access