Compounding Keyfields

Hi,
I define Item No as Infoobject (Main I/O) under this I define compounding keyfields as a Branch, Location, Lotno
I loaded data into Item No but in the report when i select Item no I am also getting
Hole Keyfields for example Item= Item01  , Branch =Bran01, Location= Loc1
Lotno= Lotno1
When I select Item no inthe report I am getting like this
<b>Bran01/Loc1/Lotno1/Item01</b> but I want Only <b>Item01</b> should show in the report output
One more question One of my Infoobject I define Char and there is no data in the infoobject but inthe report the value is showing as # how to make it as blank in the report?
Long time back I did this one under filter or free char... I am not sure.
Help would be appreciate.
Regards,
Alex

Hi Alex,
Coming to your Second Question, I "#" values will appear when you are displaying report Key figures(Value Fields) with respect this Characteristics or when you drill down other characteristic with this one.
Either it should be swapped with respect to other characteristic, The Charaactistic must be assigned to some values."#" explains that these values of the value fields are under assigned.
Hope this helps you.
Thanks
Vikram

Similar Messages

  • Allow duplicate key in InfoObject/ compounding length problem

    Hi all.
    I try to create InfoObject with compounding key, consisting of IObj itself plus 4 compound attribs and total length of 63 symbols (max allowed is 60). Obviously, the system doesn't allow me to activate the InfoObject.
    I consider to move compounds into attributes area, but don't know is it possible to allow duplicate records in InfoObject?
    or
    Maybe you can help me with some other advise how to manage this compound key limitation?
    additional info:
    The InfoObject is the "copy" of  source system master data table

    Hi,
    ok, now I see. Well there is a restriction that the keyfields as in your example shouldn't be longer than 60 characters (summed up). So you need to think about using another object as compound. Isn't that possible? Another option might be to post the data to a ods/dso first which has your object as well as the compounding attributes as keyfields and which was already recommended, and after that, post the value to a new infoobject which gets it's unique value from a number range object that you need to define specially for this purpose. Add the keyfields of that ods/dso as navigational characteristics to that new object.
    regards
    Siggi

  • Is there a way to see all my compound clips created on the timeline, in the browser as an accessible thumbnail list....?

    I am facing a problem that
    due to big footage I first extracted the seemingly fine clips in chunks in one timeline in various layers which is still enormous for my RAM
    now I have to take out smaller and more appropriate bits from this timeline
    I have opened another timeline where I just copy paste the best shots from my previous enormous timeline and this works fine due to less media for 6gb RAM mac pro
    but it is really tedious to go back and forth to copy paste
    it would be so wonderful if I could extract those bits from the clips just like we do with any other new footage from the browser window with all the clips visible
    I think one way can be to export these compound clips seperately and import them as events into the browser but that would be a generation loss
    is there any other way.....? to view these compound clips infront of my eyes all at once or keeping all that footage on the timeline besides the finalising layer is the only option...?
    I am facing this rare problem because I'm editing a music video and no shot is more than 2 seconds and that too from several groups of footage that has to be mixed.....so all the data has to be visible to decide if a bit of guitar piece would look good here or drums or close up or long shot.....so everything has to be seen....can you suggest me a smarter workaround please ?

    Thank you.Ok say for e.g.
    500 video files imported in fcpx
    800 clips extracted from these obviously on the timeline and joined/compounded according to their content in say 15 layers according to 15 instruments used ,so now just to see the entire usable footage ....
    now one 7 minute song sequence has to be made where bits would be simultaneously taken from these 15 layers as all instruments are playing simultaneously
    these shots are not more than 2 secs each according to the beat........
    when I try to work with these 15 layers as well as the Final primary layer that I'm making in the same timeline my fcpx becomes slow
    but when I drag individual layer to individual timelines it is fine so that is the only option
    but now for every 2 second bit I have to go back to the 15 layered timeline and find one single suitable shot
    So I was wondering is there a way to be able to see these layers and clips on the timeline in the browser in a systematic fashion like the way we get with keywords  ?
    and keywords can only be used in the imported clips already in the browser ,and not after we drag it on the timeline.....
    Till now I think exporting and importing back is the only option ...but is there another work around ?

  • Change of Master Data after compounding addition

    Hi,
    I have changed one info object, changes are mentioned as below:
    Activated it as master data
    Added one compounding attribute
    This info object is already being used in various data targets in production environment which holds data.
    Now what shall be the steps in case we transport this change to the production environment.
    The only solution i can think right now is to delete the data from existing data targets and reload the data
    Could you please suggest if there is any alternate approach to it through which i need not to delete data.
    Regards,
    Rahul

    If you want to Add compounding to the existing MD -
    -Delete TD data where it is being used
    -Delete MD
    -Make sure all the SIDs has been deleted
    Add compounding to the MD and reactivate flow before and upwards(TR , DTP ..etc)
    Before transport .. perform all the above actions in target sys and do transport
    If you want to add new IOs as NAv to the existing MD
    -ADD - Activate - transport!!

  • Compound index vs separate indexes

    Hi,
    I am having a table with 12 million records.
    My query will be always having 2 conditions in WHERE clause.
    SELECT * FROM TABLE WHERE c1='some integer' and c2 in (some values)In this case which index will be appropriate.?
    a)Creating separate indexes on c1 and c2
    b)creating a compound index on (c1,c2)
    What are the things i need to consider before creating index in this case>
    Thanks

    >
    In this case which index will be appropriate.?
    a)Creating separate indexes on c1 and c2
    b)creating a compound index on (c1,c2)
    What are the things i need to consider before creating index in this case>
    >
    Well I must say I disagree with ALL of the answers provided so far because none of them take into account those 'things you need to consider' before creating an index (or indexes).
    1. What is the selectivity of column C1? How many distinct values? How are the data values clustered?
    2. What is the selectivity of column C2? How many distinct values? How are the data values clustered?
    3. What will the clustering factor of the index be? That is, is the table data in any particular order that would result in an exceptionally good, or poor, cluster factor for the index?
    4. Will any queries only need column 'c2' for filtering?
    5. Will any queries only need column C2 for filtering?
    Without knowing at least the above information there is no way to tell if ANY index is appropriate, let alone how many or the ordering of columns for a composite index.
    Just consider point #1 above. If there are only two values for C1 and 6 million records have each value what good would an index be?
    But if column C1 is unique then an index would be very selective and you don't need to consider the C2 value at all.
    Likewise if the cardinality of C1 is low (few records have the same value) but cardinality of C2 is high the index should be on C1 only since including C2 would dilute the index and require more records to be read to get the ROWIDs of interest. And in cardinality of C2 is low but C1 is high then C2 might be better as the lead colum since an INDEX SKIP SCAN could be used.
    If you can provide the information asked for above then better recommendations can be provided.

  • Compounded characteristic are not displayed in the variable screen (BI 700)

    Hi Experts,
    How to display compounded characteristic  in the variable screen of queriies?
    Example :
    IO 0PROFIT_CTR is compounded to 0CO_AREA. Tryimg to select 0PROFIT_CTR via a variable,
    only values of 0PROFIT_CTR are displayed in F4 opo up, not those of 0CO_AREA.
    0CO_AREA is not restricted in any way in query definiton.
    This happens in BEx Analyser as well as in web apllication.
    Did anybody face this issue? How to solve it?
    Thanks in advance for helpful replies.
    Regards
    Joe

    Hi,
    Thanks for replies. Possibly I did't explain my problem i a correct way.
    'I 've a variable for 0PROFIT_CTR. When I call F4 , values for 0PROFIT_CTR are displayed
    e.g. as
    7062 PC 7062
    7062 PC /062
    My problem is, that these PCs belong to different Co_areas. so i expected
    3200 7062 PC 7062
    4300 7062 PC 7062
    3200 an 4300 are representing compounded Co_areas in this example. In 3.5 this worked perfectly,
    if Co_areas was not restricted itself with a variable or a defined value.
    Now I'm looking for the option to achieve this as well in 700.
    Regards
    Joe

  • Drilldown report FGI0 Account Number and compounding Chart of Accounts

    Dear all,
    I created a drilldown report in FGI0 for FAGLFLEXS (Reporting for Table FAGLFLEXT). I am showing the field Account Number. However the field display is [Chart of accounts][Account number] in the corresponding column, but I want to display only the Account number.
    If I remove the compounding field RKTPL from table TKAFD, then the program cannot find the Account Number Text.
    Is there a way to show only the Account Number, without the Chart of Accounts in its 4 first fields, and also show the account text?
    Thank you in advance!

    Dear All
    I need to change the GL accouts in Drilldown report FGI0. In FGI2 tried but i couldn't able to find the exact location to chage can you please help me. On how can change means regroup the GL account and need to add the new GL account in Drilldown report..
    Regards
    Chandrasekhar G

  • Crystal Report with Compound Key

    Hi,
    I have Characteristic with Compound Key in SAP BW 7.0. This Characteristic use to store the Purchase Order Item Line. The Compound Key is the Purchase Order Document.
    So I will have the following fields created for this Characteristic:
    Compound Key (Purchase Order Document) 5600001982, Purchase Order Item Line 10
    I created a Query for this Characteristic and I have the following as result:
    10 ...
    20 ...
    30 ...
    All works fine.
    Now I created the Crystal Report from this Query. When I display this Characteristic in Crystal Report, I have the following:
    5600001982/10
    5600001982/20
    5600001982/30
    Is this a bug or Crystal not support the Compound Key?
    Please advise, thank you.

    Hello,
    Did you get this resolved.
    Were you able to display characteristics in Crystal without the compounding characteristic.
    Thanks.

  • Crystal Report and InfoObject with Compound Key

    Hi,
    I have Characteristic with Compound Key in SAP BW 7.0. This Characteristic use to store the Purchase Order Item Line. The Compound Key is the Purchase Order Document.
    So I will have the following fields created for this Characteristic:
    Compound Key (Purchase Order Document) 5600001982, Purchase Order Item Line 10
    I created a Query for this Characteristic and I have the following as result:
    10 ...
    20 ...
    30 ...
    All works fine.
    Now I created the Crystal Report from this Query. When I display this Characteristic in Crystal Report, I have the following:
    5600001982/10
    5600001982/20
    5600001982/30
    Is this a bug or Crystal not support the Compound Key?
    Please advise, thank you.

    a

  • How to use the Compounding Key in BPC10NW like BW info objects?

    Hi experts.
    We are longing the suitable solution in BPC-NW 10.0 to deal with compounding key like BW info objects.
    We want to define the dimension with compounding key MATERIAL and PLANT, but BPC-NW 10.0 doesn't support it. Therefore we just defined the dimension "PLANT" as entity and "MATERIAL" as user-defined dimension with concatinated key "Material code-Plant code" as ID.
    For instance:
    -[Dimension PLANT] as type-E (entity)
    ID
    1000
    2000
    3000
    -[Dimension MATERIAL] as type-U (user-defined)
    ID        ENTITY MATNR
    1000-AAAA 1000   AAAA
    1000-BBBB 1000   BBBB
    2000-AAAA 2000   AAAA
    2000-CCCC 2000   CCCC
    3000-BBBB 3000   BBBB
    3000-CCCC 3000   CCCC
    (ENTITY and MATNR were defined as properties, and ENTITY filled the each member including dimension Plant)
    Now we built a input form with following conditions:
    -Page axis : ACCOUNT=Revenue, etc...
    -Row axis : ENTITY=1000 or 2000, MATERIAL=all
    -Column axis : TIME=Jan, Feb, Mar...
    The result report came out as follows:
    Revenue
    PLANT  MATERIAL   Jan Feb Mar ...
    1000   1000-AAAA  0   0   0   ...
    1000   1000-BBBB  0   0   0   ...
    1000   2000-AAAA  0   0   0   ...
    1000   2000-CCCC  0   0   0   ...
    1000   3000-BBBB  0   0   0   ...
    1000   3000-CCCC  0   0   0   ...
    2000   1000-AAAA  0   0   0   ...
    2000   1000-BBBB  0   0   0   ...
    2000   2000-AAAA  0   0   0   ...
    2000   2000-CCCC  0   0   0   ...
    2000   3000-BBBB  0   0   0   ...
    2000   3000-CCCC  0   0   0   ...
    But we expected to have a report restricted MATERIAL with their property on specified PLANT in member selector such as:
    Revenue
    PLANT  MATERIAL   Jan Feb Mar ...
    1000   1000-AAAA  0   0   0   ...
    1000   1000-BBBB  0   0   0   ...
    2000   2000-AAAA  0   0   0   ...
    2000   2000-CCCC  0   0   0   ...
    How do we obtain the expected result? Please give us the good solution!
    Best regards,
    Masa

    Hi Vadim.
    GREAT! Our requirement is fulfilled by that way you described. Special thanks for your help!!!
    Best regards,
    Masa

  • How do I move a compound clip in one event to another event when it is used in a project?

    I've been using FCPX since 10.0.3. The recent upgrade to 10.1 is forcing me to reorganize everything. At some point during the upgrade cycle, Apple decided to store ALL compound clips inside events, automatically, upon creation. I was oblivious to this decision at first. So here's what happened as a result.
    I have 10 projects, numbered 1 through 10. My goal was to have one event for each project. However, it looks like most of my compound clips from my later projects got automatically created and placed in the first event (Video 1) instead of in the correctly numbered event. I'm pretty sure the clips INSIDE the compound clips are referencing the correct event; it's just the compound clip itself that resides in the wrong event. I'd like to move these compound clips over to the event they SHOULD have been created in, in the first place. However, I'm not sure if dragging and dropping them to the correct event will (a) create a new copy of the compound clip (one that is not referenced by any project whatsoever), or (b) move the original compound clip to the right event (removing it from the original/wrong event). Also, I'm really concerned about this, because I'm not sure how this affects the compound clip as used inside the actual project. I often have certain effects, color correction, etc. applied to the compound clip itself, and I don't want to lose that.
    Any advice would be greatly appreciated. I really want to get these clips in order.

    You can freely drag compound clips between events as you've seen.
    If you do this between events in the same library, it will be a move by default; holding down the Option key will make it a copy operation.
    If you drag between events in different libraries, this will be a copy operation. All clips contained in the compound clip will also be copied (or references as sym links) to the target library in order to keep the library completely self-contained (libraries never references each other and never span volumes).
    Mark

  • How do I get chapter markers defined in a compound clip to show up in the DVD menu?

    I have created a timeline to burn a DVD/Blu-Ray. The timeline contains 3 compound clips. Each compound clip contains roughly 25 chapter markers.
    When I open the Share > DVD dialog, it shows the Chapter button in the preview, but the DVD itself doesn't have the chapter markers.
    Expected Result: When I define Chapter markers in a compound clip, they should show up on a DVD burned from a timeline that used the compound clip.
    Actual Result: The DVD does not contain the chapters button, nor do the chapter skip buttons do anything. It's as if the chapters were never defined.
    Workaround: Redefine all the chapter markers in the new timeline over the compound clips - Annoying!
    Is there a simple way to get FCPX to recognize the chapter markers defined in the compound clip when I burn the project? It would save me quite a bit of time!!
    Thanks, all, for your help!

    Thanks for the tip. I was looking for this feature, but it was not included in the context menu. It can be found in the "Clip" menu.
    I think the best workflow for me would be this:
    Edit in a master timeline
    Select the entire master time line, send to compound clip.
    Create a new project, add the compount clip
    Add the chapter markers to the new project
    Select everything in the new project, create a second compound clip.This makes the chapter markers portable.
    Open up the "burn" project, insert the second compount clip.
    Select the newly inserted compound clip, and select "Break Apart Clip" from the "Clip" menuThe result is a managable compound clip with chapter markers.
    Thanks for taking the time to answer my question!
    db

  • Compound filtering xslt list view web part with _dopostback using javascript/jquery

    Hello,
    I am filtering list view web part as same as the below post,
    http://dcsharepointchick.blogspot.in/2013/05/filter-sharepoint-list-with-partial-postback.html
    here I need to filter the web part with some another condition . I am trying to write another condition in filter attribute of _doPostback(), but it doesn't work.
    Please let me know is there any alternative to achieve compound filtering.
    Regards,
    Balakrishna M.

    Hi Balakrishna,
    According to your description, my understanding is that you want to filter the list view web part with more than one filters.
    I recommend to use the OOB Choice Filter web part to achieve this goal.
    Edit the page where the list view web part exists and then add the Choice Filter web parts to the page based on your need.
    More reference:
    http://office.microsoft.com/en-in/sharepoint-server-help/connect-a-filter-web-part-to-a-list-view-web-part-HA101785233.aspx#_Toc296943684
    Or you use the List Filter Plus Web Part to get the function.
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/overview/
    Here is the link to download the web part:
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/download/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Legacy Mapping Problem: Compound PK is Foreign Key

    My job is to map beans using JPA onto a legacy database schema that must not get modified. I am stuck with doing the relation between two tables.
    The schema is:
    CREATE TABLE A (
         a1 INTEGER NOT NULL,
         a2 INTEGER NOT NULL,
         PRIMARY KEY (a1, a2)
    CREATE TABLE B (
         b1 INTEGER NOT NULL,
         b2 INTEGER NOT NULL,
         b3 INTEGER NOT NULL,
         FOREIGN KEY f (b1, b2) REFERENCES A (a1, b2) ON UPDATE CASCADE ON DELETE CASCADE,
         PRIMARY KEY (b1, b2, b3)
    )As you can see, both tables have compound primary keys, and the primary key of table B contains a foreign key to table A. This is typical in our DB because B in fact acts like a "inner table" (in the sense of "inner class") to A.
    So far I defined both classes and provided a primary key, but the question now is, how to provide the relation between both? The relation shall be unidirectional, so that I can query all Bs belonging to one A by "myA.getBs(): Collection".
    The code I have written so far is:
    @Entity
    public class A {
         @EmbeddedId
         private APK primaryKey;
         @OneToMany
         private Collection<B> characteristics;
    @Embeddable
    public class APK {
         private String a1;
         private String a2;
    @Entity
    public class B {
         @EmbeddedId
         private BPK primaryKey;
    @Embeddable
    public class BPK {
         private String b1;
         private String b2;
         private String b3;
    }Unfortunately that is not working, because the JPA Provider (here: TopLink Essentials) tries to map the relationship on a third table named "A_B" that actually is not there.
    So how to tell TopLink to find the mapping information in table B (just like using the foreign key f)?
    Please help, I am driving nuts!

    OK
    So i found out the real problem
    And the problem is that my CustomerHistory has a Text Field, as in a MS SQL Server TEXT Field
    When i changed it to a VARCHAR, it started working
    The strangest thing is that Customer also has a TEXT Field (mapped to a String) and i can do Finds without any problems
    So my question now is how can i work with TEXT in CMPs ?
    Thanks

  • Issue in mapping compounding attribute

    Hello All,
    I have info objects 0CO_AREA and 0PROFIT_CTR in the target whereas in the source i have only 0PROFIT_CTR and please note that CO_AREA is compounded with 0PROFIT_CTR.
    In the transformation, I have kept constant value for 0C0_AREA and info object 0PROFIT_CTR is mapped with the source field.
    I facing an issue with the below error message while activating the transformations.
    "Characteristic 0CO_AREA compounded to 0PROFIT_CTR is missing in transformation source"
    Is it mandatory to have 0CO_AREA in the source when we are using compounding info object relation or is there any work around ?
    Thanks in advance.

    Hi peppy ,
    The Compund characteristic is complementry to the parent characteristic so whenever you use the characteristic you have to use the compound characteristic. it is mandatory to have 0CO_AREA in the source when we are using compounding info object relation
    To upload the master data you also need to have compound characteristic in the source you're uploading because it is part of the compound.It is necessary to get correct data in target.This concept is basically used for maitaining master data .
    Regards,
    Jaya

Maybe you are looking for

  • From database to text on buttons.

    I have constructed a database which I can retrieve data from.....no problem. However I need to retrieve text items from my database and display them onto a series of buttons. I have 4 names that I need to paint on 4 buttons so far. I can't seem to be

  • Recording from DVD-Audio Pla

    How? X-Fi Soundcard GreetingsMessage Edited by zickzack on 09-24-2005 0:22 PM

  • Direct Path SQL Loader get error ORA-01555

    Hi All, 11.2.0.1 DB Has anyone here used sqlloader direct path option? Is there special setting I need for the Undo TS? I am testing my sqlloader direct path but I got error : ORA-01555: snapshot too old: rollback segment number 10 with name "_SYSSMU

  • RAC TO RAC CLONING ERROR IN EBS R12

    Hi , Hussain i need your support in this issue i am facing the same error ... At the third stage of RMAN restore ...

  • Voip accounting

    Dear all I am sending my cdr cisco voice gateway to my ACS. but information are .csv based on i can not read them or have graph. any idea or hint please?