Can't drag the currency key in local currency to the pool of fields not use

Hi everyone,
Hopefully you can enlighten me with this issue coz im trying to drag the currency key in local currency to the pool of fields not used (UCWB<Data Model<Data Basis<Data Model(TAB)) but nothing happened, i can't transfer it to the pool of fields not used.
Note:I came with this decision(transferring the currency key in local currency to the pool of fields not used ) because SAP prompt me with this:
The currency key in local currency is not required in the data basis. It is merely an implicit part of the data model
I really dont have any idea why i can't drag it to the pool of filed not used, i tried to look for some sap notes but i can't find one.
thanks in advance

Hi Dan,
Actually it is not really an error, i just would like to pattern the configuration of our newly upgraded BI server  to our BW server.
In our BW server, the currency key in local currency is mapped to the pool of fields not used. I can't seem to do the same in the BI server because everytime I try to drag the currency key in local currency to the pool of fields not used, nothing happens, it isn't mapped.

Similar Messages

  • I don't use many genre's, how can I delete the ones I do not use?

    In iTunes the genre list has many that I don't use.
    I would like to delete the ones I am not using.
    Does anyone know how to do that?
    I know how to add genre's, I just cant figure out how to delete them.

    Well, I think I understand that in iTunes, the Genres listed are "only" the genres found in each music file.
    However, after clicking on "get info" and then looking at my "INFO" page, when I select change Genres, a multitude of genre options appear, the ones I have added, AND a bunch that I never use, and never intend to use, e.g. soundtrack, dance, alternative, trance, unclassifiable, techno, religious, pop, new age, industrial, house, blues/R&B, Folk, Holiday, hip hop, etc.
    So there in lies my question, how do I delete (get rid of)  the genre options that I never use, and never intend to use.

  • How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want.

    How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want

    Near the right-end of the address bar is a white star which can be difficult to see, but look closely. When you wish to bookmark a shortcut to the toolbar, double click the star. A window will open with the name of the webpage. Under that is the folder box which will probably read 'Unsorted Bookmarks'. Click the drop down arrow and change it to 'Bookmarks Toolbar' then click done.
    I have several folders on my toolbar such as Music, Mail, etc. in which I add multiple websites. If you wish to add a folder, click the second drop down arrow next to 'Bookmark Toolbar' and click 'New Folder' and give it a name.
    To add a bookmark to a folder, again double click the star, make sure you are in Bookmark Toolbar and click one of the two drop down arrows to find the name of the folder.
    For other bookmarks use Bookmark Menu. Whatever is added here can be accessed by Bookmarks on the Menu Bar. If your Menu Bar with Bookmark, File, View, etc. is not visible, click the Alt key and they will become visible. To keep the Menu Bar, click View, Toolbars and check Menu Bar.

  • HT1203 How do you put music from one itunes account to another? Can you drag the music?

    How do you put music from one itunes account to another? Can you drag the music?

    You can use Home sharing

  • I would like to copy my iPhoto (9.4.1) library from my Mac Pro (10.7.5) to a Macbook Pro (10.7.5). Can I drag the iPhoto Library to Air Drop and send them to the MacBook? Will that then be a usable iPhoto library on the Macbook?

    I would like to copy my iPhoto (9.4.1) library from my Mac Pro (10.7.5) to a Macbook Pro (10.7.5). Can I drag the iPhoto Library from the Pictures folder to Air Drop and send them to the MacBook? If I then move that to the Pictures folder on the MacBook will that then be a usable iPhoto library on the Macbook?

    It would be better if you could connect the two Macs via a hard wired LAN to copy the library from the Mac Pro to the MacBook.  Wireless connections can have momentary dropouts which could affect the reliable copying of files. 
    If you do go with Air Drop be sure to open and inspect the copied library closely to confirm it was a successulf copy.
    OT

  • I can't drag the Icon into the Applic. folder

    I have a iMac and can't drag the FF icon into the Applications folder

    Firefox 5 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 5 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html

  • Can't drag the divider of HDividedBox

    hello everyone, this is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" >
    <fx:Script>
      <![CDATA[
       protected function btnRemove_clickHandler(event:MouseEvent):void
        while(hbox.numChildren>0){
         hbox.removeChildAt(0);
       protected function btnAdd_clickHandler(event:MouseEvent):void
        hbox.addChild(a);
        hbox.addChild(b);
       protected function btnAddNew_clickHandler(event:MouseEvent):void
        var p:Panel = new Panel();
        p.title = "C";
        p.percentWidth = 50;
        hbox.addChild(p);
        var p2:Panel = new Panel();
        p2.title = "D";
        p2.percentWidth = 50;
        hbox.addChild(p2);
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:layout>
      <s:VerticalLayout/>
    </s:layout>
    <s:Button label="Remove" id="btnRemove" click="btnRemove_clickHandler(event)"/>
    <s:Button label="Add" id="btnAdd" click="btnAdd_clickHandler(event)"/>
    <s:Button label="AddNew" id="btnAddNew" click="btnAddNew_clickHandler(event)"/>
    <mx:HDividedBox width="100%" height="100" id="hbox">
      <mx:Panel title="A" id="a" width="100%" height="100%">
      </mx:Panel>
      <mx:Panel title="B" id="b" width="100%" height="100%">
      </mx:Panel>
    </mx:HDividedBox>
    </s:Application>
    my problem is :
    when i first load the application,i can drag the divider of  HDividedBox.
    after i click the remove button,remove all children of HDividedBox.
    i click Add Button  ,add the old child, but i can't drag the divider again.
    i click AddNew Button ,sometime can drag the divider but sometime can't
    it is so strange.i cost a lot of time on it ,but can't find the reason.i need some help to resolve it,thanks!

    Try adding hbox.validateNow() after adding or removing children?

  • I keep getting the start menu and various programmes opening when I use a series of keys when working in my accounting programme, I am not using the command key and is very frustrating me, can anyone help me?

    I keep getting the start menu and various programmes opening when I use a series of keys when working in my accounting programme, I am not using the command key and is very frustrating, can anyone help me?  I am working on a Mac OS X Version 10.6.8, just need to know if I can reprogram the keys to stop this happening?

    Safari browser and menu shortcuts:
    http://docs.info.apple.com/article.html?artnum=42951
    Mac OS X keyboard shortcuts:
    http://support.apple.com/kb/HT1343
    http://docs.info.apple.com/article.html?artnum=75459
    Changing behavious of Function Keys:
    http://support.apple.com/kb/HT3399?viewlocale=en_US
    and more useful information on keyboard shortcuts here:
    http://www.myfirstmac.com/index.php/mac/articles/mastering-keyboard-shortcuts
    How to re-map individual keys:
    http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=ukelele

  • My I pod only works with double click and I can't  drag the screen with my finger?

    Hi,
    My i-pod doesn't work very well at the moment.
    I can't drag over the screen en have to double click on my screen. I can't drag the screen from left to rigth and not from above to below.
    The hard reset didn't work and i can't reach the menu where i can restore all setting. My son alternated one of the direction.
    who can help me?
    thanks
    gtz Ton

    You have the accessibility VoiceOver feature turned on.
    Triple click the home button and try going to Settings>General>Accessibility and turn VoiceOver off. You may have to use three fingers to scroll the screen to get there. If problems see the following for how to turn off via iTunes:
      iPhone: Configuring accessibility features (including VoiceOver and Zoom)

  • How can i get the list of all tcode used by user of particular module

    Hi,
    How can i get the list of all tcode used by user of particular module (e.g FI , MM ,PP) within year .
    Regards
    Vikram

    Login to your SAP System
    Run TCode SE16
    Type Table Name : TSTCT
    Press F7 Key (Table Contents )
    Go to Settings in menu bar
    Select User Parameters
    Under Keyword select Field Label and press green check mark
    Select your criteria in Data Browser and execute
    You will see all t codes in there
    Regards,
    Yogesh

  • How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    So what is your question?
    If you forgot your encryption password:
    Warning: Make sure it's a password you will remember or write it down for safekeeping. If you encrypt an iPhone backup in iTunes and forget your password, you can't restore from backup and your data will be unrecoverable.
    If you can't remember the password and want to start again, you must perform a full software restore and chooseset up as a new device when iTunes prompts you to select the backup from which to restore.
    The above comes from here:
    http://support.apple.com/kb/HT4946

  • My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer

    My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer.

    Maybe this: http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html ?
    Do you have a link to that document?

  • Can I install the online version rather than using my dvd? it successfully installed (up to a point) that way, it just wont accept my serial number for some reason. my dvd isnt working properly.

    Can I install the online version rather than using my dvd? it successfully installed (up to a point) that way, it just wont accept my serial number for some reason. my dvd isnt working properly.

    If it gets far enough to reject your serial number, it won't help to download it. It must have installed ok.
    What is the message you get (DON'T tell us the serial number!!)?
    Does it mention a "qualifying product" by any chance?

  • How can I see the information about a file used in a sequence?

    How can I see the information about a file used in a sequence?

    You can use pretty much any two or multiple button mouse on a Mac, right out of the box.
    I use this one: http://www.apple.com/mightymouse/

  • Windows vista home premium service pack 2.error measage __(the windows installer service could not be accessed.this can occur if the windows installer is not correctly installed .contact your support personnel for assistance )no error nurber

    windows vista home premium service pack 2。error measage __(the windows installer service could not be accessed.this can occur if the windows installer is not correctly installed .contact your support personnel for assistance )no error nurber

    Hi Abdallah,
    According to your description, could you please post the summary and detail logs for further analysis? By default, the logs can be found in: C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log.
    Usually, the error occurs when the Windows Installer Service is not running or the Windows Installer registry settings are corrupted.  I recommend you reset the Windows Installer Service settings in the registry and restart the Windows Installer Service,
    then reinstall SQL Server 2008 R2. For more details, please review this similar
    article.
    Thanks,
    Lydia Zhang

Maybe you are looking for

  • HP C3180 will not show up on printer list or set up assistant??

    When I try to add my new HP C3180 all in one printer, it will not show up on the printer list, or in HP set up assistant, and searches for new drivers fails to bring up any printers. My G4 does not seem to recognize the C3180 printer. Looked for upda

  • Cluster startup error

    I am trying cluster to setup a cluster on a fresh install of WLS 8.1, I get trhe following error while starting weblogic server. <Jan 17, 2006 8:45:52 PM PST> <Warning> <EmbeddedLDAP> <BEA-171520> <Could not o btain an exclusive lock for directory: .

  • Could not find the group name.

    HI, I executed the below VBS  file in Windows 7 Enterprise Edition workstation and received "Could not find the group name. Code :800708ac" GetObject("WinNT://" + WScript.CreateObject("WScript.Network").ComputerName + "/Administrators").Add"WinNT://M

  • Received this message earlier. Is it genuine or a scam? reference iTunes

    Dear Customer, This is an automated message system so you know you have to confirm your account information within 24 hours. This will help protect you in the future. The process takes no more than 3 minutes. To perform confirm your account informati

  • Cost centers in sales order creation

    I know it's possible to input the Profit center when creating a sales order (VA01)under the account assignment tab. Is there any configuration that can be done so that the user will be able to enter cost center? Thanks for your prompt response.