Conforming Dimensions - won't appear on the same business model diagram?!

Hi,
this is one of those where you have done something a 1000 times without thinking about it, and then suddenly I find when I have two subject areas with dimensions I want to share in the business model diagram the diagram will not display both sets of tables on the same diagram, no matter which way round I try it...
i.e.
I have 1 fact, 1 dimension in one subject area
I want to join the fact to four other conforming dimensions in another subject area.
I have seen a 10g hit saying go from the physical aliases - but this does not seem optimal, surely there must be a better way??
I am on 11.1.1.5
Anyone help?!
thanks,
Robert.

Hi,
additional info
Physical layer; -
Fact 1 - Dimension 1 - Fact 2 - Dimension 5
- Dimension 2
- Dimension 3
- Dimension 4
Subject Area 1 = Fact 1 and all directly joined Dimensions
Business Model Diagram = Fact 1 and all directly joined Dimensions
Subject Area 2 = Fact 2 and Dimension 5
How do I join Fact 2 to Dimension 1,2,3??
Anyone help?
thanks,
Robert.

Similar Messages

  • Home sharing won't appear in the left column on iTunes for PC

    I have 2 macs that sharing works and that I have acces of home sharing in the left column.
    I just reinstalled XP and running iTunes 10.5.3 on my PC and everything is setted up like my macs but home sharing won't appear in the left column and I don't see the PC's library on my macs.
    Everything is turned on with the same email account.
    Is there a probleme on PC...

    FORGOT TO MENTION everything worked fine last week before I reinstalled XP

  • Ondemand subreport or a drilldown, I want the content to appear in the same tab that is in the main report

    <p><strong>When I click on the ondemand subreport or a drilldown, I want the content to appear in the same tab that is in the main report itself. How to make this work? As of now it opens up a new tab for drilldown or ondemand subreport? How to make this work? I want any expert here to throw some light on this?</strong></p><p>Plz mail me at    [email protected] </p>

    I fixed this problem. It was pretty easy.
    First, in the address bar, type in " about:config " .
    When it asks if you are sure about making changes & it may void the warranty, click "yes--I promise I'll be careful" or something along those lines. (I heard there is no warranty, & it's just a joke)
    Once you get to the new screen, find " browser.link.open_newwindow "
    You will see the # 3 on the same line. Change that value to 1.
    Wah-la! :)
    http://kb.mozillazine.org/Editing_configuration
    http://kb.mozillazine.org/Browser.link.open_newwindow

  • ITunes 11 previously imported a video file, which I loaded on to my iPod Nano, but I removed the file from the iTunes library and now it won't (re-)import the same video. Any thoughts on why not?

    iTunes 11 previously imported a video file, which I loaded on to my iPod Nano, but I removed the file from the iTunes library and now it won't (re-)import the same video.
    I'm using 2 PCs, each with video files (.MP4) on their respective hard drives, and also one external drive with other video files on that I move between the two devices.
    iTunes on one PC will (sometimes!) let me add video content from the external hard drive, which is clearly iTunes-compatible, because I can then copy it over to my iPod Nano. On the other PC, I couldn't load that same video from the external hard drive. But if I copied that same video on to the PC's internal hard drive first, then iTunes would let me import it. That was yesterday - now iTunes is refusing to load any files from the internal or external hard drive(s).
    Any thoughts or suggestions, please?

    So I tried copying the files from the external hard drive to a USB drive. I could import the video files from the USB drive!
    So then I tried importing the same files on to my PC's internal hard drive again. I could import the video files from the internal hard drive!
    So then I tried to import the very same files that failed to load on the very same PC previously. I could now import them!
    I still can't import from the external hard drive directly, though.
    I really don't think I like the process of importing things into iTunes very much... any suggestions on what's causing any of this behaviour would be very interesting.

  • Alv is not appearing in the same Selection Screen

    Hi people..
    First time using  cl_gui_docking_container.
    I have a problem, my alv is not appearing in the same Selection Screen.
    is there somethign wrong with my code? it doesnt even show a dump or catch.
    Regards
    DATA: lo_dock TYPE REF TO cl_gui_docking_container,
           lo_cont TYPE REF TO cl_gui_container.
    DATA: gr_table      type ref to cl_salv_table,
           gr_functions  type ref to cl_salv_functions,
           gr_display    type ref to cl_salv_display_settings,
           gr_columns    type ref to cl_salv_columns_table,
           gr_column     type ref to cl_salv_column_table,
           gr_sorts      type ref to cl_salv_sorts,
           gr_agg        type ref to cl_salv_aggregations,
           gr_filter     type ref to cl_salv_filters,
           gr_layout     type ref to cl_salv_layout,
           color         type lvc_s_colo,
           key           type salv_s_layout_key.
       SELECT * INTO TABLE tbl_datos_items FROM zsd_micros_bd.
    CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
           EXPORTING
             repid = sy-cprog
             dynnr = sy-dynnr
             ratio = 70
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
         IF sy-subrc <> 0.
           MESSAGE 'Error in the Docking control' TYPE 'S'.
         ENDIF.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( )

    Hi ,
    First you have to create you own screen ( dynpro )  with a screen number ( 0101 for exemple )  , you need to pu a custom control in it , name the custom control ( lo_cont )
    For the screen created you need to create a module for the PBO , in this module you sould put you code for displaying the liste :
    Module STATUS_0101 output.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( ).
    Endmodule.
    and give the screen number when calling  lo_dock 
    CREATE OBJECT lo_dock 
           EXPORTING
             repid = sy-cprog
             dynnr = '0101'.
    tested
    Regards

  • When I try to play videos on Apple's website, "missing plug-ins" appears. The same happens when I try to play Apple trailers. Other "users" on the same iMac don't have this problem.

    When I try to play videos on Apple's website, "missing plug-ins" appears. The same happens when I try to play Apple trailers. Other "users" on the same iMac don't have this problem.

    Thank You, Thank You, Thank You! Your solution worked straight away. I've been battling with this for weeks'
    Thank you again. :-))

  • Iphone won't appear in the itunes page

    My Iphone 3G won't appear in the in the itunes. I did all I could with the support web pages. Anyone know what I could do? I might add it use to appear but not anymore.
    Thanks,
    joy

    Hi Joy,
    If you haven't already try the general tips in this article: http://support.apple.com/kb/TS1591
    Also, make sure the iPhone is directly connected to a high-speed USB2 port on the Mac.
    -Jason

  • Can I force application dialogs to appear on the same screen as the associated application?

    I'm using a Thunderbolt monitor with a macbook air running Yosemite. My frustration is that when I have applications displayed on the Thunderbolt display, the associated dialogs display on the macbook screen. Everything works OK, just a pain traversing the mouse all the time. Can I make the dialogs appear on the same screen as the app?

    Your graphics driver's dialog repositioning option? Check that.
    Mylenium

  • How to get a form to appear on the same page when a button is clicked?

    Hi,
    I have a report on a page with a create button. When a user clicks the create button, a form should appear on another region in the same page....how do i go about doing this?
    I know how to do this if the form is on a different page, but i'd like the form to appear on the same page as the report and only when the button is clicked.
    Thanks.

    Hi,
    I did the following, but it didnt work....
    1) Created a hidden item on the page, and in the Default Value field, I set the value to N.
    2) Created a button in the report with the following values under "Optional URL Redirect":
    Target is a: Page in this application
    Page: 4
    Set these items: P1_SHOW_FORM
    With these values: Y
    3) Created a form of HTML text type with the following values under "Conditional Display":
    Condition Type: Request=Expression 1
    Expression 1: P1_SHOW_FORM='Y'
    What have I done wrong or have i missed something?
    Thanks.

  • While launching Mail, I clicked on Safari, to check something while Mail got new emails, but now Mail appears on the same screen as Safari. Is there a way I can return it to it's own screen, please?

    While launching Mail, I clicked on Safari, to check something while Mail got new emails, but now Mail appears on the same screen as Safari. Is there a way I can return it to it's own screen, please?
    I haven't changed any prefs, only clicked Safari as mail was being launched.

    Sorry... Apple IDs cannot be merged...
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    From Here   http://support.apple.com/kb/HE37

  • Logic pro X 10.0.4 and EUCON problem - plug-ins name won't appear on the display of artist series

    Logic pro X 10.0.4 and EUCON problem - plug-ins name won't appear on the display of artist series
    I'm currently using mavericks , logic pro x 10.0.4 and eucon 3.0.1
    There was a freezing  problem which is now resolved by clicking the prevent app nap in the info  on eucon app and all my most used apps.

    Yes - it works exactly as it did in Logic 9 under ML - my problem under mavericks and pro X was sluggish updating of display - turned encoder on MC MIX and nothing happened imediately and names on MC MIX not updating properly.
    I only changed app nap to off - ie ticked it on get info panel of the EUCON application and relaunched whole lot and it as worked prefectly since (fingers crossed etc)
    Ian

  • Alert 'There were problems downloading some purchased items' won't clear for the same 6 songs.

    Alert 'There were problems downloading some purchased items' won't clear for the same 6 songs (see screenshot). Every time I download something new this alert comes up, yet when I check for available downloads there aren't any (see second screenshot). Also the 6 songs that are being flagged as having problems are already downloaded to my library, so literally it's just the alert/ notification that seems to be stuck. I've tried signing in and out of iTunes, re-installing itunes, re-starting the computer, emptying the cache etc, and but everytime I sign back in or re-open itunes the alert comes straight back up and it's driving me insane.
    Can anyone help either clear the alert or stop it so that it doesn't pop up every time I try and download something else??

    P.S the error message i got during the download is (err = - 5000)
    Thanks in advance

  • 2 apple tv's won't connect to the same network

    Hi I have 2 apple tv's but they won't connect at the same time.  It's not the internet I'm running at 20.63 Mbps.  But if on atv is connected in one room the other will pick up the network and signal strength is at 5 bars but subnet mask, router and DNS all show n/a. If I go unplug the other atv it connects. What gives, any help would be much appreciated.

    Sparkybyday wrote:
      how would I know if there was sufficient IP addresses in the DHCP range? 
    Check the settings in the router.
    I suspect connecting one or both via ethernet would resolve the issue.  Also, if the ATVs have the same name, that may be part of the issue.

  • JTable edited data doesn't appear in the same time

    Hi
    i have aserious problem JTable edited data doesn't appear in the same time imust tom minimize the frame and maximize it to see the table modified what is the reason?

    Quit multi-posting the same question every time. You asked this same question 3 hours ago:
    http://forum.java.sun.com/thread.jspa?threadID=729894
    The last time you posted the same question within two minutes of one another:
    http://forum.java.sun.com/thread.jspa?threadID=729202
    http://forum.java.sun.com/thread.jspa?threadID=729200
    Not only that, you never bother to reply to your postings to indicate whether the advice given was helpfully or not. This is commonly known as thanking people for the time spent helping your.
    Learn to use the forum correctly or you will be on your own in the future.

  • When I enter an event in iCal, soon thereafter multiple other "New Event" notices (one to four) appear for the same day. If I delete these unwanted "New Event" notices, they later reappear -- sometimes multiplying like rabbits. Any suggestions?

    When I enter an event in iCal, soon thereafter multiple other "New Event" notices (one to four) appear for the same day. If I delete these unwanted "New Event" notices, they later reappear -- sometimes multiplying like rabbits. Any suggestions?

    Well, using iMovie to rearrange clips in a mini DV video edited by another program is extremely time consuming. I found a workaround. It still takes time, but it's much faster than rearranging the clips using iMovie.
    The workaround is as follows. Bring up Finder and go to the directory where your event's clips are stored (typically ~/Movies/iMovie Events/<name of event>). It helps to setup Finder to be in Cover Flow mode, so you can see the beginning of each clip. Then, sort the files in ascending order by the 'Date Modified' field. This makes Finder sort the files in the same order that they were imported from the mini DV tape. Clips with timecodes have the naming convention "clip-<year>-<month>-<day> hour;minute;second.dv". Clips without timecodes use another naming convention. With the files sorted by "Date Modified" in Finder, rename clips as needed so that the date/time in their file names are in ascending order. Note: when you rename a file, you need to restart iMovie. I suggest not running iMovie while renaming files.
    I believe the file date/timestamp is only accurate to the second. Occasionally, there may be a couple of clips that have the same date/timestamp. This may cause the ordering to not be correct. The best way to find these is through iMovie. To modify a file's date/time, right click on the clip in the event in iMovie, and then select "Adjust Clip Date and Time...".
    So, this workaround is a lot easier and faster than trying to rearrange things from scratch in iMovie. But it's still time consuming. Creating a project out of an already edited video should take less than 5 minutes (not counting import time), but that's not the case.
    I submitted an enhancement request to Apple asking if they can add an option to sort an event's clips in the order that they were imported by iMovie. Those who have the same issue as me, I suggest you submit an enhancement request as well.
    Anyone have any other suggestions?
    Thanks.

Maybe you are looking for

  • I can't ring ibooks in my App Store for my mac-what do i do, how do i download it in my mac?

    i can't ring ibooks in my App Store for my mac-what do i do, how do i download it in my mac?

  • How to handle space in incoming file during fcc

    Hi all, I have a scenario of file to proxy. In this case the incomming file is space delimited and it  begins with space too i.e. every new line item has a space in the begining I have to remove that space. How can i handle it...please help. The fcc

  • Viewport Sized Text Help

    So I'm making my first responsive theme for a client through my school as a class project and I'm having some trouble. I have msot everything figured out except for the auto-resizing text and am kinda of stumped. I found this: http://css-tricks.com/v

  • Inter Company Billing Scenario

    Hello All, I have created some invoices in our live system, but while creating these invoices some setting were missed out and due to that reason system not triggered intercompany invoice. Now we have corrected the system and now system triggered int

  • Sending and Retrieving XML files as soap attachments

    How do I send an XML file as an attachment and then retrieve it as an XML file from soap attachment. I am able to send it as an xml attachment but i cannot retrive it as an xml file. Plz help me out in this regard. Its kinda urgent...