Loading key and/or description from BW into BPC

Dear all,
We have the requirement to load master data from BW into BPC 10 NW (SP4) and are facing some difficulties.
Depending on the property, we want to do the following:
- Load the attribute key into BPC property
- Load the attribute description into BPC property
- Load both concatenated using an underscore into BPC property
The loading process as such works and the concatenation would aswell, but so far I'm only able to load the keys into BPC. In the BW table I can see that the attribute has both a key and a description but I don't know how to select the description in BPC (either through transformation file, set selection, ...). Is there a standard functionality to select between a key and a description in BPC 10 or do I have to ask the BW-team to make an additional attribute with the description as a key?
Same goes for loading the member ID's and member descriptions for a specific dimension. There we want to fill the member ID in BPC with the BW description and use another BW description to fill the member description in BPC.
Any advice/input would be greatly appreciated!
Thanks in advance,
Matthias

Hi Matthias,
I have the same problem and I don't know how to solve it.
While loading master data into BPC InfoObjects (or as called in BPC jargon "Dimensions") I found out, that it is possible to load the Attribute ID's relatetd to the InfoObject, while it is not possible to load the corresponding descriptions.
Actually I cant help you with my post. But atrouble shared is a trouble halfed
I would be pleased if somebody could offer any solution to this problem
Kind Regards,
George

