How to identify that an InfoCube needs to be compressed?

How to identify that an InfoCube needs to be compressed?
Is there any ratio or method to check that the InfoCube is ready enough to Compress.

Hi Chandran,
When a request is loaded and aggregated(rollup) it is ready for compression. I don't understand what u mean by <i>"ready enough"</i>.
As SAP says, compressing the requests in InfoCube improves the query performace as it reduces the amt of data by eliminating request ids and do Zero elimination. see below link for detailed adv and disadv of compressing a cube.
http://help.sap.com/saphelp_nw04/helpdata/en/ca/aa6437e7a4080ee10000009b38f842/frameset.htm
Regards,
Sree

Similar Messages

  • How to identify that a host is connected to which particular edge switch

    Hello Guys
    Can anybody explain how to identify that a host is connected to which particular edge switch and port in a Cisco SAN Fabric ??

    Hi,
    Hopefully you know the host PWWN. 
    If the edge switch is not in NPV mode, get the FCID from the output of "show fcns database"
    The answer may also be as simple as finding this entry in the "show fcns database detail".
    If not, once you have the fcid, the first byte of the fcid is the switch domain ID. With the combination of "show fcdomain domain-list vsan xx" "show fcs ie" you should be able to determine what you need.
    If the edge switch is in NPV and registers as a NPV device ( Cisco switches do ), then the FCID will be assigned by the core switch upstream of that edge switch.   You can see this from a "show flogi database".  Find the PWWN here.  There will likely be multiple entries for the port where the host is connected.  Once you find the port where the NPV switch is attached.  The first flogi entry on that port will be the switch WWN.  Get the FCID for the switch and then find the entry for this FCID in the "show fcns database detail", this will give you the switch information.
    Best regards,
    Jim

  • How to Identify that which Region is attached to which Jsp page?

    Hi
    I am working on module Quoting Sales. I have my jsp page qotSCocHeader.jsp . In responsibility AK Developer we have a region QOTSCOCHEADER . As we can see that the jsp page name and the AK region name both are same.
    Now my doubt here is that :
    How can we identify that which region is attached to which jsp page ?
    Analysis that I have done so far:
    1) I have check the Application Developer responsibility --> Function also . Here I can see 1 tab for Region , but no details are present in this tab
    2) All jsp pages are present in $OA_HTML . So I have done grep in this directory but no reference to region name .
    Pls guide me as how can I get information about Jsp page and region linkage .
    Thanks
    Amit

    Hi
    Thanks for the update.
    I have Right clicked my jsp page --> View Source and searched for the Region name i.e XXQOTSCOCHEADERLLLP and found one occurence for the region. Reference to region name was like this:
    <form target=_top method=POST name="_etffm001"> <input type=hidden name="jfn"
    href="http://betsyn1.emrsn.com:29604/OA_HTML/jsp/fnd/fndhelp.jsp?lang=US&root=FND:LIBRARY&path=US/QOT/@XXQOTSCOCHEADERLLLP" target="HELP_WIN"><span
    But still I have an open question, Where in the Oracle Apps setup we attach the region with Jsp page ?
    i) I am not able to find any setup for this in Oracle.
    ii) In jsp code I am not able to find as where we are making call to region associated with the Jsp page.
    So can you pls help me out in identifying as where exactly the Jsp page and region are attached . How the Oracles Apps identify as which region is attached to which Jsp pae ?
    Thanks
    Amit

  • How to identify that the call to a BAdI is coming from SAPGUI

    Hi All,
    In the current project involving SAPCRM 5.0 (both GUI and PCUI), we need to display a pop-up asking the user whether he would like to go ahead with the changes in both GUI and PCUI.
    The function module 'Popup-to-confirm'  was used in a BAdI implementation and it worked fine in GUI but caused problems in PCUI. So this code was commented out as of now.
    Could you let me know as to how should we differentiate the call being placed to a BAdI is from GUI or from PCUI so that we could ensure that the pop-up gets displaced in GUI atleast as of now and does not get populated/cause errors in PCUI as of now?
    Else please let me know what is the correct way of displaying a pop-up in both GUI and PCUI in CRM 5.0?
    Thanks,
    Ravi Kiran

    Hello All,
    I am moving this to another forum as I accidentally put it in this category.
    Thanks,
    Ravi Kiran

  • How to identify that my physical standby database in use real time apply?

    Hi,
    Can any one give me the SQL to identifiy that my physical standby database is in real time applying redo logs?
    Its urgen please....
    Thanks.

    You could just look at the alert log. Look for "Recovery of Online Redo Log"
    Or you could select from v$standby_apply_snapshot to see if the standby is up-to-date.
    select thread#, to_char(snapshot_time,'dd-mon-yyyy:hh24:mi'),
    to_char(applied_time,'dd-mon-yyyy:hh24:mi'),
    to_char(newest_time,'dd-mon-yyyy:hh24:mi') from V$STANDBY_APPLY_SNAPSHOT;

  • Process via Runtime.getRuntime().exec(), how to identify that it�s closed?

    A process(console program) is started via Runtime.getRuntime().exec() from Swing Application.
    Swing Application need to know the result of this process.
    So, is there any possibility to find whether the console program is finished?

    Runtime.exec() returns a Process object.
    Look at its methods, especially waitFor(). Read carefully the whole Process documentation, especially what has to be done with the output streams.

  • How to identify that a member is "Dynamic Calc" in script

    Hi there,
    i wonder if there is a way to write a HBR that will do the following:
    if([Member1] is dynamic calc)
    do something;
    elseif
    do something else;
    endif
    where [Member1] is a variable passed from Planning form (squre brackets are ommited by editor).
    I think it can be done with CDF and Japi IEssMember.EEssShareOption, but may be there is an easier way?
    Thanks!
    Dmitry

    Glenn,
    Thanks for the idea, yet marking all the members with storage type UDA would mean too much maintenance for me.
    I eventually have done that with api. Here’s the code if someone is interested.
    Thanks again,
    Dmitry
    static int getShareOption(String[] args) {
    int shareOption=0;
    try{
    acceptArgs(args);
    String appName = args[4];
    String cubeName = args[5];
    String memberName = args[6];
    IEssbase ess = null;
    ess = IEssbase.Home.create(IEssbase.JAPI_VERSION);
    IEssOlapServer olapSvr = null;
    IEssDomain dom = ess.signOn(s_userName, s_password, false, null, s_provider);
    olapSvr = (IEssOlapServer) dom.getOlapServer(s_olapSvrName);
    olapSvr.connect();
    IEssCube cube = olapSvr.getApplication(appName).getCube(cubeName);
    IEssCubeOutline otl = cube.openOutline();
    IEssMember curMember = otl.findMember(memberName);
    System.out.println("getShareOption: "+curMember.getShareOption().stringValue());
    System.out.println("getShareOption: "+curMember.getShareOption().intValue());
    shareOption=curMember.getShareOption().intValue();
    otl.close();
    otl = null;
    } catch (EssException x) {
    System.err.println("Error: " + x.getMessage());
    return(shareOption);
    }

  • OK so i need to reset my security questions because i do not remember them,but the link that is given for my email is incorrect. i do not know how to change that?

    OK so i need to reset my security questions because i do not remember them,but the link that is given for my email is incorrect. i do not know how to change that?

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (103340)

  • Invoice Reversals - Payables - How to identify

    Hello,
    This is regarding the invoice reversal flag column in the AP_Invoice_Distributions_All.
    I had already asked a part of this at the following link. Since I marked it answered, I have another question here.
    What does invoice reversal mean in Oracle payables
    As per the link above, Invoice reversals are done on Distribution line when any modification is required.
    My question is as follows.
    Let us suppose in the AP_Invoice_distribution_Lines
    Line 1 is normal.
    Line 2 has mistake. And it is reversed. -- Reversal_Flag is Y
    Line 3 is created which is a reversal of Line 2. - Reversal_Flag is Null
    Line 4 is normal.
    Line 5 has mistake. And it is reversed. -- Reversal_Flag is Y
    Line 6 is created which is a reversal of LIne 5. -- Reversal_Flag is Null
    Now, I need to find out which reversal is the occurance of which line. Like in the above example, how to identify that Line 3 is a reversal of Line 2 and Line 6 is a reversal of Line5.
    Thank you

    Hi Bob,
    from the AP_INVOICE_DISTRIBUTIONS_ALL can you sort the data by INVOICE_LINE_NUMBER field.... if there is a reversal line, the reversal line would also have the base invoice line reference.....
    so if line number 1 is reversed, you would see two records in this table .. one with positive value and another with negative value ..... this way you can find out the original and its reversal ....
    This is another way to find, however the PARENT_REVERSAL_ID should be there as suggested by Ravi .....
    Regards,
    Ivruksha

  • How to identify Vendor has an open PO

    Hi,
    we need to find out all the vendors having an open PO , open in the sense .. Goods not fully delivered or Invoice not fully raised..
    any help is fully appreciated with good points.
    thanks
    prasad

    HI,
    but there will be lot of movement types involved and many IR and GR doc types(BEWTP = E,R,Q,X ) will be there.. so in these what all the types we need to consider and also .. in accumulating the quantity in PO history .. we will have negative qty also .. since lot of movement types will be there we cant hard code .. so how to take care of this..
    and also in some of the documents even though the GR qty and IR qty is not equal to order qty .. it shows in the status tab at the header level as fully delivered and fully invoiced.. so how to identify that its fully delivered and fully invoiced..
    any replies will be given points..
    thanks
    prasad

  • How to identify a rehire candidate?

    Hi,
    Please let us know if you have worked on the following:
    1) How can we identify in e-recruiting that an external candidate was a previous employee of the company at some point in time? OR how to identify that the candidate had a record in SAP PA in the company?
    2) what exactly is the difference between the "deleting external candidate" and " delete external candidate registration" ? is it only that the "delete external cand registration" first closes all the open applications/assignments to requisition and then deletes the details? or some more differerences are there?
    Also can you provide more information on "Store Legal Periods"? Can we define these periods based on some other criteria apart from Country/city criteria? if so how?
    Thanks,

    1) How can we identify in e-recruiting that an external candidate was a previous employee of the company at some point in time? OR how to identify that the candidate had a record in SAP PA in the company?
    You can identify in R/3 in INFOTYPE 0001 go to over view you will find all information of employee history
    2) what exactly is the difference between the "deleting external candidate" and " delete external candidate registration" ? is it only that the "delete external cand registration" first closes all the open applications/assignments to requisition and then deletes the details? or some more differerences are there?
    I belive both are one and same please what expert will say
    Best Regards

  • How to identify multiple checkbox selected in JSF

    Hi All,
    My scenorio is.
    I am diplaying records on page using <h:dataTable>
    I have one column in dataTable which contains checkboxes which I displayed as,
    <h:selectBooleanCheckbox id="abc" />
    Also I have button on page.
    I want to select 2 check boxes & then click onto button then that 2 records should get deleted.
    how to identify that 2 checkbox selected ?
    can anybody help ?
    Thanks
    Sandip

    Hi BalusC
    Thanks for your reply.
    Is there any other approach to do this ?
    because as per your approach my code will not work because you are using seperate bean.
    If i try to compare your code with my code then I have to do changes in my entity bean which is not possible.
    So is there any other way ,
    If I want select more than 1 checkbox & delete those records of selected checkboxes .
    i.e. I want to find which checkboxes selected on JSP page sothat I will get those selected value on Java side & will delete that record from java side.
    Please help.
    I am not finding any solution to this.
    If any code then it will be a great help for me.
    Thanks
    Sandip

  • How to identify the trailing spaces in a column

    Hi,
    How to identify the trailing spaces in a column.
    for ex: empno char(5) and i enter 333 then there will be 2 spaces remaining. How to identify that two spaces

    One method...
    ME_XE?create table test1 (some_char char(5));
    Table created.
    Elapsed: 00:00:00.11
    ME_XE?
    ME_XE?insert into test1 values ('HI');
    1 row created.
    Elapsed: 00:00:00.07
    ME_XE?insert into test1 values ('HI HO');
    1 row created.
    Elapsed: 00:00:00.07
    ME_XE?select * from test1 where trim(some_char) <> some_char;
    SOME_CHAR
    HI
    1 row selected.
    Elapsed: 00:00:00.14
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to identify offseting account

    Dear friends
    i am creating zreport in which i have some query related to offsetting account.
    please find some details.
    while viewing GL account in FBL3N ,
    we found different document numbers
    aginst these document number there is an offsetting account
    in certain document offsetting account is GL account number
    while in other it is Vendor code
    How system identify that for perticular document
    which type of offsetting account comes.
    is there any table for that??
    or any function module??
    or any logic for that??
    Regards
    Avirat

    Hi
    See the article [Offsetting Account Display in FBL Reports|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2074877d-fad9-2d10-c69b-f47fb0685327?QuickLink=index&overridelayout=true] by Praveen.J in this site.
    I hope this helps you
    Regards
    Eduardo

  • In E-recruiting how to identify a rehire candidate?

    Hi,
    Please let us know if you have worked on the following:
    1) How can we identify in e-recruiting that an external candidate was a previous employee of the company at some point in time? OR how to identify that the candidate had a record in SAP PA in the company?
    2) what exactly is the difference between the "deleting external candidate" and " delete external candidate registration" ? is it only that the "delete external cand registration" first closes all the open applications/assignments to requisition and then deletes the details? or some more differerences are there?
    Also can you provide more information on "Store Legal Periods"? Can we define these periods based on some other criteria apart from Country/city criteria? if so how?
    Thanks,

    1) How can we identify in e-recruiting that an external candidate was a previous employee of the company at some point in time? OR how to identify that the candidate had a record in SAP PA in the company?
    You can identify in R/3 in INFOTYPE 0001 go to over view you will find all information of employee history
    2) what exactly is the difference between the "deleting external candidate" and " delete external candidate registration" ? is it only that the "delete external cand registration" first closes all the open applications/assignments to requisition and then deletes the details? or some more differerences are there?
    I belive both are one and same please what expert will say
    Best Regards

