(XSRWLD06) A column value is not a valid member of its target dimension

We are facing a strange issue that all the records gets rejected when attempted to load the cube. The error message is - (XSRWLD06) A column value is not a valid member of its target dimension
This cube is simple and has only one dimension and one measure. The dimension has only 2 records and mapping appears to be correct.
Really confused and unable to find the cause of the problem. Pls can you help
Query used to populate the dimension
==========
SELECT DISTINCT /*+ bypass_recursive_check */ T1."ACCFLAG_DESC" ALIAS_3, T1."ACCFLAG_DESC" ALIAS_4, T1."ACCFLAG_DESC" ALIAS_5, NULL ALIAS_6, 3 ALIAS_7 FROM NEDDWOWNER."OWNERSHIP_ACCOUNTS" T1 WHERE (T1."ACCFLAG_DESC" IS NOT NULL) UNION SELECT DISTINCT /*+ bypass_recursive_check */ T2."ACCFLAG_DESC" ALIAS_8, CAST (NULL AS VARCHAR2 (60) ) ALIAS_9, T2."ACCFLAG_DESC" ALIAS_10, NULL ALIAS_11, 0 ALIAS_12 FROM NEDDWOWNER."OWNERSHIP_ACCOUNTS" T2 WHERE (T2."ACCFLAG_DESC" IS NOT NULL) ORDER BY 1 ASC NULLS LAST
===========
Query used to populate the cube
==========
SELECT /*+ bypass_recursive_check cursor_sharing_exact no_expand no_rewrite */ T5_ACCFLAG_DESC ALIAS_13, SUM(T8_ES_CBSCCO_AJ_GBP) ALIAS_14 FROM ( SELECT /*+ no_rewrite */ T1."OWA_SEQ_ID" T8_OWA_SEQ_ID, T1."ES_CBSCCO_AJ_GBP" T8_ES_CBSCCO_AJ_GBP FROM NEDDWOWNER."VW_ACCOUNTS_MON_CUB_LOAD" T1 ) T8, ( SELECT /*+ no_rewrite */ T1."OWA_SEQ_ID" T5_OWA_SEQ_ID, T1."ACCFLAG_DESC" T5_ACCFLAG_DESC FROM NEDDWOWNER."OWNERSHIP_ACCOUNTS" T1 ) T5 WHERE (T8_OWA_SEQ_ID = T5_OWA_SEQ_ID) GROUP BY (T5_ACCFLAG_DESC) ORDER BY T5_ACCFLAG_DESC ASC NULLS LAST
===========
Rejected Record
Consumption 0
Production 0
Error:
(XSRWLD06) A column value is not a valid member of its target dimension.

Hi - This is still unanswered. Will the datatype of the source column mapped to the member and the fact table create the problem? As we are in the middle of evaluating different OLAP products, any inputs on the issue, will be really helpful...