Similar Messages

  • I have multiple iPhoto libraries and when I selecting which library to view (hold down 'option' key and launch iPhoto from the dock) it automatically closes another open apps window eg. Chome, Word. 1 app closes every time I launch iPhoto this way.

    I have multiple iPhoto libraries on my Macbook Air 10.7.5 and when I am selecting which library to view (hold down 'option' key and launch iPhoto from the dock) it automatically closes another open application window eg. Chome, Word. 1 app closes every time I launch iPhoto this way.

    If you're pushing Option at the exact moment you're clicking the Dock icon, it's supposed to do that. Wait until just after clicking it.
    (112342)

  • How can i remove a key and its value from properties file

    hi all,
    i want remove a particular key and associated value from the
    properties file. is their any standard way of doing?
    thanks inadvance
    daya

    hi,
    thanks
    i am able to remove the key,
    one more question how can avoid storing date and time
    in properties file.
    thanks
    daya

  • Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item "IMG_0346.JPG" can't be copied because there isn't enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Trying to click and drop photos from iPhoto into an Empty SD card. all I am getting isThe item “IMG_0346.JPG” can’t be copied because there isn’t enough free space. Card is 156 MB Photo is 1.56MB. Help please.

    Select the photo(s) in iPhoto and export to a desktop folder (file menu ==> export) - see this user tip for export options - then be sure the card is not locked and in the finder verify available space and if it is adaquate drag that folder to it
    LN

  • Display Key and Long Description

    Is there any way to display the Key and Long Description for a hierarcy in a query? It looks like the only option is to display Key and short description or Long Description only.
    Thanks,
    Ron

    Hi
    These are the basic steps:
    1. upgrade to BW 3.5
    2. choose to display as key and text
    3. choose key + long text
    the following links says the step by step procedure to do it:
    http://help.sap.com/saphelp_nw04/helpdata/en/22/27813b731fd60ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/af/27813b731fd60ee10000000a114084/frameset.htm
    Regards,
    Naveen P

  • About "Upload and download files from ADF into blob type colum."

    hi
    Using JDeveloper 10.1.3.3.0 I have tried the example available for download from this blog post by Jakub Pawlowski:
    "Upload and download files from ADF into blob type colum."
    at http://kuba.zilp.pl/?id=1
    First a thank you to Jakub for this interesting example.
    I have a question about a PDF file that I uploaded using the example.
    The file has a size of 10445518 bytes.
    After I upload that file, the blob column has a value with a size of 10445516 bytes, 2 bytes less.
    SQL> select file_name, dbms_lob.getlength(stored_file) from blob_table;
    FILE_NAME
    DBMS_LOB.GETLENGTH(STORED_FILE)
    ADF-DeveloperGuide-4GL-B25947_01.pdf
                           10445516If I download that file using the example, it has the same size as the blob value, 10445516 bytes.
    If I open the downloaded file, using Adobe Reader 8.1.1, it first shows this message:
    "The file is damaged but is being repaired."
    After that, there is not problem using the PDF file in Adobe Reader.
    I have tried this with both Internet Explorer 6 and Firefox 2.0.0.11.
    I have also tried this with other (smaller) files, and those upload and download correctly.
    question:
    Why are those 2 bytes lost during upload?
    many thanks
    Jan Vervecken

    Hi!
    I can only post you my code that works for me and as I said I had same problems but can't remember what solved them. My code:
      public void fileUploaded(ValueChangeEvent event)
        FacesContext fc = FacesContext.getCurrentInstance();
        UploadedFile file = (UploadedFile) event.getNewValue();
        if (file != null && file.getLength() > 0)
          // here I have some messages written and a call to the method on AM to save the uploaded file to the DB
      private BlobDomain newBlobDomainForInputStream(InputStream in)
        throws SQLException, IOException
        BlobDomain loBlob = new BlobDomain();
        OutputStream out = loBlob.getBinaryOutputStream();
        writeInputStreamToWriter(in, out);
        in.close();
        out.close();
        return loBlob;
      private static void writeInputStreamToWriter(InputStream in,
                                                   OutputStream out)
        throws IOException
        byte[] buffer = new byte[8192];
        int charsRead = 0;
        while ((charsRead = in.read(buffer, 0, 8192)) != -1)
          out.write(buffer, 0, charsRead);
       * Launch the upload - see fileUploaded() for actual upload handling.
       * @return null navigation event - we stay on this page
      public String UploadButton_action()
        if (this.getMyInputFile().getValue() == null)
          FacesContext context = FacesContext.getCurrentInstance();
          FacesMessage message =
            new FacesMessage(FacesMessage.SEVERITY_WARN, JSFUtils.getStringFromBundle("fileupload.emptyfielderror"),
                             null);
          context.addMessage(this.getMyInputFile().getId(), message);
        return null;
       * Setter for inputFile UI Component.
       * @param inputFile inputFile UI component
      public void setMyInputFile(CoreInputFile inputFile)
        this.myInputFile = inputFile;
       * Getter for inputFile UI Component.
       * @return inputFile UI component
      public CoreInputFile getMyInputFile()
        return myInputFile;
      }fileUploaded is a valueChangeListener on inputFile and UploadButton_action is as the name says the action for upload button.
    Hope this helps. If not, than your problem is probably not the same as mine was, although the message about file corrupted was the same.
    Next thing you can check in this case is if your file exceeds max file upload size. I don't know the exact default value, but if the file is too long I think this upload logic will upload only a part of the file and save it to the DB which can also lead to the same file corrupted error.
    You can set the max upload value in web.xml like this:
    <context-param>
    <!-- Maximum memory per request (in bytes) -->
    <param-name>oracle.adf.view.faces.UPLOAD_MAX_MEMORY</param-name>
    <!-- Use 5000K -->
    <param-value>5120000</param-value>
    </context-param>
    <context-param>
    <!-- Maximum disk space per request (in bytes) -->
    <param-name>oracle.adf.view.faces.UPLOAD_MAX_DISK_SPACE</param-name>
    <!-- Use 10,000K -->
    <param-value>15360000</param-value>
    </context-param>

  • Mac: can I drag and drop files from Finder into Files panel

    I am relatively new to Mac so forgive me if this is obvious.
    I just switched from Windows to Mac and now something I used to
    know how to do in Windows I can't figure out how to do on Mac. In
    Windows I used to open an Explorer window over Dreamweaver, select
    some files, and drap and drop them into the Files panel in
    Dreamweaver, and they would be sucked in.
    Now on the Mac whenever I select the Finder window to select
    files to drag and drop, the Dreamweaver panels disappear
    completely, rather than just move beneath the Finder window. So
    when I'm ready to drag and drop there's no Dreamweaver to drop
    into. I see that if I put focus on Dreamweaver, then Finder won't
    disappear, and I can click on Finder to begin a drag without
    Dreamweaver disappearing but then it is unresponsive to a drop.
    In short, I can't seem to drag and drop files from Finder
    into Dreamweaver on the Mac. Am I missing something? I'm using
    Dreamweaver CS3 on Leopard if that makes any difference.
    Thanks,
    Jan

    I don't believe you can do this on the Mac platform. The only
    other thing you could try is to use Spaces and have the Finder open
    in one Space and then drag it over to Dreamweaver in another space.
    Outside of that I can't think of how this would work.

  • Data from SAP into BPC

    What is the best way to get data from SAP into BPC?What about getting data from BPC (like a template) into back into SAP?

    Hi Sam,
    Please find here the steps you should do
    Step#1: In SAP  With the help of ABAP program update data into a table.
    Step#2: In regular interval pull data from SAP table to BPC staging tables in SQL server.
    Step#3: Run import data manager package to update FACT tables from BPC staging tables on demand.
    This is the best way and best approach to pull data from SAP to BPC.
    Thanks and Regards,
    Rajesh Muppala.

  • What is the best way to load 14 million COPA records from BW into HANA?

    I have been managing a project in which we are attempting to load COPA data from BW into HANA using Open Hub and we continue to run into memory allocation errors in BW. We have been able to load 350,000 records.
    Any suggestions on what the best approach would be along with BW memory parameters.
    Your replies are appreciated.
    Rob

    Hello,
    this seems to be issue in BW caused by big volume of migrated data. I do not think that this is HANA related problem. I would suggest to post this message into BW area - you might get much better support there.
    But to help as much as I can - I found this (see point 7):
    http://help.sap.com/saphelp_nw04/helpdata/en/66/76473c3502e640e10000000a114084/frameset.htm
    7. Specify the number of rows per data package for the data records to be extracted. You can use this parameter to control the maximum size of a data package, and hence also how many main memories need to be made available to structure the data package.
    Hope it helps.
    Tomas

  • Really stupid that you can't drag and drop photos from Finder into Events

    There is no way in iPhoto to do what I want and need to to, to wit, drag and drop photos from the Finder into existing iPhoto Events.
    It really doesn't make sense that you can't do this. First of all, calling these groups Events to begin with is not smart; in my case, a group of photos in a folder on the Finder is rarely all from one photo session or so-called "event"--- instead of Events they should just be called Groups or something, and you should be able to drop individual photos into them. I have thousands of family photos that were accumulated on my hard drives over the years, some scanned in from film negatives, slides, or prints, others from digital cameras, and when I have changed Macs and hard drives over the years, every time a folder of photos was moved from an old hard drive to a new one, or regrouped into various folders, the photos seem to have acquired new dates of origin, etc.
    Anyway, what I mean is, if Events are all time based, then somebody like me who has thousands of photos with all sorts of dates of origin, mostly unrelated to the date that the photo was actually shot, is screwed. I have old photos with new dates of origin and other mismatches between photos and the dates when they were actually shot or scanned.
    My gripe is, again, that when I find photos on my hard drives that belong in certain iPhoto Events that have already been created, I cannot just drag these photos from the Finder and drop them into the Events they belong in. Instead, the stupid program creates a new Event from each photo I try to drop into an existing Event. That means I have to chase these new photos all over the place inside of iPhoto, trying to figure out where each new photo (now called an "Event") has ended up, so that I can drag and merge it into the Event I wanted it to go into in the first place. A real pain in the neck. It simply takes too long to do this for each photo added.
    What this means is that iPhoto is not going to be a practical way to organize for a person like me until Apple makes it possible to simply drop any photo from the Finder into an existing Event. There should be an option to allow that. I'm really surprised there is not one. <edited out by Hosts>
    Tom

    Tom, iPhoto will not overwrite photos with the same name. I have plenty of photos with the same name in the same event. Each photo most likely has an internal handler that manages the photo, and not just the name of the file.
    I agree with you that this is sub-optimal, and (IMO) I think what happened is iPhoto 6 had rolls, and they came up with a really cool interface for mousing over those rolls, and decided it was more consumer friendly (and because film is a thing of the past) to call them events, rather than rolls. I think it was worth a shot, but they just slightly missed.
    Right now in iPhoto08, any serious organization is done in folders and albums. Personally, I think they need to combine the two concepts -- the great "mouse over" view of events with the organization abilities of folders and albums. I'd like an albums view where I can mouse over the albums. Actually, Aperture 2's interface for organization is more functional than iPhoto, so I am hoping some of that benefit creeps into the next iPhoto release.
    What I do is: I use events for high level grouping (like Winter 2007) and I organize folders and albums to break that down further ("trip to Montreal" "Christmas" etc.). But I do it backwards. I fill albums first, then I organize events.
    When I drag in pictures to iPhoto, first I make the target album in iPhoto that I want to populate, then I drag the photo directly to that album (not to events). iPhoto automatically puts the photo into the album I created and also into a new event. Later, I go into events, right-click on this new event to "open event in separate window" then I move around the events view, to drop in the pictures from the "import" event I just created. If I move all the pictures into other events, iPhoto automatically deletes the event I just emptied. You could skip the event organization all together if you wanted to, but you'd lose the cool mouse-over feature, which can be handy.
    One nice thing about having events AND albums is you can have the photo just once in iPhoto, in an event, but then have the photo appear in as many albums as you want (as well as projects and web galleries) all while only having one photo on your hard drive. So, there are benefits to events, but I think iPhoto is missing just a couple little bits of organizational ability to make it perfect. (and yes, I've submitted this all to Apple as feature requests)
    Just in case you don't know -- events don't have any hierarchy. That is, you can't nest events. But you can have folders with subfolders, and any folder can contain albums. Albums cannot have sub-albums, and folders don't hold photos. Only albums hold photos, and folders (or sub-folders) hold albums. Try create some folders and albums and you'll get the hang of it. One other issue that Apple needs to address. When you create a new folder or album, it doesn't put it right where you want it, but rather puts it at the bottom of the list, so you have to drag it up to where you want it. Try it out, and you'll see what I mean, then submit it as a feature request to improve that.
    I agree it's not perfect, but it's not too bad once you get used to it. And the benefits of working with the rest of the features of iPhoto is worth it. I'm just really hoping they do a few tweaks on the next release. They are near greatness here. They could just use a little nudge on the last bits. (in my opinion of course. Others may disagree, but I've talked to enough people who have the same issues you are having to know we are not alone on this).

  • Loading masterdata and transaction data from same flat file

    hi all,
    how can i load master data and transaction data from the same flatfile at a time.

    I am afraid it is possible.
    Go thru this Uploading Master & Transaction Data together from Flat File

  • Manually manage songs and drag songs from library into ipod

    I always use manually manage songs in itunes. Everything used to work fine until yesterday. I convert a cd into the library, and afterwards drag the songs into the ipod. now when i try to drag anything from the library nothing happens, and I dont get any error messages. Any help would be appreciated.
    sony   Windows XP Pro  

    Welcome To Apple Discussions!
    Make sure everything is up to date:
    iPod Update Version 1.1.1
    Update iTunes
    Welcome To Apple Discussions!
    Make sure everything is up to date:
    iPod Update Version 1.1.1
    Update iTunes
    Sorry for not mentioning in the orginal post, but but Everything is up to date.
    sony   Windows XP Pro  

  • Extracting PAGEID and Text Description from Statistics cube

    Hi SDN Community,
    Can anyone please confirm that the following approach to extract the PAGEID and its text is the only way to do so:
    As i cannot find the PAGEID field in any of the 0BW* statistics cube, we will create an infoobject and add it to one of the cubes.
    Then Map PAGEID from RSDDSTAT to Field: OBJID from Table RSZWOBJTXT
    (This mapping between the tables RSDDSTAT and  RSZWOBJTXT can then be used to retrieve the web page description from the field TXTLG)
    Thank you for your assistance.
    Simon

    The PageID is not in the statistics cube

  • Using the Alt key and numeric code from Character Map to insert special characters in Office 2010 programs

    I am used to using the ALT key and specific numbers for characters from the Character Map to place characters in Office programs like Outlook, Word, Excel. I have a new Lenovo T530 Laptop running the Windows 7 Professional Operating System. I have MS Office
    2010 Home and Business. In previous versions of Office, this feature worked first time, every time. On this machine, it is a 'no go' situation. Lenovo tech support says it is a Microsoft issue and Microsoft says it is a Lenovo issue. Either way, I'm having
    difficulty resolving the issue and getting this wonderful featrure working for me. Any suggestions and guidance would really be appreciated. Thank you. 

    Hi,
    Haven't been verified this myself, but since this feature require to use the numeric keypad to input the value, I suspect the cause of the issue is the laptop keyboard.
    To workaround this issue, try enable the numeric keypad from your laptop keyboard, normally, we can enable it by press
    Fn + Num Lock.
    After that, try insert characters again.
    Max Meng
    TechNet Community Support

  • Keys and Join description at physical layer does not reflect in BI Answer?

    Hi All ,
    While creating a RPD , the description about keys and join information using
    description and hint property which we define at physical layer, those informations do not reflect BI Answer when i query to metadata dictionary.
    Any ideas in this regard?
    -- Ashish

    Hi All ,
    Here i give little bit more description what i did.
    (1) I created a RPD and gave some description about Foreign Keys and using hint a gave some description about Physical joins.
    (2) After then using utilities I generated the Metadata Dictionary.
    (3) Now after restarting of services when i query to Metadata Dictionary using BI Answer , i am not able to see those descriptions. Rest of the information like table level and column level descriptions i am able to see.
    Is there any way to get these descriptions or metadata dictionary does not keep descriptions for keys and joins?
    Any ideas in this regard??
    --Ashish                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Dump during BAPI_ENTRYSHEET_CREATE calling from Portal

    Hi, I am getting dump during creation of Service Entry Sheet using the 'BAPI_ENTRYSHEET_CREATE' when triggering it from Portal end. But if I directly call the FM from ECC6.0 with the same passing values it gives me the success meassage. The dump only

  • PSE 7 Text

    PSE 7 - text is only in capitals and I don't know why!!!  Can anyone help

  • IBooks not opening books

    I can open iBooks on my MacBook Pro, but when I double click to open a book, the book comes up, then disappears. When I view all the open windows, it shows that my open book is there, but when I go back to my normal desktop screen, the book still isn

  • Some of friend used incorrect id in app store and it couldn't change it .....it uneditable

    some of friend who used my macbook tried to use App Store and typed incorrect apple id...after that i tried to update the app but couldn't edit the apple id ...its unedited and i couldn't update apps

  • Login Crash wmiprvse.exe Faulting Module msvcrt.dl

    Dear All I installed 3 Virtual (VMWare) Windows 2012 Server Hosts with the same configuration and get an error message at login which says Visuall C++ Runtime Error and in the logs I can see following error:  Source: Application Error Faulting applic