Alternate fact table without disturbing the existing fact table in EIS

I have a question in EIS, how to load or work with alternate fact table, without disturbing the existing fact table, pls provide me with some procedure and steps
thank u in advance
sunil

Yes you can have multiple models and metaoutlines load one cube. I've done it before. The trick is you ahve one "master" metaoutline that you put all the measures in (even if they are manually added. You use that to build the cube. Then you can have multiple metaoutlines build different measures within the cube. The idea is you have to have them update different intersections or the last one in will be what you get. I have a client that gets sales info from one source, shipment info from a different relational source . in all I have 10 differnt models and metaoutlines that build one cube. you just lump the load statements into one CBS file. It works great (or as great as EIS works). The biggest issue is timing to make sure all the sources are available when the load is going to be doe. Of course you could build different parts at different times.

Similar Messages

  • Help to modify the Release procedure without disturbing the existing class

    Hi All,
    We have a requirement to modify the existing workflow approval procedure for PR and PO to include a case, where the PO amount is less than certain value (say 100 EUR) and the material group is equal to certain value, then we need to include the approval levels L2 (defined for PR) and X2 (defined for PO).
    Taking the case for PO`s, please note the following information,
    Existing release Strategies & release Levels for PO are
    51          Level X4
    52          Level X4 + X3
    53          Level X4 + X3 + X2
    54          Level X4 + X3 + X2 +X1
    Characteristics used
    Total Net order Value
    Purchasing organization
    Order Type
    Purchasing Group
    Example : If the PO triggering a Release strategy 51 and if the conditions PO Value and Material Group satisfied then in addition to X4 system should send the PO  Approval to X2 also. Similarly if the Po triggering the Release strategy 52 then in addition to X4 + X3, approval from X2 also required (provided if the condition satisfies).
    Solutions tried
    1)  We can achieve the requirement by adding a dummy variable in the Characteristics and defining the new release strategy 55 with Level X4 + X2 and using the User Exit EXIT_SAPLEBND_002 .But we donu2019t want to touch the Characteristics and class because this is used by other companies also.
    2) Also we can add a characteristic Material group with value equal to the required value and define 2 new release strategies 55 with Level X4 + X2 and 56 with Level X4+ X3 +X2.For all the other release strategies we can maintain the material group value as blank. Since the characteristics used by many companies we donu2019t want this option also.
    Request your valuable suggestion to meet the above requirement, without disturbing the existing characteristics and Classes, would be highly appreciable.

    >
    MadhanRaj S wrote:
    But we cannot use those because these are used by other companies of the same organization.
    >
    > We need a solution other than these two options with out disturbing the existing charecteristics and class.
    It looks to me like you need a new release strategy for the company that is different. This is a perfectly normal way to use release strategies and is exactly what they are designed for.
    Cheers,
    Mike

  • Clicking on a column without disturbing the existing selection

    Hello good people,
    I am still getting used to Swing and my question may be really silly. Thanks in advance for helping me out!
    I have a JTable in which one of the columns has checkboxes. Using Ctrl+select, one can select multiple rows. Clicking without ctrl, unselects the previous selection. This is all good and default behavior. However, I would like to be able to click on one of the checkboxes in one of the selected rows and not disturb the selection. My target is to enable/disable the checkboxes of all the selected rows.
    Basically, my question is: How do I not disturb the selection if a user clicks in one of the already selected rows and the checkbox column. In other words, if I clicked on the cell (r, c) where row r is already selected and column 'c' is the checkbox column, I would like to retain the selection.
    Thanks,

    what I meant was if you click on the flag cell of one of the selected rows, all the rows (emails) will be flaggedIn my version of Outlook (which is really old) only the row you click on will be flagged and the other rows are deselected.
    But you could try adding a MouseListener to the table. When a mousePressed event is received you could save all the selected rows. You would also add a TableModelListener to the TableModel. Whenever the flag field is selected you could then loop through all the saved selected row and set the flag. You would want to remove the TableModelListener before you start the loop to prevent multiple table model events from being generated. Then when the loop finishes you would need to add the listener back to the model.
    However, this is not a very good solution since it depends on the mousePressed event firing before the ListSelectionModel is updated.

  • Transaction data can be loaded into the Fact table without loading the

    Transaction data can be loaded into the Fact table without loading the corresponding master data (Example : Sales analysis transaction data can be loaded without populating any of its  dimension’s master data)
    a.     True
    b.     False

    Hi Kutti,
    True - You need to select the option in the infopackage - alwyas load even if no master data exists.
    Bye
    Dinesh

  • How to find certain words based on table without overwriting the old one

    Hello,
     I have a list of words available in one particular table, based on those records i need to match it up with one specific column on another table. Based on that match i need to update the same. below is answer for this question;
    Design a new query. Select your data table and your words table. No join line between them.
    Drag datatable.* to the design grid, and the field to check. In the criteria for that field write:
    Like '*' & [wordstable]![wordsfield] & "*"
    (of course you change this to your object names)
    But now my another question is that how i can do update without replacing the existing one. Like for example " Peter is engineering degree".
    In this example if i have words like ring and degree on my reference table, then as per the solution it will update the degree first then later if its find ring on the text then it will overwrite the degree on the particular column. How i can prevent
    this?
    VinWin06

    But now my another question is that how i can do update without replacing the existing one. Like for example " Peter is engineering degree".
    I think what you are saying is that you want to avoid specious substring matches such as finding 'engineering' when searching for 'ring'.  Right?  If so use the following function rather than the LIKE operator to identify the 'word' rather than merely
    a substring:
    Public Function FindWord(varFindIn As Variant, varWord As Variant) As Boolean
       Const PUNCLIST = """' .,?!:;(){}[]/"
       Dim intPos As Integer
       FindWord = False
       If Not IsNull(varFindIn) And Not IsNull(varWord) Then
           intPos = InStr(varFindIn, varWord)
           ' loop until no instances of sought substring found
           Do While intPos > 0
               ' is it at start of string
               If intPos = 1 Then
                   ' is it whole string?
                   If Len(varFindIn) = Len(varWord) Then
                       FindWord = True
                       Exit Function
                   ' is it followed by a space or punctuation mark?
                   ElseIf InStr(PUNCLIST, Mid(varFindIn, intPos + Len(varWord), 1)) > 0 Then
                       FindWord = True
                       Exit Function
                   End If
               Else
                   ' is it precedeed by a space or punctuation mark?
                   If InStr(PUNCLIST, Mid(varFindIn, intPos - 1, 1)) > 0 Then
                       ' is it at end of string or followed by a space or punctuation mark?
                       If InStr(PUNCLIST, Mid(varFindIn, intPos + Len(varWord), 1)) > 0 Then
                           FindWord = True
                           Exit Function
                       End If
                   End If
               End If
               ' remove characters up to end of first instance
               ' of sought substring before looping
               varFindIn = Mid(varFindIn, intPos + 1)
               intPos = InStr(varFindIn, varWord)
           Loop
       End If
    End Function
    You can supplement this with the following functions to find any or all of multiple words in the same string expression:
    Public Function FindAnyWord(varFindIn, ParamArray varWordList() As Variant) As Boolean
        Dim var As Variant
        For Each var In varWordList
            If FindWord(varFindIn, var) Then
                FindAnyWord = True
                Exit Function
            End If
        Next var
    End Function
    Public Function FindAllWords(varFindIn, ParamArray varWordList() As Variant) As Boolean
        Dim var As Variant
        For Each var In varWordList
            If Not FindWord(varFindIn, var) Then
                FindAllWords = False
                Exit Function
            Else
                FindAllWords = True
            End If
        Next var
    End Function
    You can edit the PUNCLIST constant in the first function to allow for any other terminating or leading punctuation characters which may exist, in non-English text for instance.
    Ken Sheridan, Stafford, England

  • Hi. How can I delete the table without deleting the content? My pages is 5.2.2.

    Hi. How can I delete the table without deleting the content? My pages version is 5.2.2. Thank you for your help.

    There is no convert Table to text capability in Pages v5.2.2, as there was in Pages ’09 v4.3.
    You can keep the table while making the table grid vanish, leaving the existing tabular text structure. Select the table, and under the Format panel > Table tab, the following settings will produce this output. If selected, you can refine its document placement in the Arrange tab.

  • Can i have two internet connections connected to two airport extremes separately without disturbing the home sharing option.

    can i have two internet connections connected to two airport extremes separately without disturbing the home sharing option. i want to have both the airport extremes to use a single imac for streaming music or video to my apple tv's at different places where one apple tv is in the range of one airport extreme.it's not a problem if both airport extremes have different wifi id's with separate internet.The imac which i use for streaming the music and videos is only in the range of only one airport extreme.is it possible if i can stream music or videos to my apple tv which is not in the range of same airport extreme which i use for imac but in the range of other airport extreme.
    Finally what i need is i want to use two internet networks as my highest possible internet bandwidth is about 1mbps.and i know that i cant mix both the networks and make it as 2mbps.

    Yes, that is possible. Please check out the following Apple Support article for details on how.

  • How can I link an image without leaving the existing window in adobe acrobat??

    Hi everybody
    I'm new using adobe acrobat, but I saw (once) that in a manual, they linked a image.
    Just by passing the mouse over the linked word, the image appears "over" the pdf, without leaving the existing window
    Is this still possible?? and How??
    Thanks for your help

    If you need to do it very often, I've developed a web-service that allows
    you to enter a phrase (let's say "Product 1"), and have an image "pop-up"
    whenever the user hovers or clicks that phrase in your document. Contact me
    personally for more information.

  • [HTML DB] How to use the existing database table?

    [HTML DB] How to use the existing database table?
    I installed Oracle 10g database in Computer A(Windows 2000), and I already create all the tables with data and the data size is about 300MB.
    In Computer B(Windows 2000), I installed HTML DB 1.6.
    How can I use /get the existing database table (in computer A) for HTML DB?
    Could anyone help me on this? I am newbie and I need some detail instructions. or Where can I find the examples.....
    Thanks

    Well I guess if you wish to retain that architecture, i.e. HTMLDB on one machine and your data on another, you will have to establish database links to access the data. Oracle documentation will describe how to achieve that.

  • How do you move a track region in Garage Band to a new starting point without altering the existing length of the track?

    How do you move a track region in Garage Band to a new starting point without altering the existing length of the track? Thanks.

    What exactly are you trying to do? You can drag any region by grabbing it in the middle of the upper area with the highlighted name of the region. However, if you move it towards the end of the track, the length of the track will get longer, to accommodate the extra part of the region. DO you want to speed up the region, to shorten it or do you want to trim it? You can simply grab the right margin of the region and drag it, to make the region shorter.

  • Modifying an "ssl-proxy-list" without disturbing the active sessions.

    Hello,
    I would like to know if it is possible to have two SSL modules installed in a CSS11503 with each one having it's own "ssl-proxy-list" ("ssl-proxy-list list1" and "ssl-proxy-list list2"), but the two lists (list1 and list2) are exactly the same.
    I will explain my idea:
    In normal situation the two "ssl-proxy-list" are active and the user's encrypted sessions are load balanced between the two SSL modules. But when we need to make a change to the "ssl-proxy-list", like changing a server's certificate, I would like to be able to suspend one service (type ssl-accel with the "ssl-proxy-list List1" attached to it for example) and wait for all active sessions to terminate before suspending the "ssl-proxy-list list1" for applying the changes.
    Once the first "ssl-proxy-list" is updated I would make it active again and apply the same changes to the second "ssl-proxy-list".
    Doing this this way I would like to be able to upgrade the servers's certificate during the working houres without disturbing the connected users...
    Do you think this way of doing would be possible, or do you have an other solution to modify a "ssl-proxy-list" without disturbing the active running sessions ?
    Thank you for your answer,
    Best regards

    Hi Francois,
    An SSL proxy list may belong to multiple SSL services (one SSL proxy list per service), and an SSL service may belong to multiple content rules. You can apply the services to content rules that allow the CSS to direct SSL requests for content.
    The CSS supports one active SSL service for each SSL module in the CSS, one SSL service per slot. You can configure more than one SSL service for a slot but only a single SSL service can be active at a time.
    No modifications to an SSL proxy list are permitted on an active list. Suspend the list prior to making changes, and then reactivate the SSL proxy list once the changes are complete. Once you have modified the SSL proxy list, suspend the SSL service, reactivate the SSL proxy list, and then reactivate the SSL service.
    You can use maximum 4 different certificates at a time.
    Use the suspend command to suspend an active SSL proxy list.
    To suspend an active SSL proxy list, enter:
    (config-ssl-proxy-list[ssl_list1])# suspend
    use the url below for your reference:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v7.10/command/reference/CmdSSLC.html
    Kind regards,
    Sachin Garg
    Senior Specialist Security
    HCL Comnet Ltd.
    http://www.hclcomnet.co.in
    A-10, Sector 3, Noida- 201301
    INDIA
    Mob: +91-9911757733
    Email: [email protected]

  • Remove Structured Anchored Frame  without disturbing the XML Structure - Reg.

    Dear All,
    Please any one help me!, How to remove the xml Structured Anchored Frame without disturbing the XML Structure.
    Manually If I'm removing the XML Structured Anchored Frame, the XML Structured is gone.
    I tried so many ways.  If  I am removing manually in Grouped Frame, then this problem is not happens.
    I mean, Create 2 separate frames Move any xml structured contents to that frames. Group that 2 frames and make it anchored.
    Now you can remove that anchored, this xml Structure is not disturbing (I mean not removed).
    If I did the same in above method for Single Text Frame, this xml Structure is gone.
    Kindly any one person resolve this problem, Thanks in advance!!!
    Note:
    (1) I tried through in InDesign CS6 Plug-In, this is working perfectly. But I need in Javascript to do this.
    Thanks & Regards
    T.R.Harihara SudhaN

    Hm – if you can do it with a Group object, why don't you wrap around a group object?
    With ExtendScript it's quite possible to create Groups with only one single object.
    If we have a text frame selected, you could add a "helper" rectangle to the spread.
    Group the text frame and the rectangle, then remove the rectangle from the group.
    Now you have a Group with a single text frame.
    var myTextFrame = app.selection[0];
    var myHelperRectangle = app.documents[0].layoutWindows[0].activeSpread.rectangles.add();
    var myGroup = app.documents[0].layoutWindows[0].activeSpread.groups.add([myTextFrame,myHelperRectangle]);
    myGroup.rectangles[0].remove();
    app.documents[0].select(myGroup);
    Uwe

  • Access other schema's table without specify the schema name

    Hi, need ur help again,
    I would like to access other schema's table without specify the schema name. for example,
    select * from hr.jobs;
    What priviledges i need if i want to select the data in this way:
    select * from jobs;
    Thanks!

    Public synonyms have their place, but are not generally a good idea as they will cause conflicts with other schemas and applications. Another think that you can do is issue the
    ALTER SESSION set CURRENT_SCHEMA = schema;
    The CURRENT_SCHEMA (8i and above) parameter changes the current schema of the session to the specified schema. Subsequent nqualified references to schema objects during the session will resolve to objects in the specified schema. The setting persists for the duration of the session or until you issue another ALTER SESSION SET CURRENT_SCHEMA statement. CURRENT_SCHEMA is a session parameter only, not an initialization parameter.
    This setting offers a convenient way to perform operations on objects in a schema other than that of the current user without having to qualify the objects with the schema name. This setting changes the current schema, but it does not change the session user or the current user, nor does it give you any additional system or object privileges for the session.

  • Add field value to the existing internal table.

    how to add a field value to the existing internal table.
    DATA: BEGIN OF ITAB occurs 0,
                 EBELN TYPE EKPO-EBELN,
                 EBELP TYPE EKPO-EBELP,
                 AEDAT TYPE EKPO-AEDAT,
                 amount(10) type c,
               END OF ITAB.
    select * from ekpo
           into corresponding fields of table itab.
    itab-amount = '2400'.
    loop at itab where ebeln eq 70 .
           write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,itab-amount.
             endloop.
    here output is not showing the amount field value.
    please tell me how to solve this problem urgent
    thanks in advance.

    Hi Sekhar,
        First let me know wheather you are assigning some value to the amount field externally to all records? if this is wright means check the below code.
    DATA: BEGIN OF ITAB occurs 0,
    EBELN TYPE EKPO-EBELN,
    EBELP TYPE EKPO-EBELP,
    AEDAT TYPE EKPO-AEDAT,
    END OF ITAB.
    select * from ekpo
    into corresponding fields of table itab.
    v_amount = '2400'.
    loop at itab where ebeln eq 70 .
    write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,v_amount.
    endloop.
    or if you want to modify perticular records in itab  then use below code.
    DATA: BEGIN OF ITAB occurs 0,
    EBELN TYPE EKPO-EBELN,
    EBELP TYPE EKPO-EBELP,
    AEDAT TYPE EKPO-AEDAT,
    amount(10) type c,
    END OF ITAB.
    select * from ekpo
    into corresponding fields of table itab.
    loop at itab.
    itab-amount = '2400'.
    modify itab index sy-tabix (or perticular line number).
    endloop.
    loop at itab where ebeln eq 70 .
    write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,itab-amount.
    endloop.
    Thanks,
    Suma.

  • Check the Existance of  Table

    Hi,
    How to check the Existance of table, My require ment i have two tables lets say A And B, If table B does not exist then delete records in table A.
    Can any one tel me how to write a query.
    Thanks in Advance

    hi,
    whether your requirement is to check the existence of table B in the entire database or only in your schema.
    because:
    the user_tables contains the tables owned by the owner of the schema,
    and all_tables caontains the tables that can be access by you,
    and dba_tables contains all teh tables in your database.
    so based on your req query any one of the table and check as suggested earlier by others.
    and the 'tab' table also shows if there is any synonym with the table name as 'B'.
    so if you are going for 'tab' table then also specify the column "TABTYPE = 'TABLE' ".

Maybe you are looking for

  • How can i find out the file size of a Keynote on an iPad please?

    How can i find out the file size of a Keynote on an iPad please?

  • Excel web access: Parameters in external data sources not supported???

    I have a SharePoint 2013 site with Excel services. The site itself has a Current User Filter Web Part which gives filter value [userID] to a Excel web access -web part. In the Excel itself I have a named area(UserIDfromSharePoint) defined as a parame

  • Ship to Party in Prospective Customer

    Hi All I am facing problem with Prospective Customer. In account group 0005 there is no Ship to, Bill to and Payer as partner. which is logical in this scenario. But when I create a sales document it asks for a Ship to party in the initial screen and

  • Host String

    I've installed Oracle Forms 6i includingSQL Plus 8.0 on Win2000 server. no problem with user name and password but no Host string seems to work. Error message ORA-12203: TNS unable to connect. Any ideas what I should be using as the host string? Than

  • Adding or increasing size of redo logs

    Hi, I launched health Chack of TOAD on my Database and I had : ! "Checkpoint not complete" errors: 1744 ! (consider adding or increasing size of redo logs to resolve this) My question is how to 1- add a logfile ? 2-increase a logfile ? Many thanks.