What indexes are created when we check dimension as line item.

What indexes are created when we check dimension as line item.
and also What indexes are created when we check dimension as high cardinality.
Where can i see that information in the system.
Answers are highly appreciated.
Regards
Kunal

Hi,
Line item means it does not have any dimension table.
High Cardinality means that the dimension is to have a large number of instances (that is, a high cardinality). Also, it is very important to indentify the line item dimension properly. E.g. Sales Order number, this will have the exact number of entries as the fact table entries. Hence, this can be created as a line item dimension. If you are not sure of high cardinality never select that. Activate this function when the dimension has is at least 10%- 20% the size of the fact table (in terms of the number of records). <b>In this case, B tree indices are created instead of bitmap indices.</b>. By default it is BITMAP but with high cardinality it is B-Tree indexing.
Hope this helps.
PB

Similar Messages

  • What are the .fm.sp files that are created when using SharePoint?

    What are the .fm.sp files that are created when using SharePoint? When I'm working with SharePoint, I've noticed that duplicate files ending in .fm.sp are created. I've been unable to find any reference or documentation about them so far.

    Whe you use sharepoint as a CMS connections in Framemaker it creates the folder where Sp is installed and also a file ending .sp is created that let SP know that its the file associated with it.
    .fm.sp indicates that its the framemaker type SP file.
    Dont worry about it as its not creating any mess in the system.
    Harpreet

  • The new event are created when i import photo in the top. Before they where put in the end. All my event are classified. Where i can set the event at the end ? Thank's.

    The new event are created when i import photo in the top.
    Before they where put in the end.
    All my event (around 600) are classified on the top the old and a the end the new.
    Where i can set the event at the end ?
    Thank's.

    View menu  ==> sort events
    LN

  • What exactly are bezels when referring to the ipad?

    What exactly are bezels when referring to the ipad?

    In what context are you seeing this term? The only use of "bezel" in relation to the iPad I can think of is the frame, aka "bezel" that surrounds the screen.
    Regars.

  • Determining what views are created for certain structure

    Hi!
    I need to create some views to structure in Development system as it is done in Production system already. It is something like manual transfer of structure and it's views from Production to Developement system (special case).
    My question is this: how to determine what views are created for certain structure?
    Will reward,
    Mindaugas

    Use 'Where-used' list for that structure.
    Go to SE11.
    Enter the structure name.
    click on the Where-used list button in the toolbar.
    Select the applicable options. (In your case 'Views')

  • What users are created during Oracle Database installation?

    By default, what users are created during Oracle Database installation?
    Thanks,
    Felipe

    Hi,
    All databases created by the Database Configuration Assistant (DBCA) include the SYS, SYSTEM, SYSMAN, and DBSNMP database accounts. In addition, Oracle provides several other administrative accounts. Before using these other accounts, you must unlock them and reset their passwords.
    Here you are:
    USERNAME
    MGMT_VIEW
    SYS
    SYSTEM
    DBSNMP
    SYSMAN
    SATYAM
    OUTLN
    MDSYS
    ORDSYS
    EXFSYS
    DMSYS
    USERNAME
    WMSYS
    CTXSYS
    ANONYMOUS
    XDB
    ORDPLUGINS
    SI_INFORMTN_SCHEMA
    OLAPSYS
    SCOTT
    TSMSYS
    BI
    PM
    USERNAME
    MDDATA
    IX
    SH
    DIP
    OE
    HR
    Regards,
    Satyam

  • Why some extra XML tags are created when viewed a XML in Adobe Illustrator with Esko plugin?

    We see some extra XML tags are created when viewing a XML in Adobe Illustrator with Esko plugin. Why these extra lines are created ?
    Screenshot of XML and XML viewed in AI below(the extra XML tags outlined in red):

    Hi Graffiti,
    Thanks so much for your resply.  I am happy to say that the problem has been fixed by my customer updating her version of Adobe Reader 9 to the latest version.  I had sent her a few suggestions on how to try to fix the problem including that one from info I had read on the forum etc.. and that was the solution that worked.  I am so relieved that I was able to fix the problem and to answer your question the blank pages were only graphics no text but they were the only pages that the graphics took up the whole page.  I thought that was strange and had her change a setting in preferences for printing large images a solution I read in the forum but it did not work.   

  • What cables are best when connecting apple tv, my HD tv has 2 HDMI slots but they are both in use, one for Sky and one for cinema. There are no hdmi slots spare on the cinema either ...

    what cables are best when connecting apple tv, my HD tv has 2 HDMI slots but they are both in use, one for Sky and one for cinema. There are no hdmi slots spare on the cinema either ...

    Mine has four  Seriously shauntana the splitter is easy, a simple click to changre feed and eventually you will damage the HDMI port or cable by taking it in and out.  True you can only use one feed at a time nut you can only use one port on the telly at one time too.  I used it on my old one port telly for PS3 and Sky and it worked a treat.
    Enjoy
    Jules

  • How many SECONDARY INDEXES are created for CLUSTER TABLES?

    how many SECONDARY INDEXES are created for CLUSTER TABLES?
    please explain.

    There seems to be some kind of misunderstanding here. You cannot create a secondary index on a cluster table. A cluster table does not exist as a separate physical table in the database; it is part of a "physical cluster". In the case of BSEG for instance, the physical cluster is RFBLG. The only fields of the cluster table that also exist as fields of the physical cluster are the leading fields of the primary key. Taking again BSEG as the example, the primary key includes the fields MANDT, BUKRS, BELNR, GJAHR, BUZEI. If you look at the structure of the RFBLG table, you will see that it has primary key fields MANDT, BUKRS, BELNR, GJAHR, PAGENO. The first four fields are those that all cluster tables inside BSEG have in common. The fifth field, PAGENO, is a "technical" field giving the sequence number of the current record in the series of cluster records sharing the same primary key.
    All the "functional" fields of the cluster table (for BSEG this is field BUZEI and everything beyond that) exist only inside a raw binary object. The database does not know about these fields, it only sees the raw object (the field VARDATA of the physical cluster). Since the field does not exist in the database, it is impossible to create a secondary index on it. If you try to create a secondary index on a cluster table in transaction SE11, you will therefore rightly get the error "Index maintenance only possible for transparent tables".
    Theoretically you could get around this by converting the cluster table to a transparent table. You can do this in the SAP dictionary. However, in practice this is almost never a good solution. The table becomes much larger (clusters are compressed) and you lose the advantage that related records are stored close to each other (the main reason for having cluster tables in the first place). Apart from the performance and disk space hit, converting a big cluster table like BSEG to transparent would take extremely long.
    In cases where "indexing" of fields of a cluster table is worthwhile, SAP has constructed "indexing tables" around the cluster. For example, around BSEG there are transparent tables like BSIS, BSAS, etc. Other clusters normally do not have this, but that simply means there is no reason for having it. I have worked with the SAP dictionary for over 12 years and I have never met a single case where it was necessary to convert a cluster to transparent.
    If you try to select on specific values of a non-transparent field in a cluster without also specifying selections for the primary key, then the database will have to do a serial read of the whole physical cluster (and the ABAP DB interface will have to decompress every single record to extract the fields). The performance of that is monstrous -- maybe that was the reason of your question. However, the solution then is (in the case of BSEG) to query via one of the index tables (where you are free to create secondary indexes since those tables are transparent).

  • What are criteria of F-44 to show line item or not show?

    Hello all,
    I had reversed mm doc (from migo) with mr8m then I used  f-44 for clear vendor account.
    The fi doc that occured had no line item, please tell me how to know what criteria of situation that show or not show line item in fi document.
    Thanks for advance,
    Fon

    Hi,
    I have the similar case but opposite of that. When I use F-44 to clear vendor line items, it generates line itmes but I dont want system to generate it.
    Kindly let me know the setting or criteria for the same.
    Regards,
    Niraj

  • Business Area is not flowing to Billing Doc Line item

    Hi,
    Since recently we have observed that in some billing document creation, the business area in sales order line item is not flowing to the billing document line item.
    VBRP-GSBER remains blank due to which we face problem in J1IIN txn.
    This is not happening in all the cases. There are very few instances where business area is becoming blank in billing document line item.
    But when the same billing document is reversed and new billing document is created, the business area flows properly to billing document line item (in VBRP).
    Can anybody suggest why such erratic behaviour? And how to resolve the issue?
    Thanks and Regards
    Ratna

    Dear Shiva Ram and Srinath,
    Thanks for your reply
    I had checked the settings in SPRO. These are OK. The sales order line item is deriving business area properly. But in some cases (not in all the cases) the business area is not flowing to Billing Line Item during billing document creation. It is happening in production server and not in development server.
    I intend to use user exit userexit_fill_vbrk_vbrp to fill the VBRP-GSBER col with VBAK-GSBER if VBRP-GSBER is blank during saving the sales bill thro VF01..
    Pl. suggest.
    Regards
    Ratna

  • Create new billing document if delivery line items have different UOM

    Hello,
      I have a requirement to create different billing documents if the line items in my delivery has different UOM.In my case if delivery is completely ok billing documents are automatically generated.
    How to do so what logic needs to be build.Please guide.
    Regards,

    Hi
    Answer is pure assumption
    You can try to implement VOFM Routine
    Data transfer -> Billing documents
    Check the Routine 351, you can copy the same and modify as per your requirement.
    I think you need to modify VBRK-ZUKRI field, during creation of Billing document.
    I suggest to take help from Functional consultant on this
    Regards
    Madhan D

  • Types of dimensions like Line item & Slowly changing dimension?

    Hi All,
    Please explain about the Line item dimension & Slowly changing dimension.
    Can anyone give the scenarios for these dimensions?
    Other than these, we have like datapacket, time & unit dimensions.
    Is there any other dimensions we have?
    Thanks in Advance.

    Hi,
    Line Item Dimension-
    A Line Item dimension is the dimension which has only one info object assigned. In this case, the DIM table for this dimension is not created. This way the lookup of data from this dimension is a little faster. An info object (eg: Sales Orders, customers) which can have huge number of data can be made line item dimensions as it will take less time looking up the data while running the reports.
    In general,If the size of dimension table exceeds more than 20% of the size of the fact table,We mark it as Line item dimension.It depends upon the scenario.It helps in improving the overall data loading performance.
    From Help.Sap
    1. Line item: This means the dimension contains precisely one characteristic. This means that the system does not create a dimension table. Instead, the SID table of the characteristic takes on the role of dimension table. Removing the dimension table has the following advantages:
    ¡ When loading transaction data, no IDs are generated for the entries in the dimension table. This number range operation can compromise performance precisely in the case where a degenerated dimension is involved.
    ¡ A table- having a very large cardinality- is removed from the star schema. As a result, the SQL-based queries are simpler. In many cases, the database optimizer can choose better execution plans.
    Nevertheless, it also has a disadvantage: A dimension marked as a line item cannot subsequently include additional characteristics. This is only possible with normal dimensions.
    Line Item: This means that the dimension contains exactly one characteristic. If you set this indicator, no dimension table is created,but rather the SID table of the characteristic takes over the role of dimension table. Omitting the dimension table has the following advantages:
    When loading transaction data, no IDs for the entries in the dimension table have to be generated. This number range operation can lead to a decrease in performance in the case of a degenerated dimension.
    In the star schema of the InfoCube a possibly very large table, depending on the cardinality, is omitted. The SQL-based queries are therefore more simple. In many cases, the database optimizer can choose better execution plans.
    However, there is also one disadvantage: A dimension indicated as a line item cannot accept additional characteristics at a later time. This is only possible for normal dimensions.
    Example:
    A line item is an InfoObject such as an order number, for whose attributes one or a few facts are listed in the fact table of the InfoCube.
    Refer this.
    /people/juergen.noe/blog/2007/12/07/spot-on-line-item-dimensions
    should help you out.
    Slowly Changing Dimension
    This comes into picture when you have something which chenages over a period of time.For example,the Designation of an employee.Say,When an employee joins as an Associate and gradually gets promoted to Project Manager,this can be put into Slowly changing Dimension.
    I hope thiis helpful for you.Do assign points if you find it helpful.
    Regards,
    Amar

  • "Always Use Selected Format" check box in line items report

    Hi Experts,
    I have an issue in ECC 6.0.
    From the transaction code FBL1N (Vendor Line Items) I am trying to export the report to spreadsheet by selecting the option  List> Export>Spreadsheet  then I have selected "Always Use Selected Format" check box.  But if I execute the same report again I am not getting this option "Always Use Selected Format". Please let me how can we retrieve that option. Is there any possibility to get that option again either functionally or technically. I would like to know all the possible ways to get this option again.
    Please do the needful.

    Hello,
    In one my thread Mr. Frank has replied as follows. I believe he has solved this.
    Hope this may be really helpful.
    The problem with the spreadsheet download is at one point, users have selected their default file type.
    That said, SAPGUI is working as it should. (gui710)
    Question though is how do we reset the values so they get the ?Select Spreadsheet Format? popup again.
    The following steps should be performed :
    - Call transaction SE38, enter program SALV_BS_ADMIN_MAINTAIN, and press F8.
    - Follow the parameters below :
    - Select ?DELETE? on the Actions Group
    - Select ?DETAILED SELECTION? on the General Data :
    - On Client - your number
    - User : <user name>
    -Hit EXECUTE.
    -Press ENTER on the POPUP
    - If there is an entry in the report that will need to be deleted. Also, make sure that the entry you will delete (for the user) has a value of GUI_ALV_XML_VER on field ?Parameter? .
    - Select the line and hit the DELETE icon .
    - Press ?Y? to continue delete. Press ENTER on the popup.
    - Then EXIT all the way out of the program.
    NOTE : When you run program SALV_BS_ADMIN_MAINTAIN, make sure they are out of any program that they are using for download.
    Re: "Always Use Selected Format" check box in line items report
    Regards,
    Ravi
    Edited by: Ravi Sankar Venna on May 15, 2009 2:31 PM

  • How to create an inspection lot for each line item of the Purchase order?

    Hi,
    How to create an inspection lot for each line item of the Purchase order ?
    In detail if possible.

    Hi
       please check this
    [thread|Create Inspection Lot;

Maybe you are looking for

  • Issue using Super LOV within Skillbuilders Modal page

    Hi, I have an app that has an Interactive Report which opens a form using the Skillbuilders Modal page when you click Create button. Within the Modal Page I have a few items that are using the Skillbuilders Super LOV. It all initially works great but

  • Mac wifi really, really slow after 10.9.4 update

    Hi, So the other day I updated my MacBook Pro (2.5 GHz Intel Core i5) to Version 10.9.4. Everything worked fine that evening, then I packed up my mac and drove all day home. Then when I got home my wifi was being ridiculously slow, almost as if I was

  • DBAdapter serious issue

    Sorry but I cant use this adapter here. Its very important to my job but we failed. I tried everything including redeploy adapter and reconfiguring it. A operação selecionada execute não pôde ser chamada. Ocorreu uma exceção ao chamar a operação de s

  • Puppet Tool RT Preview Issue

    Since CC 2014, I'm having odd issues with the puppet tool. It works as expected until I get to RAM preview it. The preview happens, but playback only happens at around 37fps (is a 60fps comp) and the distort effect does nothing, YET if I scrub the ti

  • How to remove registration form lookup service form jini

    hello friend suppose i have register a particular service to Lookup service in jini , and after some time i want to remove the registration of that service from look up service can any one help me plz its urgent for my project