Similar Messages

  • Created by column value is not showing in XSLT List View After Migration To 2013

    Hello All,
    In my XSLT Created By Column value is not showing. Please help me with this problem. My code is simple I have custom column in XSLT name as 'Reported By' in which I want to show 'Created By' column value. but it is not showing. please help me with that.
    Thanks in advance

    hi
    is anyone has answer for this question.
    thanks...!!!!

  • Parent is not a valid member error in BPC

    hi all,
    i use SSIS package that upload members to BPC dimension and it worked successfully.
    But when i try to process dimension the following error appeared
    "  - Parent is not a valid member. -  Member ID : [Insurance],  Property Name : [PARENTH1],  Property Value : [AccruedExpenses]"
    Although that  i have this parent [AccruedExpenses] member in mbrAccount.
    your help is so appreciated
    Thanks in advance

    Heba,
    We ran into the same error (parent not valid, even though the parent was a memeber) when automating our dimension processing......
    Try looking at the data in your source table (for example, using Query Analyzer).  Do you have records with "NULL" as the value for one or more columns?  Not blank values - but values that in the query output actually have the letters NULL.  If so, you may have the same issue we had.....
    We found that fields on the source table that we were not specifically updating via the SSIS package (because we did not have any data from our source system) were getting filled with "NULL" - an example of such a field for us as NEWID.  The IDs coming from the source system will never change, so we did not have a NEWID value in the file we were mapping to our source table and so at first we just ignored NEWID field in the mapping in the SSIS package.  After getting the "parent is not valid..." errors, we updated the SSIS package to map something to all fields in the source table - if we didn't have a value from our source file for a particular field, then we mapped '' (two single quotes) to the field.  After making the change to the SSIS, we no longer had NULL values on the table and we also no longer go the parent is not valid errors!
    Also as a head's up to something else we learned the hard way.....  Make sure you are populating the CALC, DIMCALC, and ISBASEMEM fields on all your members with the appropriate value ("Y" or "N").
    Good luck!
    Regards,
    Shannon

  • Select only records where column values are not all equal to zero

    Hi everyone, this seems so easy but it's got me stumped on finding a clean, easy way to accomplish this. I'm sure when someone responds, I'll kick myself. So, assume the following is what I've got:
    with mytable as (
    select 'Type 1' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'FEB' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAR' as monthname, 5 as theval from dual union all
    select 'Type 1' as itemtype, 'APR' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAY' as monthname, 4 as theval from dual union all
    select 'Type 1' as itemtype, 'JUL' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'AUG' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'SEP' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'OCT' as monthname, 7 as theval from dual union all
    select 'Type 1' as itemtype, 'NOV' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'DEC' as monthname, 2 as theval from dual union all
    select 'Type 2' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'FEB' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'APR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAY' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'OCT' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'NOV' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'DEC' as monthname, 0 as theval from dual
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    order by itemtypeI need an outer query around this one or something that will only select "Type 1"... i.e., if all of the months are each equal to zero, don't include the record in the result set.
    Summing them to get a total of zero is not an option, as I could have -15 and +15 in different columns, in which case, that record would need to be displayed.
    Something as simple as... "where not (oct = 0 and nov = 0 and dec = 0...) at the end is all I seem to need. I've thought about adding a case clause for each column, but that doesn't seem very efficient. Ideas?
    Thanks in advance!
    Mark
    Edit... I know the following will work using the MINUS operator, but my real query is really huge, and I don't want to have to write it twice...
    {code}
    select
    itemtype,
    sum (case monthname when 'JAN' then theval else 0 end) as JAN,
    sum (case monthname when 'FEB' then theval else 0 end) as FEB,
    sum (case monthname when 'MAR' then theval else 0 end) as MAR,
    sum (case monthname when 'APR' then theval else 0 end) as APR,
    sum (case monthname when 'MAY' then theval else 0 end) as MAY,
    sum (case monthname when 'JUN' then theval else 0 end) as JUN,
    sum (case monthname when 'JUL' then theval else 0 end) as JUL,
    sum (case monthname when 'AUG' then theval else 0 end) as AUG,
    sum (case monthname when 'SEP' then theval else 0 end) as SEP,
    sum (case monthname when 'OCT' then theval else 0 end) as OCT,
    sum (case monthname when 'NOV' then theval else 0 end) as NOV,
    sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    minus
    select
    itemtype,
    jan,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec
    from (
    select
    itemtype,
    sum (case monthname when 'JAN' then theval else 0 end) as JAN,
    sum (case monthname when 'FEB' then theval else 0 end) as FEB,
    sum (case monthname when 'MAR' then theval else 0 end) as MAR,
    sum (case monthname when 'APR' then theval else 0 end) as APR,
    sum (case monthname when 'MAY' then theval else 0 end) as MAY,
    sum (case monthname when 'JUN' then theval else 0 end) as JUN,
    sum (case monthname when 'JUL' then theval else 0 end) as JUL,
    sum (case monthname when 'AUG' then theval else 0 end) as AUG,
    sum (case monthname when 'SEP' then theval else 0 end) as SEP,
    sum (case monthname when 'OCT' then theval else 0 end) as OCT,
    sum (case monthname when 'NOV' then theval else 0 end) as NOV,
    sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    where ( oct = 0 and nov = 0 and dec = 0 and jan = 0 and feb = 0 and mar = 0
    and apr = 0 and may = 0 and jun = 0 and jul = 0 and aug = 0 and sep = 0
    order by itemtype
    {code}
    Edit again... Ok, I guess I'm answering my own question here, but I think using a WITH clause to write the main query once and then selecting * from it twice using the MINUS operator in between where the second query has where (oct = 0, etc.) is what I need. If anyone else has better suggestions, please do let me know! Here's the pseudo logic for what I've come up with so far...
    {code}
    WITH mainquery as (select everything)
    select * from mainquery
    minus
    select * from mainquery where (oct = 0, nov = 0, etc...)
    {code}
    Thanks again!
    Mark
    Edited by: user455268 on Mar 1, 2012 7:13 PM
    Edited by: user455268 on Mar 1, 2012 7:16 PM

    Hi,
    You can do that with a HAVING clause:
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    HAVING      MIN (theval)     != 0
    OR      MAX (theval)     != 0
    order by itemtype
    ;If the values are all 0, then the MIN and the MAX will both be 0.
    If either the MIN or the MAX is not 0, then the values are not all 0.
    This assumes that the combination (itemtype, monthname) is unique, as it is in your sample data.
    If that's not the case, start with a subquery that GROUPs BY itemtype, monthname, so that, when you get to the main query, that combination will be unique.

  • Concatenating column values does not work (in SQLplus)

    I entered the following command in SQLplus and expected to get a string where all column values are (comma) concatenated:
    select ''||username||','||'' from dba_users;
    Unfortunatly instead of
    SYSTEM,SYS,ANONYMOUS,XDB,.....
    all users were listed in a column of a result table.
    How else can I concat them as intended
    Peter

    Hi,
    That's called "String Aggregation".
    Starting in Oracle 11.2, the function LISTAGG does that.
    AskTom:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:2196162600402
    shows several different ways to do it, for versions 9 and up.
    I recommend the first one, the user-defined function STRAGG, which is similar to LISTAGG, and which you can copy from that page.
    Once you have STRAGG installed, your query is simply
    SELECT    STRAGG (username)     AS all_usernames
    FROM      dba_users
    ;On Oracle 10 (and up) you may have a similar function, WM_CONCAT (owned by WMSYS), already installed.
    WM_CONCAT is not documented, so you may not want to use it in your Production applications.
    Another good site concerning String Aggregation is
    http://www.oracle-base.com/articles/10g/StringAggregationTechniques.php
    If you're wondering why your original query didn't do what you hoped:
    SELECT  ...
    FROM    table_x;(withoiut a WHERE clause or any other clauses) is guaranteed to produce on row of output for every row in table_x. It doesn't matter what is in the SELECT clause; there will always be one output row fro every original row.

  • "Item Containing Primary Key Column Value" does not display records

    Hello,
    We are developing a new page where an "Automated Row Fetch" process is needed.
    With other pages we experienced no issues. But with a new one, when defining the value for the field “Item Containing Primary Key Column Value”, Apex displays no rows.
    As far as we know, Apex should display all the fields defined for the page. Is there any property which affects the fields visibility?
    The affected page has textarea and text fields.
    Thanks in advance.

    Hello,
    Sorry, we have already detected that the problem was at field definition.
    Fields should be defined as "Source Type: Database Column". They were wrong defined.
    Thanks.

  • htmlb:tableView : (table) Attribute value is not a valid reference

    Hi All,
    In Table view i am getting the following error.
    The following error text was processed in the system:
    <htmlb:tableView>: (table) Attribute value is not a table
    My code in View is
    CREATE OBJECT  MODEL TYPE  ZCL_HREPAN_MODEL_MAIN.
    CREATE OBJECT tv_itr1 TYPE ZCL_HREPAN_MODEL_ITR_STATUS exporting model = model.
    %>
         <htmlb:tableView  id              = "reportsTable1"
                           headerVisible   = "true"
                           headerText      = "All PANs:"
                           footerVisible   = "true"
                           design = "alternating"
                           visibleRowCount = "20"
                           width           = "100%"
                           fillUpEmptyRows = "false"
                           columnWrapping  = "false"
                           columnWidth     = "200"
                           sort = "server"
                           selectionMode = "lineEdit"
                           iterator        = "<%=tv_itr1%>"
                           table           = "//MODEL/DATE_RANGE_PAN" >
          </htmlb:tableView>
    in above DATE_RANGE_PAN is table from model 'ZCL_HREPAN_MODEL_MAIN'
    Controller as below:  DO_REQUEST.
    if lr_event is bound and lr_event->server_event = 'allpans'.
      lo_model ?= get_model( 'model_id_status' ).
      lo_display_view->set_attribute( name = 'model' value = lo_model ).
      lo_display_view = create_view( view_name = 'allpans.htm').
      call_view( lo_display_view ).
      ENDIF.
    DO_INIT as below
    lo_model ?= create_model( class_name = 'ZCL_HREPAN_MODEL_MAIN'
                                model_id   = 'model_id_status').
    please help me how to solve this??
    REgards,
    Kishan

    I think DATE_RANGE_PAN is not table. Make sure its a table. If issue persist, post the data type declaration here.
    Raja

  • Possible Bug: Rows & Column values are not honoured in panel form layout

                      <af:panelFormLayout id="pfl10"
                                                                                    binding="#{backingBeanScope.backing_AssemblyStarts.pfl10}"
                                                                                    rows="1" maxColumns="4"
                                                                                    fieldWidth="66%" labelWidth="34%">
    Even after Running, saving, deploying it shows the same 4 rows...
    I wanted to include image as well... how to insert image in the question ? I drag and drop image on this editor, but it did not allow me to submit the question.
    Here is the image I uploaded on google drive...
    https://docs.google.com/file/d/0B7Po4hB-u4BgS3ExWG5YdjRIS1E/edit?usp=sharing
    Thanks
    Rahul

    It is confirmed now...... I checked that this "Panel Form Layout" does not work on popup. It does not change rows and columns at all..... !!!!
    It works fine on the normal page... but not on the popup.
    Is it Bug or it is shortcoming of 'panel form layout' ???
    Anybody listening ??  anybody faced this earlier ???
    Thanks
    Rahul

  • How can join two tables if column values does not match

    Hi guys,
    i have table
    col1 col2
    abcd 123
    asdf 234
    wert 456
    sedf 789
    and another table with
    col1
    abcd
    aaaa
    but i need the output like
    abcd 123
    abcd 234
    abcd 456
    abcd 789
    aaaa 123
    aaaa 234
    aaaa 456
    aaaa 789

    You do not tell us about this where condition before, but...
    select b.col1, a.col2  from table a, another_table b
    where a.col2 in (123, 234, 456, 789)or
    select b.col1, a.col2  from table a, another_table b
    where a.col1 in ('abcd','asdf','wert','sedf' )

  • Expected column value is not selecting

    Hi All,
    I have to table like below records
    Select * from pa_tbl where emplid=’5705838’
    Gives the Below result.
    EMPLID    COMPANY     EFFDT_CODE        STATE    RESIDENT
    5705838    T01         8/20/1998        CO            N          
    5705838    T01         8/20/1998        PA            Y      
    5705838    T01         1/1/2001        CO            N      
    5705838    T01         1/1/2001        PA            Y  
    From above result I have to select  only ‘state_code’  
    1.Condition is  resident is ‘N’ with max(effdt)
    2nd condition select state_code in ‘AK’, ‘NV’, ‘CO’, ‘PR’ among lot of state_codes .
    Above example that i have given only for 'CO' state_code
    I am able to extract sate code like  ’CO’ using below query
    SELECT  STATE
    FROM PS pa_tbl S
    WHERE S.EMPLID  ='5705838'
    AND S.RESIDENT = 'N'
    AND S.STATE IN('AK','NV','CO','MI')
    AND S.EFFDT   = (SELECT MAX(EFFDT)
                        FROM PS pa_tbl
                        WHERE EMPLID  = S.EMPLID
                        AND COMPANY = S.COMPANY
                        AND EFFDT <=SYSDATE);
    Problem:-
    Here user entered effdt is 1/1/2001 with state_code is 'PA' and resident='Y 'which is latest record. In this case my query should return NULL/NODATA found.
    But my query returns STATE_CODE=CO (this is wrong)
    How to write a sql query can any body give me advice please?
    Thanks,
    Krupa

    Use analytic ROW_NUMBER:
    SCOTT@orcl > select  *
      2    from  tbl
      3  /
        EMPLID COM EFFDT     ST R
       5705838 T01 20-AUG-98 CO N
       5705838 T01 20-AUG-98 PA Y
       5705838 T01 01-JAN-01 CO N
       5705838 T01 01-JAN-01 PA Y
    SCOTT@orcl > with t as (
      2             select  state,
      3                     row_number() over(order by effdt desc) rn
      4               from  tbl
      5               where emplid = 5705838
      6                 and resident = 'N'
      7                 and state in ('AK','NV','CO','MI')
      8            )
      9  select  state
    10    from  t
    11    where rn = 1
    12  /
    ST
    CO
    SCOTT@orcl > with t as (
      2             select  state,
      3                     row_number() over(order by effdt desc) rn
      4               from  tbl
      5               where emplid = 5705838
      6                 and resident = 'Y'
      7                 and state in ('AK','NV','CO','MI')
      8            )
      9  select  state
    10    from  t
    11    where rn = 1
    12  /
    no rows selected
    SCOTT@orcl >
    SY.

  • How to pass custom column value that is created in Answers to its detail report

    Hi,
        I have a custom column (in the below ex: 'Aging') which is calculated based on prompt date and arrived at the below aging buckets. I have a drill report from 'Balance' column. When I click on 100/200/125 corresponding 'Aging' value should be passed to the detail report.
    Aging
    Balance
    0-30 days
    100
    31-60 days
    200
    61-90 days
    125
    Tried putting the 'Aging' formula in detail report and make it 'is prompted' - no luck.
    Is creating the logic in RPD with a request variable (to pass prompt date) only option to  solve this? Any suggestions?
    Thanks in advance and a very happy new year.

    Finally, we used a request variable and handled this in RPD.

  • Cat4000-IOS not seen as member of its own vtp domain in CM

    Recently we upgraded to CiscoWorks CD 5 V1. Cat4000-IOS devices are now supported in RME and CM. But in CM Topology Services the Cat4000-IOS devices are not seen as members of their own VTP domain. Instead, each access switch behind the Cat4000-IOS forms a single switch cloud (vtp disconnected domain) and no vtp server is found for that domain.
    The two Cat4000-IOS serve as VTP servers and HSRP-Gateways for five access switches (Cat4000 with CatOS) connected via dot1q-trunks to each Cat4000-IOS.

    I am having the same problem. I followed the link and the document says "A link in a VTP domain is not set to trunk. There are devices in this domain that do not communicate through any trunk." I have checked the devices and they are set up to trunk. In CiscoWorks - topology services, when I run a Logical Discrepancy Report It says the domain is disconnected and it is showing 15 sets. Set one shows my two 6509's, one 4006 & all of the 3524's connected to it. All of the other sets have only one 3524 in each of them. The trunk ports from two of my 4006's to my 6509's are as follows:
    interface Port-channel1
    description Uplink to C_BCAD_2213_6x_1
    switchport
    switchport trunk encapsulation isl
    switchport mode trunk
    no snmp trap link-status
    On one of my other 4006's the trunk port is as follows:
    interface Port-channel4
    switchport
    switchport trunk encapsulation isl
    switchport mode trunk
    description Uplink to C_BCAD_2213_6x_1
    no snmp trap link-status
    As you can see, they are both set up the same.
    Also in Campus Manager, only the 4006 in set 1 & all of the 3524's show up graphically as clients. The two 6509's show up as servers.
    All devices are running VTP version 2. The revision number on all devices is the same (10).

  • How to pass column value which is not present in source criteria

    Hi,
    In one of my report I want to pass a column value from Source report(a pivot table) to target report. The column which I want to pass is not present in the sorce report criteria. Is there any work around for this issue.
    I added this column in criteria and hidden the column. But the issue is not solved.
    Best Regards,
    TKB.

    Swati,
    I am navigating from Summary report to detail report. I am prompting the required fields in detail report. But I want to pass one more column value explicitly, which is not present in source request.
    Best Regards,
    TKB.

  • Coulmn values is not being displayed in obiee 11g

    Hi All,
    Below is the sample xml generated from data structure.
    +<!--Generated by Oracle BI Publisher 11.1.1.6.0-->+
    +<DATA_DS>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331403</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140302</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD1</PRODUCT_NAME>+
    +<REVENUE>3924973.97</REVENUE>+
    +</G_1>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140104</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD2</PRODUCT_NAME>+
    +<REVENUE>688244.58</REVENUE>+
    +</G_1>+
    +<G_1><LOCATION_NAME>EFGH</LOCATION_NAME>+
    +<PRODUCT_ID>1011165401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101116540101</PRODUCT_SUBID>+
    +<PRODUCT_NAME>EFGH1</PRODUCT_NAME>+
    +<REVENUE>3763099.99</REVENUE>+
    +</G_1>+
    +</DATA_DS>+
    We were unable to see the REVENUE column values in the report. We were able to see the values while creating layout, but unable to see the values in report. Report is not having any filters or parameters. This is build on two tables. Revenue in one table and details in another table.
    Thanks.

    Hi,
    Just noticed that, able to see column values in HTML, pdf views but unable to see in interactive view.
    While creating the layout checked in Interactive view, at that time able to get column values, but in the report column values are not being displayed in interactive view.
    But in HTML, list option , Repeating Section is not working, so have to see in interactive view only.
    I can say, in Interactive vew Aggregate functions are not working properly. We need tro use Repeating Section and List option in report. so we need interactive view only.
    Any ideas..
    Thanks.

  • KE0C133 : Characteristic value does not exist  for charact KMVTNR

    Hi Gurus,
    In my system i have the field CO-PA  KMVTNR, assigned to KNVP - LIFNR.
    When i try to create a shipment cost, i get the error: "The characteristic KMVTNR (Sales employe) should be posted to Profitability  Analysis (CO-PA). When the system checked the entries, it was established that  the transferred  characteristic value is not valid in CO-PA."
    I have debbug, and the problem is that in report RK2FVPKE, check that my value is not a valid PERNR. And it is not, because i am assigning a lifnr number not a pernr number.
    I not allways get this error, when i create the same shipment cost in other case. What make that the system check that the value is a valid pernr or not?
    thanks

    Hi Luis
    To me, it seems logical that if the pernr is not there, the system gives you an error
    In the cases where it did not, can you check if valid pernr exists?? If you create a wwxxx char "without own value maint", it should not check for the valid pernr. But with kmvtnr, I am sure it will check
    Br. Ajay M

Maybe you are looking for

  • PI 7.1 EHP1 SP3, Message Mapping cannot select object in the folder ?

    Hi, I am very new with PI 7.1 EHP1, i am not sure whether there is some new restriction or bug, because i was trying to create Data Type, Message Type in site the folder, but the Message Mapping cannot select those object insite the folder. The messa

  • I get the message  Could not load "   .ai"  The file might be an unsupported format or may be corrupt.

    I am trying to open the Ai. file in my graphtec ce6000 program and I receive this message. Worked fine before and now I keep getting this message.  I can cut directly from my cutter program. So I know it has to do with an error in Ai. Please help! I

  • How do I permanently delete calendars in ical?

    I delete the calendars, and every time I sync, the old calendars return to iCal.  Any solutions out there?  Thanks

  • Icloud not finding all my devices

    My iCloud account is not registering all of our devices. We are trying to give someone else an iPad mini, but we can't set it up because it wants us to remove it from our find my device feature.  We went to remove it, but it isn't listed.

  • X-Fi XtremeMu

    I have a Sound Blaster . And have the standard microphone and earphone jacks in the front of the computer. I want to know if there?s a cable I can purchase to make these ports accessible with the so I don?t have to be going to the back of the compute