User problem trying to use Control Copy Key

Hi
What must be checked for problems when a user try to copy ( ctrl + C ) then paste on Excel and nothing happen??
I've checked Quick Cut and Paste ( ALT+F12 ), with a user works but not with other ( same PC)
Thanks in advance.
Moderator message - The forum is for ABAP questions - post locked
Edited by: Rob Burbank on Apr 28, 2009 10:46 AM

Is this an ABAP question??
Rob

Similar Messages

  • HT5858 i have an iPhone 4s, when I tried to use control center to skip songs ( or signs) or when my phone is locked, i double press the home screen, i also can't skip songs. what's going on?

    i have an iPhone 4s, when I tried to use control center to skip songs (>> or << signs) or when my phone is locked, i double press the home screen, i also can't skip songs. what's going on? please help me. i know the skip is being pressed because the sign lit up, but the song didn't skip. please help. thank you.

    I am having the same problem with my Iphone 4. After update the phone will not control audio from the control center (Friend with Iphone 4S is having same issue). Tried to reset phone and it started working "once". Next time I tried to use the control center it didn't work again. Their needs to be some kind of a fix for this?

  • Hi can anybody help please. I am having terrible problems trying to use my Nikon D7100 to tether. I have downloaded the latest Lightroom updates and also checked my firmware which is also the latest avaiable and still Lightroom wont detect my camera!

    Hi can anybody help please. I am having terrible problems trying to use my Nikon D7100 to tether. I have downloaded the latest Lightroom updates and also checked my firmware which is also the latest avaiable and still Lightroom wont detect my camera!. When I use a friends Canon camera it works every time!

    Hi Keith thanks for your reply I have Lightroom 5.7.1 64 bit and my Nikon's firmware is version 1.02

  • Problems trying to use built-in OWB 11.2 on Oracle RDBMS 11.2 (64 bit)

    I recently installed Oracle Enterprise RDBMS 11.2.0.1.0 (64 bit) on my 64-bit Windows 7 machine. I'm now trying to get the built-in OWB 11.2 installation working as well. I managed to create a repository on my database using the Repository Assistant. But I can't seem to get OWB Design Center to run at all: it crashes out with a Windows message "application cannot be started" as soon as it tries to run owbclient.bat.
    I've tried starting the Control Center Service via the options on the Warehousebuilder/Admin menu, and this seems to work - at least the status comes back as "available" when I click the "Check status" button - but the Repository Browser doesn't work either: the URL looks OK but there's nothing there.
    As far as I can tell I've followed the installation/configuration steps OK, but I can't work out what else I need to install/do to get an OWB client talking to a local OWB installation on a local Oracle 11.2 database. It really shouldn't be this hard.
    Has anybody else encountered/resolved the same problems?
    Or should I just scrap my installation and start again from scratch?

    Thanks, Richard.
    I downloaded Oracle 11gR2 for 64-bit Windows only a couple of weeks ago, so I would have expected the built-in OWB client installation to be compatible with 64-bit Windows as well. Maybe that's just a crazy dream.
    In the end, I gave up on the built-in OWB. Instead, I trashed the existing OWB installation in the database completely, then installed the OWB stand-alone client in a separate home on the same machine instead, re-installing the OWB schemas etc and creating a fresh repository on the DB in the process. This seems to work so far - at least I can log in to the OWB Design Center client as my repository user, which is a major step forward.
    I dunno - I've been working with Oracle for 20 years, but their installation processes always seems to trip me up somewhere with missing components, incompatible elements, screwed up network addresses, and so on. Guess I'm just a slow learner.

  • Problem trying to use a group by clause

    hey good day,
    i'm trying to use a group by clause in my application, but I'm getting the following error.
    Error:-  Query cannot be parsed, please check the syntax of your query. (ORA-00979: not a GROUP BY expression)
    select      "INSTRUCTOR"."EMPNUM",
          "INSTRUCTOR"."FIRSTNAME",
          "INSTRUCTOR"."LASTNAME",
          "QUALN"."SPECIALIZE_FIELD" as "SPECIALIZE_FIELD",
             "INSTRUCTOR"."USERNAME"
    from      "QUALN" "QUALN",
          "INSTRUCTOR" "INSTRUCTOR"
    where   "INSTRUCTOR"."EMPNUM"="QUALN"."EMPNUM"
    group by "INSTRUCTOR"."EMPNUM", "INSTRUCTOR"."FIRSTNAME", "INSTRUCTOR"."LASTNAME"Thanks in advance,
    Richie

    Richie wrote:
    hey thanks for your reply,
    i have tried what you have suggested, but now i got another error
    Error :- The report query needs a unique key to identify each row. The supplied key cannot be used for this query. Please edit the report attributes to define a unique key column. ORA-01446: cannot select ROWID from, or sample, a ...
    This error message is not from oracle, btu from your reporting tool. it might be MS Access or whatever other tool that you use. Some of these tools want a unique value to identify the current row. The logic applied depends on the relationship of your tables. however in your case you could do it without the group by condition. THen the rowid can still be applied to your query.
    Example
    note the usage of alias names to simplified the select
    select      i.EMPNUM ,
          i.FIRSTNAME ,
          i.LASTNAME ,
             i.USERNAME
    from      INSTRUCTOR i
    where   i.EMPNUM in (select q.EMPNUM from QUALN q);

  • Having a problem with creating/using a primary key on a view

    I have a problem with a primary key on a view
    I created the view and primary key as follows:
    CREATE OR REPLACE FORCE VIEW "MDD"."ROCK_LU" ("DESCRIPTION",
         UNIQUE ("DESCRIPTION") RELY DISABLE,
         CONSTRAINT "ROCK_LU_PK" PRIMARY KEY ("DESCRIPTION") RELY DISABLE) AS
    SELECT DESCRIPTION
    FROM MRMC_LU
    WHERE ROCK = 'T';
    The view with the primary key appears to have been created as there were no error messages. (The above was from the sql tab in sql developer.)
    When I try to create the foreign key on my mdd_hr table - I get an error
    /* hr_name - foreign key */
    ALTER TABLE mdd_hr add CONSTRAINT hr_name_fk FOREIGN KEY (hr_name) REFERENCES rock_lu(description);
    Error report:
    SQL Error: ORA-02270: no matching unique or primary key for this column-list.
    When I lookup the index in sql developer, rock_lu_pk is not there.
    All my other foreign keys work - but I don't understand what I am doing wrong with this one. Please help.
    glenn
    Background - as to why I want to use a view as a lookup table.
    The MRMC_LU table that the view is created from is structured like:
    DESCRIPTION - MINERAL - ROCK - MODIFIER - COMMODITY
    ANHYDRITE - T - T - T
    APLITE - T - - T
    GRAPHITE - T - - - T
    GREYWACKE - - T
    DESCRIPTION is a list of all names of minerals, rocks, modifiers and commodities. T is entered in each valid field. Often a description name is used for both a mineral and a rock or a mineral and a commodity or any other combination. Because this database is just starting up, it was more efficient to create one table that could be updated (and thereby automatically update the MINERAL_LU, ROCK_LU, MODIFIER_LY, COMMODITY_LU views) rather than create and maintain four separate but similar tables. A primary key cannot be generated for the MRMC_LU table as there are nulls in each column
    except DESCRIPTION.
    Perhaps there is a smarter way to do this?

    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_85a.htm#2065512
    You can specify constraints on views and object views. You define the constraint at the view level using the out_of_line_constraint clause. You define the constraint as part of column or attribute specification using the inline_constraint clause after the appropriate alias.
    Oracle does not enforce view constraints. However, operations on views are subject to the integrity constraints defined on the underlying base tables. This means that you can enforce constraints on views through constraints on base tables.
    Restrictions on View Constraints
    View constraints are a subset of table constraints and are subject to the following restrictions:
    You can specify only unique, primary key, and foreign key constraints on views. However, you can define the view using the WITH CHECK OPTION clause, which is equivalent to specifying a check constraint for the view.
    Because view constraints are not enforced directly, you cannot specify INITIALLY DEFERRED or DEFERRABLE.
    View constraints are supported only in DISABLE NOVALIDATE mode. You must specify the keywords DISABLE NOVALIDATE when you declare the view constraint, and you cannot specify any other mode.
    You cannot specify the using_index_clause, the exceptions_clause clause, or the ON DELETE clause of the references_clause.
    You cannot define view constraints on attributes of an object column.
    Rgds.

  • Problems, trying to use backup from 5.1.1 iOS Gen 3 iPod does not sync music to 4th gen iOS 6 iPod.

    My 3rd Gen iPod's headphone connector is basically shot, I've had it for around if not over two years now; sometimes I'm surprised it lasted this long; since I am not one who usually listens to her music without headphones, this is problematic, .
    Luckily, a family memberI know had a gen 4 iPod, 32g, same space amount as my old one, lying around that they don't use anymore, thank goodness.
    Well, in one case, not so much. First of all, said iPod was locked with a passcode (the passcode was guessed so many times because no one could remember it, it locked permenantly) so I had to completely wipe it. However, it wasn't so bad, though all the information was lost, I could finally use iOS 6 on an iPod.
    Well, iOS turned out to be a huge problem, in the way of synicing my old backup. I have about, um, an estimated 3000 songs on my 3rd gen iPod, that of which are not all on one computer, and are from multiple computers (my desktop / laptop); I thought all the songs would transfer over with the rest of my things. I didn't think the iOS made a difference.
    Lo and behold, I was dead wrong.
    When my iPod was restored to my previous backup, it had no music, only my pictures and apps were added. I'd call 'it annoyed me' an understatement. I waited all that time for the ipod to restore and the backup to finish, only to get my one hundered pictures and two apps.
    I have tried to look up how to extract music from my iPod, but to no avail, my computer recognizes it as a camera and I can only access the picture files; the way I read you have to do it online, you must be able to actually get into the iPod's folders, besides the picture folders, and I can't seem to do that; there was an option in earlier versions of iTunes that allowed the iPod device to be displayed as something other than a camera but it no longer seems to be an option in the new iTunes.
    All the programs for extracting files, specialized for iPod file extraction, actually, cost money, which at the moment, I don't have much of, this iPod was given to me by a family member, and I'm lucky I even have it. Manual extraction is also something I've tried but failed miserably at, as mentioned earlier.
    I'm really not up for re-synching one by one, I want this to be as quick and painless as possible. I have the available GB for my 3000 songs (I checked). Most of my songs are mp3s, and some are m4as. Not everything is bought, and not everything is going to be able to be downloaded through iCloud on account of the fact that there are, uh, over 2GB worth of songs, so does anyone have any solutions to my problem here? I have over 50gb in my desktop library alone, loads more in my laptop library, and I really don't feel like separating all the songs from my previous iPod into a single playlist, if there's a more efficient, free solution out there....
    This would not have been a problem in the first place, if the passcode was not there; but blame the previous owner of the 4th gen iPod for that. She typed it so many times it locked her out. And so, I had to reset, but not without an automatic update for iOS 6, which my gen3 can't update to, because it's, well, outdated.

    Connect the iPod to your computer and update to iOS 6.1.3. You need iTunes 10.7 or later on the computer.
    iOS 4: Updating your device to iOS 5 or later

  • Problem trying to use replaceAll with url string

    Can anyone give me some quick advice on how to replace part of a url? I'm trying replaceAll but I'm getting errors. My code is below. Thanks.
    String value = http://localhost:8280/portal/templates/page/library.jsp?foldId=libfold245696
    String hostName = "192.168.0.1";
    value = value.replaceAll("localhost",hostName);I want to replace "localhost" with the ip address.

    Here's the replaceAll version:
    package com.cellexchange.util;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.PrintWriter;
    import java.util.Enumeration;
    import java.util.Properties;
    * Created on Nov 3, 2005
    public class UpdateExternalLinks {
        private String hostName;
        private String fileName = "/server/fvm/conf/ExternalLinks.properties";
        private static final String pattern = "localhost";
        private Properties properties;
        public UpdateExternalLinks(String hostName,String jBossHome){
            hostName = hostName;
            System.out.println("hostName: " + hostName);
            fileName = jBossHome + fileName;
            readPropertiesFile();
        public static void main(String[] args) {
            if(args.length == 0) {
                System.err.println("Usage: UpdateExternalLinks %HOST_NAME% %JBOSS_HOME%");
                System.exit(1);
            else {
                new UpdateExternalLinks(args[0],args[1]);
        public void readPropertiesFile() {
            try {
                properties = new Properties();
                properties.load(new FileInputStream(fileName));
                Enumeration propertyNames = properties.propertyNames();
                while(propertyNames.hasMoreElements()) {
                    String key = (String)propertyNames.nextElement();
                    String value = (String)properties.getProperty(key);
                    System.out.println("key: " + key);
                    System.out.println("value: " + value);
                    String newValue = value.replaceAll(pattern,hostName);
                    System.out.println("newValue: " + newValue);
                    //properties.setProperty(key,newValue);
               // writePropertiesFile(properties);
            } catch (IOException e) {
                System.err.println("Problem reading properties file");
        public void writePropertiesFile(Properties properties) {
            try {
                properties.store(new FileOutputStream(fileName), null);
            } catch (IOException e) {
                System.err.println("Problem writing properties file");
    }

  • Problems trying to use WRT320n as AP

    Hi!
    I've been messing with this for days, reading different forums with lots of tips as to how to do this.
    It's really frustrating that I can't get it to work, so i'm hoping someone will have the answer
    I have my main router, it's a modem/router setup (in one) with a LAN ip: 192.168.1.1 (standard).
    I have a ethernet cable from ethernet port 1 in my main router, and wired in ethernet port 1 on my WRT320n.
    I started off resetting my WRT320n for 30 seconds, and right after I switched the power off for another 30 seconds. (pulled the cord).
    Then I accessed the setup via my laptop which is wired.
    Started off setting up the wireless bit, same SSID, encryption and passphrase as my main router (wpa2/AES) Both mixed mode.
    Gave the router an ip: 192.168.1.2.
    Disabled DHCP.
    Basically what I want is, when the signal gets weak from my main router, the WRT320n takes over but uses the main router as DHCP.
    I can see that my device get's a LAN ip from my main router, but I have no flow what so ever.
    Can't ping anything LAN/WAN side, nothing.
    If I wire my laptop to my WRT320n router, I seem to have a connection, as I can ping both the router, and my main router but as soon as I go wireless, no flow.
    It's getting very frustrating and I honestly have no idea what to do now, so any help would be much appreciated
    Thanks in advance!

    Hi Krawlor, what you are trying to do is actually possible if you have a range extender instead of another router. Basically, the reason why you cannot have a seamless connection from the main router to the WRT320N is because even if they have the same SSID, they are being detected by your computer as two separate networks. What you can try to do is setup a different name instead for both networks and set your computer to connect automatically to both. That way, you can identify which one is which and the computer will just  be able to connect to the nearest network without you doing it manually.

  • Problems trying to use simplified Chinese input

    I went to System Preferences > International > Input > Checked the box labeled "simplified chinese" and all the secondary boxes and yet when I try to switch to Chinese using the input menu the options for Chinese are faded and unclickable. Is there anything I should install?

    davisdartman wrote:
    when I try to switch to Chinese using the input menu the options for Chinese are faded and unclickable. Is there anything I should install?
    Does this happen in TextEdit?  If not, what apps?

  • Getting error while trying to use restrcted key figures in bo, please help

    there is query in the BW on which the query is developed with some restrictive key figures
    when we import this query into bo all fine
    but when we tried to use these restricted key fig i am getting this error
    there no problem of importing all other queries only on this cube, the quereis on this cube
    i got error like this.. ALL IN THE BOX
    web intelligence
    X      Query 1 - ITLT Dashboard-Group Cost & Category (HFM)
             A database error occured. the data base error text is : The MDX query SELECT
             [Measure],[ 4L93.....
             COLOUMNS,NON EMPTY HIERARCHIZE (UNION ([Z_S_FUC
          INCLUDING[OFISCPER3].[001]failed to execute with the error unknown error, 9WIS 10901)
                                             CLOSE             HELP

    I am moving this post to the Webi forum as the issue seems to be related to webi using data from BW.
    The OnDemand forum is specifically about the crystalreports.com and bi.ondemand.com applications.
    Cheers
    Steve

  • Copying Key Figure

    I have created an agg. level on a plan cube to input Planned Hours at a cost center level (Employee Excluded from Agg Level).
    I then want to assign these planned hours to EVERY employee within that cost center. I currently have Master Cost Center as an attribute of 0EMPLOYEE, and I have created a characteristic relationship on 0EMPLOYEE to Cost Center. I am trying to use a copy function on a new Agg. level that includes employee, but have not been successful.
    I am able to successfully perform the copy function if I specify exactly which employee I want to copy to, but how can I copy this key figure to ALL employees within this cost center?
    Ex: Cube contains the following:
    Cost Center   Plan Hour
    0000006405   155       
    I want top copy the value 155 to ALL empoyees who are contained within the employee attribute cost center 6405.
    Emp:  Emp_CC     Cost Center   Plan Hour
    123     6405           6405            155
    145     6405           6405            155  
    156     6405           6405            155
    In the copy function, I am using # (not assigned) as the from value. This works if I input a specific employee as the to value. I have attempted to use ># as the "to" value in the copy function, and that produces the error "cannot generate combinations in step 00."

    Definitely on the right track. Can you please be more specific?
    THe FOREACH loop is not returning any values for employee. In debug, it looksl ike this is trying to loop all entries of 0EMPLOYEE that already exist in the cube. Initially there won't be any employees in the cube. I am wanting to read the MD table of 0EMPLOYEE.
    Here is what I have so far:
    DATA ZEMP TYPE 0EMPLOYEE.
    DATA CC TYPE 0MAST_CCTR.    <= This is the CC in the cube
    DATA EMP_CC TYPE 0MAST_CCTR.   <= This is the 0EMPLOYEE attribute Cost Center
    BREAK-POINT.
    CC = OBJV().
    FOREACH ZEMP.   <= This foreach has no entries
    EMP_CC = ATRV (0MAST_CCTR, ZEMP).    <= Therefore this EMP_CC is blank
    IF EMP_CC = CC.
    {WCCMTRGD, ZEMP} = {WCCMTRGD, #}.
    {WPLGLPRC, ZEMP} = {WPLGLPRC, #}.
    ENDIF.
    ENDFOR.
    Any additional info would be greatly appreciates.
    Thanks!

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

  • I have replaced my ibook hard drive but when I start up I get a folder with a flashing question mark. I have tried installing the OSX disk using the "C" key but can't get any further than the flashing "?." What do I do? What is the problem?

    I have replaced my ibook hard drive but when I start up I get a folder with a flashing question mark. I have tried installing the OSX disk using the "C" key but can't get any further than the flashing "?." What do I do? What is the problem?

    Which iBook do you have?
    http://support.apple.com/kb/HT1772?viewlocale=en_US
    Which version of the OS is installed, and which version are you trying to install?
    You could try starting up with Startup Manager and see if it will allow you to select the OS X install disc as the startup disk. If so, maybe you can proceed from there. I would recommend repairing the hard drive first since you are evidently having a bit of a problem with it.

  • Key code 24 using control down - no longer works in 10.6

    I have a script that should open a dialog box to make a picture using Copernicus. the command I try to invoke is 'Control ='.
    here is the script.
    tell application "Copernicus"
    activate
    delay 2
    tell application "System Events"
    key code 24 using control down
    end tell
    end tell
    or alternative I tried:
    tell application "Copernicus"
    activate
    delay 2
    tell application "System Events" to keystroke "=" using control down
    delay 5
    end tell
    However both do not work, it does do nothing on - key code 24 using control down -.
    If I do a manual 'Control =' it works regardless if the Application is active or in the background.
    Has anything changed in 10.6 that this sort of code no longer works? How do I set it up for this to work?
    Message was edited by: ChangeAgent

    Pierre L. wrote:
    I have downloaded Copernicus 1.5.2 (Build 15) just to better understand the issue.
    is what I use.
    However, I am unable to find any “Control =” keyboard shortcut in any menu of that application. Does that shortcut belong to Copernicus, or is it a shortcut that you have added yourself in the Keyboard pane of the System Preferences?
    I added it replacing 'F7' for various reasons. however “Control =” works if I do it via the keyboard.
    As for me, after assigning a “Control =” keyboard shortcut to a TextEdit menu command, I have no problem invoking it from the following script.
    *tell application "TextEdit" to activate*
    *tell application "System Events"*
    *key code 24 using control down*
    *end tell*
    OK. as said it works using the keyboard, but not via the script. could it have something to do with Copernicus? I simply do not understand as to why it does not work using a script.

Maybe you are looking for

  • Ajuda para recuperação de Arquivo.

    Tenho um Iphone 4S e comprei um 5S tirei umas 2 mil fotos com 5S, ai resolvi passar as coisas que tinha no 4S para 5S como aplicativo, contatos etc. Conectei 4S no Itunes fiz o backup dele por completo, logo em seguida pegeui o 5S conetei no mesmo It

  • I have 2 iphoto libraries and duplicates of everything

    I set up my macbook pro wrong 2 years ago and am suffering for my stupidity.   I have 2 iphoto libraries, both with different photos in them.  Last week I imported photos from one library into the other and now I have 56,000 photos, most of which are

  • Error while Configuring AD external authentication plug in

    Hi While configuring Active directory external authentication plug I am getting following error OID Active Directory Plug-in Configuration Please make sure Database and OID are up and running. Please enter Active Directory host name: clmad101.ad.comp

  • How do you restrict rows returned in a group by query

    I have a select statement with a "group by" and a "order by" clause and I want the number of rows returned restricted to the first 10. Normally this is easy using rownum but it does not work in my case with the "group by" and a "order by" clauses. An

  • Workbook not saving in ROLE

    Hello, I have one workbook in direct BI production. What happened user having "create authorization"' and after creating he has saved in Favorites. Now he wants that particular workbook to be saved in existing role so that i will be available for oth