DB Link & Repository detail

Hi,
a)i am using oracle 9i warehouse builder. during defining source for oracle, it asks for connection information(source for metadata import). here it gives 2 options: (1) oracle data dictionary (2) oracle designer repository
while selecting option no 1, when we click on database link , here comes the list of connection already available or new DB link. my question is in which file it stores this connection information.
b)is there any way to get the list of those accounts or repository in which warehouse repository exists. because when we are going to drop an existing repository , it asks for user name etc
thanks

You need to drop and create your db-link. You have given wrong password or username, please supply correct password and username.
DROP DATABASE LINK "TEST.WORLD";
Prompt Database Link "TEST.WORLD";
CREATE DATABASE LINK "TEST.WORLD"
CONNECT TO SCHEMA_NAME
IDENTIFIED "password"
USING 'identifier;

Similar Messages

  • Error while configuring work repository details in topology Manager

    Hi,
    Could anyone pls advice, is it possible creating more than one Master repository connection for the same instance.
    When i try to do so, am getting the below error while configuring the work repository details in topology manager.
    “A work repository already exists for this connection.
    Enter the repository password to declare it in your Master Repository”
    I tried with both the new master and work repository password. But no luck.
    Previous Master & work details:
    Master: PCS_MASTER
    Work:PCS_WORKREP
    New Details
    Master: PCS_MASTER_INT
    Work:PCS_WORKREP_INT
    Instance: PCBID
    Am trying to create new master repository for PCS_MASTER_INT.

    In the same oracle schema you can have only 1 master and 1 work repository. Usually they take 2 schema (1 for each).
    If you need 2 master repository you have to use 2 different jdbc path. I'm using a db with several master / work, each repo has got its schema..

  • How to disable or grey out a link in detailed Navigation

    Hi All,
    We have requirement in which few of the links in are to be displayed as greyed out or disabled in detailed navigation and in navigational pages. This is to stop the users from accessing the link for sometime say for a week or so.
    I have managed to grey out the link in navigational area. But couldnt find a way to do it from Detailed Navigation. If i click on the link on detailed navigation, it would open the applicaton.
    Kindly help me on how to disable or grey out a link in detailed navigation.
    Thanks
    Namit

    Hi Namit,
    Open the particular page , and select dynamic navigation (from the right hand side corner Display drop down menu ) .
    U will get all the links which r there in the detailed navigation.
    and uncheck the visible property .
    Surekha.

  • How to create links under Detailed Navigation Panel

    Hi All,
    Our reqt is to create many links under "Detailed Navigation Panel" so that portal users may click on any of those links to navigate to that particular iView.
    For example. I have created 3 iViews ( A,B and C). In the "Detailed Navigation Panel" i would like to have three links( One, Two and Three). If user clicks "One", it should go to iView A.
    Kindly help me how to do this. Many Thanks in Advance. Appreciate if any one could send me the detailed steps involved on this.
    Regs/Venkat

    Hi Venkat,
    As far as I understand your requirement, you don't want to have these links as part of the detailed navigation within the navigation hierarchy, but below, within the navigation panel, statically, right?!
    For such a static solution, you could just create an iView displaying these links, and put that iView into the navigation panel of the desktop innerpage, see http://help.sap.com/saphelp_nw04/helpdata/en/b4/771158e4cb4bf6af9974380948db86/frameset.htm for the structure details (below the Detailed Navigation iView).
    Hope it helps
    Detlev

  • Create link in detailled level navigation after creating BSP iview

    Hi All,
    I have created few bsp iview in portal. After assigning these iview to role, a create link is unnecessary visible in detailled navigation.
    I would like to hide it.
    I have tried to play with iview properties but no luck
    please advice.
    Regards
    Shashwat Gupta

    Dear Shashwat,
    Try assigning BSP iview or page directly to roles and test it.
    Also check in page or workset properties to hide from detailed navigation instead of iview itself.
    Search in to help.sap.com
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • Many - to - many view links (master-detail)

    Case :
    I have a relation many-to-many between two tables, composed of 3 tables:
    Table Users ( User_Id, User_name ) // Master 1
    Table Groups ( Group_Id, Group_name ) // Master 2
    Table Users_Groups ( User_Id, Group_Id ) // Child (holding then many - many relation)
    Need :
    I want to make Master-detail relation, so that when I change the group (Master 2) the details of the users - user_id, user_name - in this group appear in table below.
    problem :
    All the master-detail examples I have seen in Jdeveleoper, between One - many realtionship, where the details table contain the information to be displayed; now my case that the details to be displayed is in another table (Master 1) not in the child table directly.
    So using ordinary view Link between the a master table and the child table displayes only the Id's of the child table but I need that the names that in (Master 1) table which is related to the selected master id.
    Thankx

    Duplicate of add where clause to detail view in master/detail relation
    Timo

  • Liquid list custom template does not link to detail layout

    I have a custom template I have setup and working fine, but the problem i have is that I cannot link to the detail layout of the webapp, keep getting page not found. This is my code:
    <ul>
        <li><a href="{{item_url}}">{{item.name}}</a></li>
        <li><a href="{{item_url}}">{{item.CompName}}</a></li>
    </ul>

    Hi there,
    Are you running as a collection? Because you have item.name and item.CompName
    If that is the case then those are fine, if not then just use name and CompName
    If your NOT running a collection the liquid element for url is {{url}} and if you are running a collection {{item.url}}
    If you called your custom field CompName because you did not know how to output a custom field with spaces in it, the liquid output for that sort of thing is...
    {{item.['My Custom Field']}} Be it collection or not.

  • Information about linked server details including remote login in use

    After joining a new organization, one day an application support came to ask brief information about all the SQL Server linked servers and few more important configuration details.
    They were looking to upgrade their application and database. In order to know all possible sources of their data feed, the guy needed this information.
    Most of the information could have been taken by running
    sp_linkedservers but because login information was also required I preferred to run following query to collect the required data.
    SELECT
    srv.name as LinkedServerName
    ,srv.product
    ,srv.provider
    ,srv.data_source
    ,srv.catalog
    ,sp.name
    ,lgn.uses_self_credential
    ,lgn.remote_name remote_login_in_use
    FROM
    sys.servers
    AS srv JOIN
    sys.linked_logins
    AS lgn
    ON 
    srv.server_id = lgn.server_id
    AND srv.is_data_access_enabled
    = 1
    LEFT
    JOIN sys.server_principals
    AS sp ON lgn.local_principal_id
    = sp.principal_id
    WHAT IS actual data source Server Name
    Although they got the information, but they could not recognize the actual server names as highlighted in the
    srv_data_source column. All they said that, the linked servers were created by DBAs.
    I tried to ping these names from my user desktop, but could not Ping request could not find host.
    Tried to check the SQL Server Aliases but there were no alias defined for any of the server names.
    Finally I looked into the host file and found the entries. The ping from my desktop did not work because the host file entries are local to the database server. Because SQL Server instance is sitting on the same server where the
    names are entered into the host file, it was able to resolve the host names. Also Ping from the database server worked. The host file looked like as below (C:\Windows\System32\drivers\etc)
    Hope this information helps you!!.
    Warm Regards, Ajay

    Hi Ajay,
    Thanks for sharing your idea.
    Maggie Luo
    TechNet Community Support

  • Links in detailed navigation

    how do i add new links in the detailed navigation section? is it added in workset or page?

    Hi Arun,
    The Hierarchy of Portal object is iview, Page, workset, role. You can view application once the role is assigned to the user. If the entry point is role, role and workset appears in the Top Level Navigation (TLN) and the rest of the hierarchy appears in Detailed Level Navigation. Usually the no of items in TLN is 2. We can change it to 1,2 or 3 depending on the requirement and the rest if any will appear in the DLN. So we cannot say which object appears in the DLN.
    Also there is concept of Workset within Workset, Page within Page. It all depends how the object is packaged.
    Have a look at this documentation
    http://help.sap.com/saphelp_nw04/helpdata/EN/47/3f703e632c7937e10000000a114084/content.htm
    Regards,
    Ganesh N

  • Can we create a link repository here in SDN for Articles/Blogs/... ?

    G'day guys,
    Is there a ways to create a repository of links within SDN for my userid?
    I find articles/Blogs/Wiki's/.. etc that I want to come bacl to over and pver again, but the only options I see is the "Permalink" along with my Browser Bookmarks/Favourites.
    Would it not be nicer to be able to log into SDN and navigate to your profile and have an area that has all your links to your "Found" and "want to keep" references?
    Just a uggestion.
    Comments?
    Cheers,
    Mick.

    A few tips:
    For forum posts, you can use the "Watch this thread" option. Default is 90 days for a post you respond to. You can manage this via the "Your watches" in the "control pannel" but if you have many posts then accessing it can be a challenge. You can also do this without posting to the thread.
    For blogs, you can choose the "Notify me of new comments..." option. You cannot do this without posting a comment, and if you post "asdf" then........
    For wikis, you can activate a mail watch for changes. You can also do this without contributing to the wiki.
    These three will send a mail to the primary ID saved in your profile, so you can read and react as soon as you read the mail.
    An indirect "favourites" option is to go to the SDN Business Card of the author and add then as one of your favourites. When you want to check what they are up to, you can navigate to your own Business Card and then pick and choose the favourite user to see whether there is something new.
    Some users have activated (not default) the "Watch this user" option in their profile. You can choose this, and it will send you a mail.
    RSS feeds and watching twitter groups is another popular way.
    If you are adventurous then you can also play around with the parameters of the search engine and save a constructed URL for some special terms which interest you. Search around a bit and watch the URL, the parameters and how it is overwritten, and then add the parameters back to tune it and save as a favourite /bookmark.
    Personally, I use all of these - depending on the term.
    Cheers,
    Julius

  • Direct Link to Detail Navigation Report

    Hi, I have a number of reports(IViews) in my Detail Navigation Area.  Is there anyway to get a direct link to a specific IView in the Portal?
    Thanks!

    You might want to read up about iViews and quicklinks, which are basically a named shortcut to an iView...  Of course, the user needs to have the iView as one of the iViews in their role before they can launch it with the quicklink.
    Cheers

  • Link for Details screen

    Hi!
    I wonder why the link for the details screen of documents ans folders is only visible for users which have write permissions to these folders and documents. In my opinion every user who has read permissions should have the possibility to look at the details screen.
    Can anyone explain this?
    We are talking about KM in a NW2004s SPS10 installation on Windows 64bit.
    Cheers
    Christian

    By standard, the details screen is visible to all users with read access.  There must have been a change in your portal to disable this.
    If you are using a non-standard layoutset, make sure you haven't removed the standard details command from the comand group.
    It might also be worth checking that your layoutset is using the standard "commands for details menu".
    If you check all of these, then you should be able to narrow down where the problem lies.
    Chris

  • ADF Faces table and link to detail

    Hi all,
    I am trying to create a link to a detail page from an ADF table. My problem is, that the action is invoked as often as there are entries in my table. Interesting enough the param "objektId" each time contains the same primary key from the link that has been chosen. This is the code that I am using:
    <h:form>
    <af:table value="#{organisationListe.trefferzeilen}" var="row">
    <af:column sortable="false" formatType="text">
    <h:commandLink action="#{organisationListe.showDetail}">
    <f:param name="objektId" value="#{row.trefferobjektId}"/>
    <af:outputText value="#{row.anzeige01}"/>
    </h:commandLink>
    </af:column>
    </af:table>
    </h:form>
    Does anyone know the reason for this behavior?
    FYI: I don't want to use TableSelectOne as I do not want to have a radio button next to the rows - the customer insists on having a link.
    Regards
    Peter

    Hi,
    1. you don't need <af:outputText value="#{row.anzeige01}"/> if using af:commandLink because it has a text attribute. Less code is less work.
    2. You cannot use the parameter for this because the request map always shows empty, try
              <af:column sortable="false" headerText="Details">
                <af:commandLink text="Detail for #{row.EmployeeId}"
                                action="#{ShowDetailLinkInTableBean.showDetail}"
                                partialSubmit="true">
                  <af:setActionListener from="#{row.EmployeeId}"
                                        to="#{sessionScope.empId}"/>
                </af:commandLink>
              </af:column>in the mangaged bean
        public String showDetail() {
            FacesContext fctx = FacesContext.getCurrentInstance();
            System.out.println("---"+fctx.getExternalContext().getSessionMap().get("empId"));
            return null;
        }Note that even when using f:param the code never executes more than one time
    Frank

  • Adding a new link to Detailed Navigation

    Hi,
    I have created a new iview, now I have to display this iview in MSS by providing a link in the detailed navigation of the MSS role.
    Can you tell me how add a new link in the detailed navigation iview ?
    Regards
    Bharath

    Yes, For finding the appropriate Workset, In User administrator, check what all roles and Groups are assigned to the user. This will have the PCD path of role aswell. Once PCD path obtained, Open the Role and Via "Trace delta link" option  find the approproate MSS role and Workset. Open MSS workset or Role, and Add your iview.
    if it doesn reflect even after adding in this, Go to System administration  -> navigation   and clear all cache and check.
    I hope this helps.
    Thanks.

  • Using logged user detail from one table ,then use another table to link more details for same user ?

    Table 'user' fields:
    UserID* (Primary Key)
    Address
    FirstName
    LastName
    Email
    UserName
    Password
    UserLevel
    RegDate
    Table 'transaction' fields:
    transactionID* (Primary Key)
    MonthID
    UserID (Foreign Key)
    UserName
    transactionDate
    transactionType
    transactionAmount
    OpeningBalance
    Balance
    Desired output table (for the logged user):
    transactionDate
    transactionType
    transactionAmount
    OpeningBalance
    Balance
    My advance recordset details is like this :
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
    if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
    break;
    return $theValue;
    mysql_select_db($database_bankusers, $bankusers);
    $query_Recordset1 = "SELECT transactions.UserName, transactions.transactionDate, transactions.transactionType, transactions.transactionAmount, transactions.OpeningBalance, transactions.EndBalance, users.FirstName, transactions.transactionID FROM transactions, users WHERE users.UserName = transactions.UserName ORDER BY transactions.UserName, transactions.transactionID DESC";
    $Recordset1 = mysql_query($query_Recordset1, $bankusers) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    This enables me to pull all the records from both tables but not specific to the logged user.
    This is my problem. I would like the record to be pull is for the right user.
    I am not sure if the the problem is to do with Session variable MM_UserName as I have no idea how to include it in the advanced recordset box but i am not sure there is no missing session start on this page.  Your help or suggestion will be much appreciated.

    I am getting this error on the browser :
    You have an error in your SQL syntax; check the manual that corresponds  to your MySQL server version for the right syntax to use near 'ORDER BY  transactions.UserName, transactions.transactionID DESC' at line 1
    Here is my full code :
    <?php require_once('Connections/bankusers.php'); ?>
    <?php @session_start(); ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "loginuser.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_bankusers, $bankusers);
    $query_Recordset1 = "SELECT transactions.UserName, transactions.transactionDate, transactions.transactionType, transactions.transactionAmount, transactions.OpeningBalance, transactions.EndBalance, users.FirstName, transactions.transactionID FROM transactions, users WHERE users.UserName = transactions.UserName AND users.UserName = $MM_UserName ORDER BY transactions.UserName, transactions.transactionID DESC";
    $Recordset1 = mysql_query($query_Recordset1, $bankusers) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
      <title>user summary</title>
      <meta name="description" content="website description" />
      <meta name="keywords" content="website keywords, website keywords" />
      <meta http-equiv="content-type" content="text/html; charset=windows-1252" />
      <link rel="stylesheet" type="text/css" href="style/style.css" title="style" />
    </head>
    <body>
      <div id="main">
        <div id="header">
          <div id="logo">
            <div id="logo_text">
              <!-- class="logo_colour", allows you to change the colour of the text -->
              <h1><a href="index.php">ModelOnline<span class="logo_colour">Bank</span></a></h1>
              <h2>Your. Bank. On. Demand.</h2>
            </div>
          </div>
          <div id="menubar">
            <ul id="menu">
              <!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
              <li class="selected"><a href="indexoriginal.php">Home</a></li>
              <li><a href="register.php">REGISTER</a></li>
              <li><a href="login.php">lOGIN</a></li>
              <li><a href="aboutus.php">ABOUT US</a></li>
              <li><a href="contactus.php">Contact Us</a></li>
              <li><a href="cookies.php">Cookies</a></li>
              <li><a href="accessibility.php">Accessibility</a></li>
              <li><a href="security.php">Security</a></li>
            </ul>
          </div>
        </div> <div align="center" class="bankservices"><a href="http://www.modelonlinebank.com/bankproducts.php#one">Current Accounts</a> | <a href="http://www.modelonlinebank.com/bankproducts.php#two">Savings Accounts</a> | <a href="http://www.modelonlinebank.com/bankproducts.php#three">Mortgages</a> | <a href="http://www.modelonlinebank.com/bankproducts.php#four">Insurance</a> | <a href="http://www.modelonlinebank.com/bankproducts.php#five">Credit Cards</a> | <a href="http://www.modelonlinebank.com/bankproducts.php#six">Investments</a></div>
        <div id="site_content">
          <div class="sidebar">
            <!-- insert your sidebar items here -->
            <<h3>Latest News</h3>
            <h4>Personal Banking</h4>
            <h5>January 1st, 2014</h5>
            <p>Current Accounts,Saving Accounts,Range of Credit And Debit cards to suit all your needs. We have your interest in mine.<br />
            <a href="#">Read more</a></p>
    <p></p>
            <h4>Corporate Banking</h4>
            <h5>February 5th, 2014</h5>
            <p>We help you achieve your goals by providing numerous funding options.Provide Risk management of your finances and look for strategic and finance options to promote business.<br /><a href="#">Read more</a></p>
            <h3>Useful Links</h3>
            <ul>
              <li><a href="#">Credit card</a></li>
              <li><a href="#">Debit card</a></li>
              <li><a href="#">Loans</a></li>
              <li><a href="#">Insurance</a></li>
            </ul>
            <h3>Search</h3>
            <form method="post" action="#" id="search_form">
              <p>
                <input class="search" type="text" name="search_field" value="Enter keywords....." />
                <input name="search" type="image" style="border: 0; margin: 0 0 -9px 5px;" src="style/search.png" alt="Search" title="Search" />
              </p>
            </form>
          </div>
          <div id="content">
            <!-- insert the page content here -->
            <h1>Welcome <?php echo $row_Recordset1['FirstName']; ?>,to your control panel.</h1>
            <p><a href="logout.php">Logout</a> </p>
            <p>Summary of Last Transaction on our system:
             </p>
            <form name="form1" method="post" action="">
              <table border="0">
                <tr>
                  <th bgcolor="#D6D6D6">Date</th>
                  <th bgcolor="#D6D6D6">Transaction Type</th>
                  <th bgcolor="#D6D6D6">Transaction Amount</th>
                  <th bgcolor="#D6D6D6">Previous Balance</th>
                  <th bgcolor="#D6D6D6">Balance</th>
                </tr>
                <tr>
                  <td><?php echo $row_Recordset1['transactionDate']; ?></td>
                  <td><?php echo $row_Recordset1['transactionType']; ?></td>
                  <td><?php echo $row_Recordset1['transactionAmount']; ?></td>
                  <td><?php echo $row_Recordset1['OpeningBalance']; ?></td>
                  <td><?php echo $row_Recordset1['EndBalance']; ?></td>
                </tr>
              </table>
            </form>
    <p><a href="monthly.php">View Monthly Statement</a></p>
            <p><a href="paysomeone.php">Pay Someone</a></p>
            <p><a href="standingorder.php">Standing Orders</a></p>
            <p><a href="directdebit.php">Direct Debits</a></p>
            <p><a href="contactus.php">Customer Services</a></p>
            <p> </p>
            <p> </p>
    </div>
        </div>
        <div id="content_footer"></div>
        <div id="footer">
          Copyright &copy; Sundeep gurroby BCS PGD<a href="http://www.html5webtemplates.co.uk"></a>
        </div>
      </div>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>

Maybe you are looking for

  • Has anyone been getting a different video than the one you are clicking in youtube on ipad?

    Hello I've been experiencing weird stuff in youtube app in my ipad. whatever video I click, I get this same video of an indian song clip! i tried restarting, deleting history, signing out of my youtube account. pls help me :'(

  • Intel VT support?

    I have Lenovo V100 laptop which has Intel T5600 processor. I have 32-bit Arch and I try to run 64-bit guest OS in VMWare but it is complaining about disabled VT (intels Virtualizion Technology) support. I don't find any switch on BIOS, is there essen

  • Bought apps/music, then iphone broke

    I spent money on songs and apps on my iphone, purchased and cleared through itunes and then my phone crashed. Apple replaced it (they were wonderful) and I had it backed up but only until the day before I bought the music/apps I'm missing. Is there a

  • Selection screen for submit in BSP

    Hi Experts, I have gone throught the link to submit the program in BSP using varients, but i even want to see the selection screen for tht so tht user can post his own values over there. I tryed SUBMIT with different options but i am not able to see

  • Want some information about on VO

    i have a VO .in VO i have query and my query take five bind variable .it means i can not able to used this VO as different purpose .means when i used this VO that time i need to pass these variable .if i do not give any binding then it does not show