Question on several similar mappings

All,

I'm having a hard time to do the following to work, and I wonder if my thinking is completely wrong.

I have a field with the accounting codes / descriptions.

for example

The source account

12345 - sales

In order to load to Essbase, I need to remove the description. I couldn't find a way to do it in FDMEE natively, so I wrote a #SQL Script in the map AS

for example

SUBSTR (Account, 1, 5)

It gives me what I need (12345 in this case).

However, I must also sign flip all account that begins with a 4, so I added another as the mapping:

Source, target, SignFlip set to True

4 *, *, check for sign Flip

No matter how to order those, I can't do any account with a 4 to switch the two mappings. I can get the description of undress, OR I can reverse the sign, but I need to do both.

FDMEE cannot handle a mapping by column for each record? Is it still possible? If no, what are the other alternatives it via SQL or Jython?

Thank you

If so, you can set your #SQL Script:

SUBSTR (Account, 1, 5)

, AMOUNTX = (CASE WHEN COUNTS AS 4% ' THEN AMOUNT *-1 OTHER AMOUNT END)

Tags: Business Intelligence

Similar Questions

  • Exception [TOPLINK-48] several writable mappings exist for field

    Hi all
    I am quite new to JPA and Toplink and I try to write simple using toplink essentials JPA application as the persistence however, provider when I comppile the code, get the errors below saying that several writable mappings exist for a field that is [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. The thing is, I have not tried map this field i.e. J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE to multiple cards, so I'm a little confused as to why I get this error. I have attached all the code and error messages associated with. I was hoping that someone will be able to help


    The error is
    Runtime Exceptions:
    ---------------------------------------------------------
    ; nested exception is:
    javax.persistence.PersistenceException: Exception [TOPLINK-0] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.IntegrityException
    Exceptions of descriptor:
    ---------------------------------------------------------

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [branch_Addr_Road_Name-> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [bankName-> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [branch_Addr_Locality-> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [branch_Addr_City-> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [branchName--> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-48] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: several writable mappings exist for the field [J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]. Only one can be defined as writable, all others must be specified read-only.
    Mapping: oracle.toplink.essentials.mappings.DirectToFieldMapping [branch_Addr_Postcode-> J2EEUSER. BANKS. BRANCH_ADDR_POSTCODE]
    Descriptor: RelationalDescriptor (com.gworx.Bank-> [DatabaseTable (J2EEUSER. BANKS)])

    Exception [TOPLINK-46] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (06/12/2007))): oracle.toplink.essentials.exceptions.DescriptorException
    Description of the exception: there should be a mapping not only reading set for the primary key field [J2EEUSER. ACCOUNTS. SORTCODE].
    Descriptor: RelationalDescriptor (com.gworx.Account-> [DatabaseTable (J2EEUSER. ACCOUNTS)])


    The entity class is
    package com.gworx;
    import java.io.Serializable;
    
    import javax.persistence.*;
    import javax.persistence.CascadeType;
    
    @Entity
    @IdClass(BankPK.class)
    
    
    @Table(name = "BANKS", schema = "J2EEUSER")
    public class Bank implements Serializable {
         
    
         
         /**
          * 
          */
         private static final long serialVersionUID = 1L;
    
         @Id
         @Column(name = "BRANCH_SORTCODE", nullable = false, precision = 6, insertable=false, updatable=false)
         long sortcode;
         
         @Basic()
         @Column(name = "BANK_NAME", nullable = false, insertable=false, updatable=false)
         String  bankName;
         
         @Basic()
         @Column(name = "BRANCH_NAME", nullable = false, insertable=false, updatable=false)
         String branchName;
         
         @Basic()
         @Column(name = "BRANCH_ADDR_HOUSE_NAME", nullable = false, insertable=false, updatable=false)
         String branch_Addr_House_Name;
         
         @Basic()
         @Column(name = "BRANCH_ADDR_ROAD_NAME",nullable = false, insertable=false, updatable=false)
         String branch_Addr_Road_Name;
         @Basic()
         @Column(name = "BRANCH_ADDR_LOCALITY", nullable = false, insertable=false, updatable=false)
         String branch_Addr_Locality;
         @Basic()
         @Column(name = "BRANCH_ADDR_CITY",nullable = false, insertable=false, updatable=false)
         String branch_Addr_City;
         @OneToOne(cascade=CascadeType.ALL)
         @Basic()
         @Column(name = "BRANCH_ADDR_POSTCODE", nullable = false)
         String branch_Addr_Postcode;
         
         public Bank(){}
         
         public Bank(
                        String bankName,
              String branchName,
              long sortcode,
              String  branch_Addr_House_Name,
                  String  branch_Addr_Road_Name,
                  String  branch_Addr_Locality,
                  String  branch_Addr_City,
                  String  branch_Addr_Postcode)
    
                     { 
              this.bankName=bankName;
              this.sortcode=sortcode;
              this.branchName = branchName;
                         this.branch_Addr_House_Name=branch_Addr_House_Name;
              this.branch_Addr_Road_Name=branch_Addr_Road_Name;
              this.branch_Addr_Locality=branch_Addr_Locality;
              this.branch_Addr_City=branch_Addr_City;  
              this.branch_Addr_Postcode=branch_Addr_Postcode;
              
         }
         
         public void setSortcode(long sortcode){
              this.sortcode =sortcode;
         }
         
         public long getSortCode(){
              return this.sortcode;
         }
    The PK class is
    public class BankPK implements Serializable {
         
         public long sortcode;
    
         public BankPK(long sortcode){
              this.sortcode = sortcode;
         }
    
         public boolean equals(Object obj){
              
              if(obj==null || !(obj instanceof BankPK)){
              
                   return false;
              }
              else if (((BankPK)obj).sortcode ==sortcode)
              return true;
              else
                   return false;
              
         }
         
         public int hashCode(){
    
              StringBuffer buff = new StringBuffer();
              buff.append(sortcode);
              int hashCode =buff.hashCode();
              return hashCode;
         }
         
    
    }
    My bean of stateless session that I use to create to create the entity is
    package com.gworx;
    
    import javax.ejb.Local;
    
    import javax.ejb.Stateless;
    import javax.persistence.*;
    import javax.ejb.Remote;
    import com.gworx.BankBeanRemote;
    
    
    
    /**
     * Session Bean implementation class BankBean
     */
    @Stateless
    
    public class BankBean implements BankBeanRemote {
    
        /**
         * Default constructor. 
         */
         
         
         @PersistenceContext
         
         
         EntityManager entMgr;
         //public Bank bank; 
         
         public Account account;
         
         long sortcode, cust_id;
         
         //Bank Details
         String  bankName,branchName,branch_Addr_House_Name,
         branch_Addr_Road_Name,branch_Addr_Locality, 
         branch_Addr_City,  branch_Addr_Postcode;
         
         
         //Customer specific Details
         String cust_Surname,cust_Middlename,cust_Forename,
         cust_Addr_HouseName,cust_Addr_RoadName,
         cust_Addr_Locality,cust_Addr_City,cust_Addr_PostCode;
         
        public BankBean() {
            // TODO Auto-generated constructor stub
        //     entMgr=emf.createEntityManager();
        }
    
       
       public void  make_A_Bank(
                 String bankName,
                  String branchName,
                  long sortcode,
                  String  branch_Addr_House_Name,
                  String  branch_Addr_Road_Name,
                  String  branch_Addr_Locality,
                  String  branch_Addr_City,
                  String  branch_Addr_Postcode
                  )
    
                                   {
                 this.sortcode=sortcode;
                 this.bankName =bankName;
                 this.branchName = branchName;
                         this.branch_Addr_House_Name=branch_Addr_House_Name;
              this.branch_Addr_Road_Name=branch_Addr_Road_Name;
              this.branch_Addr_Locality=branch_Addr_Locality;
              this.branch_Addr_City=branch_Addr_City;  
              this.branch_Addr_Postcode=branch_Addr_Postcode;
              
              Bank bank = new Bank( bankName,branchName,sortcode,branch_Addr_House_Name,
                        branch_Addr_Road_Name,branch_Addr_Locality, 
                        branch_Addr_City,  branch_Addr_Postcode);
              entMgr.persist(bank);
              
              //return bank;
        }
    
    
    public void make_An_Account(Bank bank, Customer customer, long accNum,
              AccountType accType) {
         
         Bank tempbank = entMgr.find(Bank.class, bank.getSortCode());
         Customer  tempcust=entMgr.find(Customer.class, customer.getCustomerPK());
         Account acc = new Account(tempbank, tempcust, accNum, accType );
         entMgr.persist(acc);
         
         //return acc;
    }
    
    
    public void make_A_Customer(String cust_Surname,
              String cust_Middlename, String cust_Forename,
              String cust_Addr_HouseName, String cust_Addr_RoadName,
              String cust_Addr_Locality, String cust_Addr_City,
              String cust_Addr_PostCode) {
         
         
         Customer cust = new Customer(cust_Surname,cust_Middlename,cust_Forename,
                   cust_Addr_HouseName,cust_Addr_RoadName,
                   cust_Addr_Locality,cust_Addr_City,cust_Addr_PostCode);
         
         entMgr.persist(cust);
         
         //return null;
    }
    
    
    public void make_A_Bank() {
         // TODO Auto-generated method stub
         
    }
        
        
    }
    The client application is
    package com.gworx.client;
    import javax.ejb.EJB;
    
    import com.gworx.BankBeanRemote;
    
    public class BankClient {
    
         /**
          * @param args
          */
    @EJB 
    private  static BankBeanRemote testbean;
    
    public BankClient(){
         
    }
         public static void main(String[] args) {
              // TODO Auto-generated method stub
                   
                        testbean.make_A_Bank(
                        "Test_Bank_Name", 
                        "Test_Bank_Branch_Name", 
                        010102,
                        "Test_House",
                        "Test_Road_Name", 
                        "Test_branch_Locality", 
                        "Test_branch_City", 
                        "E2 8DY");
              System.out.println("Bank Created, Check DB tables to verify creation!!");
         }
    
    }
    Thank you

    Published by: Geedo on July 16, 2009 10:06

    It seems that you still have the ear old hang out. Maybe clean your server or build/deploy directory.

  • Several similar Bluetooth devices

    Hi all

    I'm curious to know if anyone has an effective way to manage several bluetooth on their iPhone, particularly similar bluetooth devices.  Here's my scenario specific household:

    I have 3 Bose Soundwave mini in different areas around the House and bring with me to work, a living room stereo system using a logitech bluetooth receiver, stereo room bedroom using a similar receiver and a stereo in my backyard using the Roverbeats Unify bluetooth receiver and another in my garage with a similar Roverbeats receiver.

    Often with receivers, my phone will connect to a receiver in the other room, although it is literally in front of the receiver, I want to associate.  I'm so often or having to choose between keeping the receivers do not use unplugged, by selecting "forget connection" on my iPhone every time and just rematching.  With the mini Bose I have not found a way to rename each different unit which is confusing, as they are all labelled the same in my list of Bluetooth connections (I am able to rename every single unit on my Macbook, but that will still be often confused and have connection problems, making me forget all connections with all minis just reconnect from scratch).  I have every Mini labeled with A/B/C, but do not have a way to differentiate one on my iPhone.

    So, basically, I feel constantly forget liaison and/or keep some receivers unplugged.  Has anyone found any bluetooth utility function simplified to establish connections rename / prioritize?   I have an iPhone 5 9.3.2.

    The name change you make on your computer just the fact it not on the device BT itself. Because there is no user controllable files management, there is no similar to iOS functionality. I don't know of any utility that will help you. The only thing I could suggest is turn off BT devices and turning them on only when you will contact them.

  • Number of antennas router question?  (Several gadgets WiFi using 1 router)

    -My House is a 3 storey 5 bedrooms single family home.  There are 4 people living under his roof and each person has at least 3-4 items wireless who rely on our network domestic wi - fi.  Include wireless iPhone 2 of 6, 3 iPhone 5, 2 iMac (an older and a new one), 1 airbook, 1 MS Surface, 2 older laptops Apple (the old 1 "thick white), 2 iPads, Kindle 1-2, frame 1 photo wireless, 3 printers, wifi, 1 Sony PlayStation4 (via wifi) and much more.

    Our current router is a double (2.5 and 5) and we use them both, and we had recently a technician change the channels, so we are not in competition with the neighbors.  The router signal strength is strong in the home to most of the places.

    My question: with so many features, would be useful to have several routers with multiple antennas to accommodate this request, or made this same question?

    My current router has 3 visible external antennas.  I read that the Airport Extreme has 6 internal antennas.  I'm ready to go buy Airport Extreme, if 3 additional antennas can help, or if I can use two routers for a total of 9 antennas (if this is important).

    Our services to wide band is xfinity and we have one of their fastest options.  Not quite the 105, but about 80.

    Any suggestions?

    Several wireless routers will tend to work better than the Gothic pulpit super multi-antenna a monster looking for router.

    But they all need to be connected with the ethernet.

    Read how to get excellent wireless in your House.

    http://www.SmallNetBuilder.com/basics/wireless-basics/31576-the-best-way-to-get-ensemble-Maison-sans wire-coverage

    External antennas tend to be more effective than internal, but the actual number of antennas is easily overrated.

    Most of the antennas used on routers now are dual band... which means inside the plastic, they have sections for the two bands... If an antenna is really two.

    Our current router is a double (2.5 and 5) and we use both

    Is what model exactly? Of basic etiquette please.

    We had recently a technician change the channels, so we are not in competition with the neighbors.  The router signal strength is strong in the home to most of the places.

    It would have been correct for the first 5 minutes after the technician left the House and then totally out of place. Channel of all the equipment that surrounds you change every day, every hour... maybe every 5 min. While I don't disagree with fixing channel... others would say that it should be left on auto. You gain nothing much at all.

    If the signal strength is good over a 3-storey house, you are incredibly lucky.

    You can't effectively add routers more unless you install ethernet to provide an infrastructure for data streams.

  • Transition from one question to several questions in DPS

    Trying to produce our first Apple kiosk application. When we started to deal with through DPS App Builder, we initially chose one question (the $49.95 / month). Then we went to DPS Pro and it will not change this field. (Screenshot see attached). This field is grayed out and won't allow it to be changed.

    Screen Shot 2012-12-03 at 12.22.11 PM.png

    Can someone tell us how to get it opted for several questions so that we can this kiosk to Apple instead of the iTunes App Store?

    Heidi

    When you change the type of application, you must create a new instance of the Viewer from scratch in DPS App Builder. To get the app in kiosk, you will need to create a subscription with push notifications enabled application. See the Companion Guide for more details.

  • With Mac OS 10.8.3 & FireFox 21.0, how to create folders in which to store several similar in nature bookmark icons?

    With earlier versions of MAC OS and Fire Fox, I created several folder in which I put bookmarks. For example, I have a folder of MEDICAL INFORMATION in which I placed several bookmarks. I want to create a completely new file for a different topic. I can't find a toolbar drop-down list that allows this and I can't find answer in the info on Firefox Help. What do you advise. Tom [email protected]

    See:

  • Question about several berries in a single storage pool

    A couple of years ago, we bought a PS4100x and that it has set RAID6. We were happy with our performance, but we are running out of storage space. We have recently acquired a PS6000e and PS4000xv that we seek to add to the default storage pool and to give us more storage capacity. I was able to successfully join the PS4000xv swimming like a RAID10 (performance gain) and want to join the PS6000e swimming like a RAID6 (provision of capacity).

    I've read several different positions on the problems of mixture of RAID levels and types of disk (SATA/SAS) and negatively impact SAN performance or downright causing failure of SAN. Furthermore, I continue to find mention of problems with the previous firmware. Unfortunately, I can't find anything current that will help me through this issue.

    My goal is to have the following 3 tables of EqualLogic in the default storage pool:

    • PS4100x (10 k SAS) RAID6 (approx. 15 to)
    • (15 k SAS) PS4000xv RAID10 (approx. 3 to)
    • PS6000e (7.2 k SATA) RAID6 (approx. 11 TB)

    Any help or advice would be much appreciated. Thank you!

    Reference Dell Dustin,

    You can mix both RAID and the types of players in the same pool.  That is supported.  Especially on current FW 7.1.5 and 8.0.2 just came out today in fact.

    When there are several members in the same pool, the data is distributed across members, in proportion to their relative sizes.  If the 15K Member will have only a small amount of data compared to the others.

    Often, when you buy a 15K member is for a specific purpose in mind.  Some of the benefits of faster spindle will be lost for more data on the volume will be on more/more members.

    You can set preferences for volume to R10 to ask more than the volume go.  You can start with the 15K in its own pool.  Later, you can merge the pools.

    If you are satisfied with your performance now and are not the intention of that greatly increases the load of I/O then you can keep them in the same pool and it will be much better overall performance.  Given that the members of the group are working together.

    In addition, during a sustained peak load, the advanced performance load balancer will exchange blocks of one very busy at a less crowded.  This helps out even the load.

    Kind regards

    Don

  • Question automate several tenants in vRO

    Hello

    I am struggling with managing several tenants with vRO and vRA.

    Currently there are a couple of tenants that are attached to a device unique vRO, but am looking to automate fully (fabric/Business groups, reservations, profiles of build, plans, etc..)

    VRO, we have only the default tenant set up (under vCAC Infrastructure Administration) because I can't add others. The tenant by default, I can't handle some of the above.

    It is advisable to deploy an instance of separate vRO to each tenant?

    Running vRO version 6.0.1 and vRA version 6.2.1

    Thanks in advance.

    To add a tenant in vRO, I run the workflow Library/vCloud Automation Center/Configuration/add a host vCAC.  This workflow ask you the name of the tenant.  So for me in the inventory, I have several entries under vCloud Automation Center.  Sometimes I even different instances for the same tenant, just using a different connection.

  • How to sign several similar pdf file in acrobat?

    I have 2700 pdf file similar for me to sign.

    What is the way opposite to all-in-one sign?

    You can use JavaScript to automate the process of applying a patch to one or more pages of a document and use a Custom Action to treat a collection of PDF files. More info is Acrobat JavaScript reference that is part of the free Acrobat SDK. I refer you to the online reference, but he has not worked for some time.

  • Question about several popular vm with the same kernel version

    So, I have been informed that ESX is smart enough for to run several virtual machines with the exact same kernel that it loads only one instance of the kernel in memory for all of them so that it saves space in RAM. This seems quite remarkable to me, and I'd like to see if VMWare has any white papers or other documents on this. I'd like to believe it's true, but it seems incredible to believe.

    Is this really how ESX functions? If I have 10 XP SP3 machines with the same level and exact same version of the kernel patch, VMWware won't really load only one instance of the core XP in RAM to separate the 10 machines? If he does that, how handles when 10 machines all want access to the same statement in kernel mode at the same time separate?

    Welcoem to the Forums - ESX will actually 10 instances of the core of the customer even if they are the same OS - but once loaded using Transparent Page Sharing the vmkernel (the o/s of the ESX Server) can recognize identical pages and store them a time-read only memory - if the virtual machine tries to write to that page a copy and writing is done - if this new page is another page in memory that one instance is maintained. This saves a TON of memory-

    If you find this or any other answer useful please consider awarding points marking the answer correct or useful

  • Check several similar or in an if statement. [AS2]

    Hello, I know this is probably a very obvious question, but I am new to Flash.

    I can do something like:

    If (jellyfish == 3, 74, 95, | 1006) {}

    Do things

    }

    Or would I need to do:

    If (jellyfish == 3: jellyfish == 74 | jellyfish == 95 | jellyfish == 1006) {}

    Do things

    }

    I would like to know if there is something more close to the first, or if I have to have pages in a single case statement.

    Thank you

    Christopher

    you need to do the latter, but if it is worth, you can use a loop for:

    var a: Array = [3,74,95,1006];

    for (var i: Number = 0; i<>

    {if(Jellyfish==a[i])}

    do things

    break;

    }

    }

  • Several SIMILAR orders - urgent

    Hello

    Could someone please write me a query for multiple SIMILAR commmand.

    Please find the following query:

    Select normalised_event_file_id from normalised_event_file
    where file name as)
    Select substr (description, 0, 17) in the tap_file where tap_file_type_code = 1 and sender_recipient = 'IDNSL. '
    (' and timestamp < 31 December 2010 ");

    So my inner query retrieves a few names, based on which results in the outer query.

    This may do the trick [not tested]

    select normalised_event_file_id from
    normalised_event_file,
    (select substr(description,0,17) a from tap_file where tap_file_type_code = 1 and sender_recipient = 'IDNSL'
    and timestamp < ':a') x
    where instr(a,filename) > 0
    

    Note ": one is a parameter, because u hv application incomplete.

    and timestamp<>

  • additional question from several slashes

    I use the ncurse to select my links. However, Dreamweaver generates him... /... / (folder back told me) and I can change the dreamweaversettings so that it doesn't?

    Love & peace to Mark Cedermark.

    mace1975 wrote:
    > I use the ncurse to select my links. However, Dreamweaver generates the
    > .../.. / (folder back told me) and I can change the dreamweaversettings so
    > they don't have?
    >
    > Love & peace Mark Cedermark.

    Hi Mark, it is actually 2 records back. To stop this, when you select the
    Link, change the links of links of the site document. That
    will change the links to /.

    You can also set this default value in your site manager.

    Dooza

    --
    Display guidelines
    http://www.Adobe.com/support/forums/guidelines.html
    How to ask Smart Questions
    http://www.CatB.org/ESR/FAQs/smart-questions.html

  • Satellite A210: Random Questions after several blue screens

    This morning at the College, I started my laptop (satellite A210)
    After entering the password started... after 5 seconds, I got a blue screen SHORT (3 seconds)... This can happen 5 times...
    then I was really p * ssed - I booted in safe mode... do you have a system recovery (in German "systemwiederherstellung")
    After doing that my laptop has begun... but now begins the horor

    1 Explorer.exe crash so that start up - so I have to start explorer.exe mauel with the Task Manager
    2. with this also sidebar, bar SCROLLING-option AND the menu upwards on the screen... you know... the one you get with the pointer on... then it appears and you can select things like brightness, volume or energysafeoptions...
    3. opening a folder takes almost 1 minute to show its files... (totally slow!)

    I ran TuneUp2008, O & O Defrag 10-Prof. and also ESET NOD32 Antivirus with the new definition (found nothing).

    ... Yes... what to do now? ... I don't know how to start programs from the point 2. and 3. ! Please tell me how!

    Yours sincerely Nico

    What should do?
    Take the recovery CD in the CD/DVD drive and try to restore the operating system from the Toshiba Recovery CD.
    After reinstalling the laptop should run correctly if it is not a hardware problem is possible.

  • A few questions about several issues around Satellite P10 (PSP16)

    Hi all

    First post! After about 3 months of no solution, I decided to pop in here. I recently acquired a Satellite P10-832 PSP16E.
    The laptop was in a bad state when I got it so I erased the HARD drive.
    The problem was that after that I reinstalled XP Pro top I could not Wifi works again. When I press FN and F8 nothing happens.
    I downloaded all kinds of things from the page of the driver on the toshiba site, but nothing seems to work.
    The same goes for the small buttons on the front (mode, play, pause, etc.)

    A pointer to the people one would appreciate it!

    Steve

    Hello

    The solution is very simple; You must install the correct drivers.

    The Toshiba page offers two different WLan drivers for this unit. Agere and Atheros Wlan driver.
    You must verify that the WiFi card has been installed and then install the correct driver.

    In addition you cannot use the FN keys because the right utility has not been installed!
    On the Toshiba driver page, you will find details for the unique software. You should check more information.

    You must E - Key and Easy Button applications.
    If you have installed SP2, then you need to check the information contained in Microsoft Windows XP SP2 update information that are placed on the page of Tosh too.

    Good bye

Maybe you are looking for