Maybe you are looking for

  • Urgent IDOC -  EXIT_SAPLLMDE_002 not getting triggered.

    I am doing an inbound idoc on message type WMMXY goods movement. The idoc is sucessfully getting posted when tested through we19. But the user exit  EXIT_SAPLLMDE_002  where i am doing an enhancement is not getting triggered when the idoc is posted.

  • Possible to access existing PrE 8 projects with new full PrE 10 install?

    Greetings, The functionality of my PrE 8 has deteriorated to the point it where it will barely run without crashing. When I first started using it last spring, it never crashed but now crashes repeatedly, usually at the end of a few hours of work (au

  • 3rd party apps after Mavericks upgrade.

    Hi I'm using Mountain Lion right know but would like to upgrade to Mavericks. Got some 3rd party apps installed ( MS Office , Adobe stuff, Reason, etc. ) Will I have to install it again after upgrade or will it stay like it is ? Thanks for answers.

  • 2650XM with FXO port

    I need a sample config for a 2650XM with FXO ports that will be used to route incoming calls to a particular group and that same group will be making calls out that same gateway. I am on CCM 3.3(3)sr3. If anyone can help me or point me to documentati

  • Legal Consolidation Package Error

    Hi , While Executing SPRUNCONSO facing follOwing errror . ERROR CSD-130 Problem Extracting data from the Fact ERROR CSD-135 Problem Extracting data : C_FINANCE ERROR CSD-140 Problem extracting Data : C_DATA ERROR CSD-150 Problem extracting Data : C_R