Dimension - Repetive values

If I am viewing a fact table (25 Million+ records) from SE11 is there anyway that I can easily check how often a value for one of the dimensions (columns) repeats itself.
If there is another method to do the same could you advise. Thanks

you can do this by writing an ABAP code (in SE38). The actual code may look like :
REPORT  ZT1.
PARAMETERS : W_COUNT type i default 100.
tables : DIMTAB.
data : dbcur(10) type c.
data : w_dimtab like dimtab occurs 1 with header line.
exec sql.
open dbcur for
select * from DIMTAB a
where :w_count <= ( select count(*) from DIMTAB b
where b.dimid = a.dimid )
endexec.
do.
  exec sql.
  fetch next dbcur into structure :DIMTAB.
  endexec.
  if sy-subrc <> 0.
     exit.
  else.
     append DIMTAB to w_DIMTAB.
  endif.
enddo.
*exec sql.
*close dbcur.
*endexec.
sort w_dimtab.
delete adjacent duplicates from w_DIMTAB comparing DIMID.
loop at w_DIMTAB.
write :/ w_DIMTAB-DIMID.
endloop.

Similar Messages

  • Only Dimension Table Values in Combo Box or Drill Down Selections

    Hi All,
       How to get only Dimension Table Values instead of Master Data Values in Combo Box or Drill Down Box list of values?
    I am getting all the values in 0CALMONTH Combo Box where i need only infoproviders values.
    In Entry List tab of Combo Box when i select 0CALMONTH its reading from its Master Data.Is there any option how there is Dimension table in Value help.
    In Query, infoobject levels the filter values selection is set as infoprovider only.
    Can anyone please let me know how to get only dimension table values when we use combo box.
    Thanks & Regards
    K.Srinivas Rao

    Hi
    Create one BI query with only one object in the output of the query. (In your case 0CALMONTH)
    So now if when you run the query it will show values which are there in infoprovider. THen drag one form from output of this query in vc & create dropdown list on this.
    Is this what you are looking for?
    regards
    Sandeep

  • Very urgent please ----repetting values in the output

    I am getting values for acc seq   access seq number and codndition table  repeting values as in the output of the report, please have a look in my code and please do respond immediatley.
    regards always, below is my code and output
    REPORT zmaster_condition LINE-COUNT 80 LINE-SIZE  225.
         D A T A                                                         *
    INCLUDE zmaster_condition_top.
        S E L E C T I O N S                                              *
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-b01.
    SELECT-OPTIONS: s_kvewe FOR  t683s-kvewe,
                    s_kappl  FOR  t683s-kappl,
                    s_kalsm  FOR  t683s-kalsm,
                    s_kschl  FOR   t683s-kschl,
                    s_kabnr  FOR  t682i-kotabnr,
                    s_kozgf  FOR  t682i-kozgf.
    SELECTION-SCREEN END OF BLOCK b01.
    *SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-s04.
    *PARAMETERS:      p_vari     LIKE   disvariant-variant.
    *SELECTION-SCREEN END OF BLOCK b4.
    **SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    *SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    PARAMETERS R1 RADIOBUTTON GROUP RADI1 DEFAULT 'X'.
    *SELECTION-SCREEN END OF BLOCK b02.
         A T   S E L E C T I O N - S C R E E N                           *
         M A I N   P R O G R A M                                         *
    START-OF-SELECTION.
    *Initializing the local tables.
      CLEAR:it_t682i,it_t683s,it_t685.
      REFRESH:it_t682i,it_t683s,it_t685.
      clear it_output_report.
      refresh it_output_report.
    *Selection of data from pricing procedure tables
    SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                INTO TABLE  it_t682i
                WHERE kvewe = 'B'
                AND  kappl = 'V1'.
      SELECT kvewe kappl kalsm stunr zaehk kschl  FROM t683s
           INTO   TABLE  it_t683s
           WHERE  kvewe = 'B'
           AND    kappl = 'V1'
           and    kschl in s_kschl
           AND    kalsm  IN s_kalsm.
    sort it_t683s by kvewe kappl.
      DELETE   adjacent duplicates  FROM
             it_t683s  .
    SELECT kvewe kappl kschl kozgf FROM t685
        INTO TABLE it_t685
        WHERE kvewe = 'B'
        AND kappl = 'V1'
        AND  kschl IN s_kschl
        AND kozgf IN s_kozgf.
      LOOP AT it_t683s.
        it_output_report-kvewe = it_t683s-kvewe.
        it_output_report-kappl =  it_t683s-kappl.
        it_output_report-kalsm =  it_t683s-kalsm.
        it_output_report-stunr =  it_t683s-stunr.
        it_output_report-zaehk =  it_t683s-zaehk.
        it_output_report-kschl =  it_t683s-kschl.
      SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                 INTO TABLE  it_t682i
                 WHERE kvewe = it_t683s-kvewe
                 AND  kappl = it_t683s-kappl
                 and  kozgf   in s_kozgf
                 and  kotabnr in s_kabnr.
                 clear it_t682i.
    loop at it_t682i.
    it_output_report-kozgf = it_t682i-kozgf.
    it_output_report-kozgf = it_t682i-kozgf.
      it_output_report-kolnr = it_t682i-kolnr.
      it_output_report-kotabnr = it_t682i-kotabnr.
       APPEND it_output_report.
       CLEAR it_output_report.
    endloop.
    APPEND it_output_report.
      ENDLOOP.
            E N D - O F - S E L E C T I O N
    END-OF-SELECTION.
    *Output to a list
      FORMAT COLOR 2 .
      WRITE:/2 'Usage',09 'App',17 'Proced',24 'Step',
                37 'Counter',50 'CondType',63 'Description',85 'AccSeq',
               97 'AccSeqNum',108 'ConTable'.
      WRITE:/1(225) sy-uline.
      LOOP AT it_output_report.
        WRITE:/ it_output_report-kvewe UNDER 'Usage',
                it_output_report-kappl UNDER 'App',
                it_output_report-kalsm UNDER 'Procedure',
                it_output_report-stunr UNDER  'Step',
                it_output_report-zaehk UNDER  'Counter',
                it_output_report-kschl UNDER 'CondType',
               it_output_report- UNDER  'Description',
                it_output_report-kozgf UNDER 'AccSeq',
                it_output_report-kolnr UNDER 'AccSeqNum',
                it_output_report-kotabnr UNDER  'ConTable'.
                it_output_report- UNDER  'SalesOrg',
                it_output_report- UNDER  'DocType'.
                it_output_report- UNDER  'Customer'.
      ENDLOOP.
    output of the report:
    Usage  App     Proced   Step   Counter CondType   AccSeq AccqNum  ConTable                                                                               
    B      V1        V10000      220   00           ZCR1        Z200         05           511     
    B      V1 V10000      220          01           ZRAS        Z200        05         511     
    B      V1 V10000      225          00           ZTPT         Z200        05         511     
    B      V1 V10000      230          00           ZOP4         Z200        05         511     
    B      V1 V10001      010          01           RD03         Z200        05         511     
    B      V1 V10002      010          00           ZREP         Z200        05         511     
    B      V1 V10000      200          00           ZOP3          z200        05         511     
    B      V1 V10000      130          00           ZOC3           z200        05         511

    i would like to thanks you for your valuable help.
    i am still getting repeated values for access seq , access number and cond table,last three columns in the output, pls see as it it is very urgent...
    here is the code:
    REPORT zmaster_condition LINE-COUNT 80 LINE-SIZE  225.
         D A T A                                                         *
    INCLUDE zmaster_condition_top.
        S E L E C T I O N S                                              *
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-b01.
    SELECT-OPTIONS: s_kvewe FOR  t683s-kvewe,
                    s_kappl  FOR  t683s-kappl,
                    s_kalsm  FOR  t683s-kalsm,
                    s_kschl  FOR   t683s-kschl,
                    s_kabnr  FOR  t682i-kotabnr.
                   s_kozgf  FOR  t682i-kozgf.
    SELECTION-SCREEN END OF BLOCK b01.
    *SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-s04.
    *PARAMETERS:      p_vari     LIKE   disvariant-variant.
    *SELECTION-SCREEN END OF BLOCK b4.
    **SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    *SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE text-b02.
    PARAMETERS R1 RADIOBUTTON GROUP RADI1 DEFAULT 'X'.
    *SELECTION-SCREEN END OF BLOCK b02.
         A T   S E L E C T I O N - S C R E E N                           *
         M A I N   P R O G R A M                                         *
    START-OF-SELECTION.
    *Initializing the local tables.
      CLEAR:it_t682i,it_t683s,it_t685.
      REFRESH:it_t682i,it_t683s,it_t685.
      REFRESH it_output_report.
      SELECT kvewe kappl kalsm stunr zaehk kschl  FROM t683s
           INTO   TABLE  it_t683s
           WHERE  kvewe IN s_kvewe
           AND    kappl IN s_kappl
           AND    kalsm  IN s_kalsm
            AND    kschl IN s_kschl.
    *delete adjacent duplicates from it_t683s comparing
                                    kvewe kappl kschl.
    SELECT kvewe kappl kozgf kolnr kotabnr FROM t682i
                     INTO TABLE  it_t682i
                    FOR ALL ENTRIES IN it_t683s
                     WHERE kvewe = it_t683s-kvewe
                     AND  kappl = it_t683s-kappl
                    AND  kozgf   IN s_kozgf
                     AND  kotabnr IN s_kabnr.
      LOOP AT it_t683s.
       it_output_report-kvewe = it_t683s-kvewe.
       it_output_report-kappl =  it_t683s-kappl.
       it_output_report-kalsm =  it_t683s-kalsm.
       it_output_report-stunr =  it_t683s-stunr.
       it_output_report-zaehk =  it_t683s-zaehk.
       it_output_report-kschl =  it_t683s-kschl.
      move-corresponding it_t683s to it_output_report.
    sort it_t683s.
    sort it_t682i.
    READ TABLE it_T682i with KEY KVEWE = it_T683s-KVEWE
                                kappl = it_t683s-kappl.
    LOOP AT it_T682i  WHERE KVEWE = it_T683s-KVEWE
                           AND  kappl = it_t683s-kappl.
                          AND  kotabnr IN s_kabnr.
    IF SY-SUBRC EQ 0.
       move-corresponding it_T682i to it_output_report.
         it_output_report-kozgf = it_t682i-kozgf.
         it_output_report-kolnr = it_t682i-kolnr.
         it_output_report-kotabnr = it_t682i-kotabnr.
    ENDIF.
    APPEND it_output_report.
      ENDLOOP.
    *DATA TAB(4).
    *DATA VKORG LIKE  TAB-VKORG.
    *CONCATENATE it_t683s-kvewe it_t682i-kotabnr INTO TAB .
    *SELECT SINGLE VKORG INTO VKORG FROM  TAB WHERE
    KSCHL = 'ZRC1'.
            E N D - O F - S E L E C T I O N
    END-OF-SELECTION.
    *Output to a list
      FORMAT COLOR 2 .
      WRITE:/2 'Usage',09 'App',15 'Proced',24 'Step',
                37 'Counter',50 'CondType',63 'Description',85 'AccSeq',
               97 'AccSeqNum',108 'ConTable'.
      WRITE:/1(225) sy-uline.
      LOOP AT it_output_report.
        WRITE:/ it_output_report-kvewe UNDER 'Usage',
                it_output_report-kappl UNDER 'App',
                it_output_report-kalsm UNDER 'Proced',
                it_output_report-stunr UNDER  'Step',
                it_output_report-zaehk UNDER  'Counter',
                it_output_report-kschl UNDER 'CondType',
               it_output_report- UNDER  'Description',
                it_output_report-kozgf UNDER 'AccSeq',
                it_output_report-kolnr UNDER 'AccSeqNum',
                it_output_report-kotabnr UNDER  'ConTable'.
                it_output_report- UNDER  'SalesOrg',
                it_output_report- UNDER  'DocType'.
                it_output_report- UNDER  'Customer'.
    here is the output:
    Report to list out all Condition Records for Output and Pricing.                                                                               
    Usage  App   Proced   Step  Counter CondType  AccSeq  AccSeqNum  ConTable
                                                                                    B      V1     V05000   010        01      AF00             Z001        05         551    
    B      V1    V05000   020          02      MAIL           Z001        05         551    
    B      V1    V05000   030          01      ESYM         Z001        05         551    
    B      V1    V06000   010          01      AN00          Z001        05         551    
    B      V1    V06000   020          02       MAIL          Z001        05         551

  • Make dimension values shown reflect other dimension filter values

    I have created a cube and uses access this cube in an Excel pivot table.  Is it possible to make values shown for one dimension display only the values valid, if I have selected another dimension's value that would limit the values that should
    show under the first dimension?  I tried linking the dimensions together with a key and that did not appear to do the trick.  I also tried using dependsondimension in properties for the other dimension, but that did not work either.  Is
    there something I am missing that makes the cube only display the values in a dimension that apply when another dimension's value is filtered?

    @Naveen - I am linking to the proper measure and am seeing the correct measure values. 
    @KR Jurgen - I'm not finding a spot to set the scope to NULL.  I would, but some people need all the values.
    Here's an example.  I have company 1 and 2.  Company 1 has item A and Company 2 has item B.  They both have sales of $1.  There is a company dimension and item dimension.  When I filter by company 1, I see sales of $1. 
    The problem is, when I select the list of items from the item dimension, I still see item B.  If I put the items in the row, I only see item A.  The ideal situation would be to have only item A show when I select the list of items from the item
    dimension.  Is there some way to accomplish this?
    Thank you both for your responses.

  • Dimension formula values

    I have dimension members values  with formula. Though values are generated at member level,at the parent hierarchy level the values are not getting rolled up.
    I am in BPC7NW...any suggestion , inputs welcome...

    D,
    I  think there  is  some  miss communication  between  your question  and my  answer..either  i'm not able  to  understand  it  correctly
    pls  answer  these  questions.
    1)your  formulas  are  getting  calculated  and  right  amnts  are  posted  to  the base  level?
    2)how  are  you checking it.?
    3)refresh  your  client DIM files  under  options  in your  EVDRE  and  check  them  again..
    again...if  the  correct values  are   posted  to  your  base  members...the mdx  formulas  job is done...
    for  rolling  it up  to  the  parents  is your BPC  job (cube,  hierarchy,report)
    why  dont  you try  writing the  same  formula  on the  APPSHELL  Copy  and check  the  results...
    hope this  helps  D....
    I  cant  think  of  anything  else...

  • Dimension member values not showing (just empty cells)

    Hi,
    I have an organization dimension (Business > Business Unit> Department > Account) and a single fact (Dollars) on my test repository. When I add my fact and any dimension level to an answers report I can see for example two empty cells for each member at the "Business" level and the result of my fact calculation. I've tried many ways to attempt solving this issue from aggregating my data to compressing all the dimension in a single table and still haven't had success. I also turned on logging and found out that the physical layer SQL being generated returns the correct values when I run it in my query tool.
    Has anyone experienced similar behavior? I'm not sure if I skipped a step on my modeling or this is a bug in my OBIEE installation
    Thanks a lot!!
    -Ignacio

    Had this problem when source datatype was nvarchar and the field was coming over as varchar with a length of 0 in the physical layer. Check your physical table definitiion to see the length of the fields that are empty for you, may have to change it to an appropriate value

  • Master data loading - Dimension Property value incorrect

    Hi,
    I have a dimension in BPC which has an attribute amount.
    When am trying to load the master data from BW, the number is truncated and displayed with a * if the number has more than 6 digits.
    If this is a problem with the delimited - comma - then it should not bring in the values even with one punctuation (e.g. 6,000) but strangely it's happening only for 6 digits or more.
    e.g. 19,605,500.00 -> *05500.00
    This is master data (estimate field) and is not used for calculations/planning.
    I tried the following but nothign worked.
    1) Removing commas using a script in the conversion file
        js:%external%.toString().replace(",","")
    2) Removing the delimiter in the transformation file and making comma as decimal point.
    DELIMITER =
    AMOUNTDECIMALPOINT = ,
    Let me know if you have any ideas to resolve this.
    Thanks,
    Vasu
    Thanks,
    Vasu

    Hi Vasu,
    The field in your BW is 17,2 which I am assuming is a decimal value of 17 digits long with 2 digits after the decimal point.  Your property of 40 characters should have plenty of room  to fit any value so something else is wrong. Can you please validate the transformation and conversion files with this data?
    I highly recommend validating the transformation and conversion files with the new external data.  In my experience most of the time when there is a problem in mapping the external data the transformation and/or conversion files do not validate successfully and they generate useful diagnostics.
    Regards,
    Leila Lappin

  • How to assign One Dimension Property value to another Dimension ID

    Business senario:
    There are two dimensions Entity and Plant. Plant also has a property Entity.
    In my Input Form, I need to derive Entity Property based on PLANT selection and should map it to ENTITY Dimension.
    I have selected PLANT Dimension and ENTITY Dimension in Page Axis. I have updated EPMOLAPMember() formula with EPMMemberProperty() for deriving Entity values. When I tried to save data an error message appears saying TOT_Code is not a base level member. So I checked Edit Report window and found that ENTITY Dimension is automatically moved to default left panel from Row Axis and Entity Dimension Context Menu is mapped to TOT_Code which is the top node of the total hierarchy.
    I tried EPMMemberOverride() function to overwrite ENTITY Dimension values with Entity Property of PLANT Dimension but unable to overwrite it.
    In Simple Words:
    ENTITY Dimension = PLANT Dimension (Entity Property)
    Is there any way to map/assign property value to another dimension??? Please help me.
    Thanks in advance.

    Hi,
    see please this thread for a possible solution http://scn.sap.com/thread/3230754
    Regards
         Roberto

  • Pass WebI dimension multiple values to OpenDocument URL lsM parameter

    Hi
    Has anyone managed to pass multiple values of WebI dimension object to OpenDocument URL lsM parameter?
    My WebI document has 3 objects: Country  \[Country\] and Customer \[Customer\] dimensions and Sales Amount measure. WebI report includes a table with 2 columns: Country \[Country\] and Sales Amount. I have built a hyperlink in the Country cells with an OpenDocument URL with lsS parameter = \[Country\] and lsM parameter which should get all context Customers for selected Country as a string (IsM=u201D\[Customer1 Name\], \[Customer2 Name\], \[Customer3 Name\]u201D) .
    Using IsM=\[Customer\] forces table to break down by customer which does not help.
    I imagine that the solution would be a function similar to count(\[Customer\]) which accepts a dimension as an input parameter and returns a string with concatenated Customer Names.
    I have considered WebI extension points (custom functions) option but according to the documentation they do not accept u201Cobjectu201D type as an input parameter.
    Any ideas?
    Thank you

    What is the prolem you are facing if you split the single date param as two parameters say startdate and enddate?
    If you pass as single string then you might have to split the same at reciever end.
    Are you trying any thing specific?

  • FM11x-G5-C Dimension default value

    Hi All,
    Have just upgraded from 11.1.2 to 11.1.3 and registered the FM11x-G5-C adapter for HFM. FDM application has migrated from 11.1.2 w FM11x-G5-B adapter (via schema update followed by export import operation). Post migration configuration I have attempted a load and discovered that the active dimensions no longer supports default dimension values (e.g. Custom3 default of [None]) for active and inactive dimensions.
    Has anyone experienced this yet. Seems bizzare that this functionality would be lost in the latest version. Have implemented a workaround, however if someone is aware of a formal solution it would be greatly appreciated.
    Regards,
    KMacintosh

    I am having the same issue with the same adapter. Did you just use a workaround in your Import Script? Or were you able to figure out another way to correct?
    Much Appreciated,
    Mike

  • ALV grid can we remove the repetation values in field & display as one .

    Dear Freinds,
                      i have developed a custom development relating to a salarly report based on the orgunit, the output is coming however i have one doubt in alv output.
    right now my internal table data having data as follows  : (iam giving only some fields)
    orgunit         orgdesc                  Empno     Empname     
    70000905        Human Resources      7056     Richard        
    70000905        Human Resources      7057     Reymond Jain       
    70000905        Human Resources      7058     Maria Gulz
    70000905        Human Resources      7061       Jacob
    now in my output i dont want to have the orgunit value 70000905 and orgdesc (human resources) shouldnt not be repeated . is there any option in ALV where we  I can use in
    the field cat ( any parameter) where i can set that we can make the orgid as one and remove the repeation.(iam using alv grid function module).
    Please help me in this regard
    Regards
    Syamla

    Hi,
         Before displaying sort ur internal table.
    refer this code.
    *&      Form  sub_display_data
          text
    FORM sub_display_data .
    *--To sort the output through material number
      DATA : lwa_sort TYPE slis_sortinfo_alv.
      DATA : lit_sort TYPE slis_t_sortinfo_alv.
    *--Pass the values to the table
      lwa_sort-fieldname = 'PERNR'.             "Field name in o/p inttable
      lwa_sort-tabname   = 'it_final2'.         "Output Internal table
      lwa_sort-spos      = '1'.                 "Sort  sequence
      lwa_sort-up        = 'X'.                 "Sort in ascending order
      lwa_sort-down      = ' '.                 "Sort in descending order
      lwa_sort-subtot    = 'X'.                 "Subtotal
      APPEND lwa_sort TO lit_sort.
    *--Pass the values to the table
      lwa_sort-fieldname = 'WORKDATE'.          "Field name in o/p inttable
      lwa_sort-tabname   = 'it_final2'.         "Output Internal table
      lwa_sort-spos      = '2'.                 "Sort  sequence
      lwa_sort-up        = 'X'.                 "Sort in ascending order
      lwa_sort-down      = ' '.                 "Sort in descending order
      lwa_sort-subtot    = ' '.                 "Subtotal
      APPEND lwa_sort TO lit_sort.
    *--Pass the values to the table
      lwa_sort-fieldname = 'WEKLY'.             "Field name in o/p inttable
      lwa_sort-tabname   = 'it_final2'.         "Output Internal table
      lwa_sort-spos      = '3'.                 "Sort  sequence
      lwa_sort-up        = 'X'.                 "Sort in ascending order
      lwa_sort-down      = ' '.                 "Sort in descending order
      lwa_sort-subtot    = ' '.                 "Subtotal
      APPEND lwa_sort TO lit_sort.
      wa_layout-colwidth_optimize = 'X'.
      IF NOT it_final2[] IS INITIAL.
    *--Call the function module to display the ALV report
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            is_layout          = wa_layout
            i_callback_program = v_repid
            it_fieldcat        = it_fieldcat1[]
            i_default          = c_chk
            i_save             = c_save
            it_sort            = lit_sort
          TABLES
            t_outtab           = it_final2
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ELSE.
    *--Message No data found
        MESSAGE i888 WITH text-017.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.                    " sub_display_data
    Regards,
    Prashant

  • Excel CUBESET across multiple dimensions returns #VALUE

    Simplified question:
    All the cubeset examples I'm finding seem to be limited to one "criteria"
    http://office.microsoft.com/en-us/excel-help/cubeset-function-HA010083019.aspx
    Ultimately I need a cubevalue that is based on multiple criteria. When I use a CUBEVALUE pointed to 4 different Cubeset cells, I get a #VALUE error.
    * Should I be trying to combine my sets before I feed them to the CUBEVALUE, or should it matter?
    * What conditions or circumstances would result in not being able to get a value from CUBEVALUE taking into account multiple CUBESET sources (I have independently identified that there are real values to return)
    * If it would be better to combine all the criteria in one CUBESET before feeding that to the CUBEVALUE, what is the syntax (bracket placement) for including more than one condition from other cells that each contain a single cubeset condition? e.g.
    =CUBESET("Cubename",({A1, A5, C10, B14}))
    Thank you!
    Note: two of my source cubesets are overlapping, I wouldn't think this is a problem- I'd expect the combination to work like a Venn diagram; one is "All members except APPLES", and the other is "All members except KIWI" so I'd expect
    the combination of the two to result in "All members except Apples OR Kiwi"... please clarify if that isn't correct

    Hi Keith,
    That seems the value is not getting fetched from the right place. This is a different behavior and to maintain only one issue on a single thread
    I would advise you to pursue the other thread you have just opened and will help us avoid duplication of the same issue.
    Please reach out to us if you have any questions on this issue and we will glad to work on it.
    Regards,
    Abhijeet.

  • Repeted values in HR-Payroll

    Hi Friends,
    In BEx query we have to show Employee salay like  basic salary, HRA and others and in same report we have to show Empolyee dependent persons lkike wifr and chioldren.  If a employee have three dependents this data is  displayed  three times row wise. However if we remove the dependents it adds  the value of all three rows & shows the respective value , which is wrong.
    For example if an employee's basic salary is 6000 & he has three dependenats, it shows his basic as 18000 which is wrog
    Kindly guide me how can resolve this.

    Dear obaid shaikh,
    The scenario is like below..
    E1..........D1(Wife)..................6000
    E1..........D2(Child 1)...............0000
    E1..........D3(Child 2)...............0000
    E1..........D1(Wife)..................10000
    E1..........D2(Child 1)...............0000
    E1..........D3(Child 2)...............0000
    The salary should be applicable only for the employee and in my report the probem is that it is showing like below
    E1..........D1(Wife)..................6000
    E1..........D2(Child 1)...............6000
    E1..........D3(Child 2)...............0000
    E1..........D1(Wife)..................10000
    E1..........D2(Child 1)...............10000
    E1..........D3(Child 2)...............10000 whic is the wrong. The salary is showing for the employee dependent also.
    Thanks & Regards,
    Anand

  • How do i avoid repeted values in a report.

    how do i avoid repeated values in a report. for example..
    DEPTID EMPLID NAME
    10          101     aaaaaa
    10          166     bbbbb
    10          176     ggggg
    10          145     iiiiiiiii
    20          234     zzzzzz
    20          285     ddddd
    20          266     uuuuu
    but I want see the report as below.
    DEPTID EMPLID NAME
    10          101     aaaaaa
              166     bbbbb
              176     ggggg
              145     iiiiiiiii
    20          234     zzzzzz
              285     ddddd
              266     uuuuu
    Thanks in advance

    I apologize for jumping in here, but I had this problem in the past and Marc Sewtz had indicated there is a fix slated for APEX 3.0 timeframe.
    Here's a couple of links if you are interested:
    Re: Break Formatting Region and effect on other regions
    report error: ORA-01403: no data found when SUM columns
    The second link contains the workaround I used.
    Again, sorry for interjecting, but I thought it might be a bit helpful,
    Mark

  • Can we calculate difference of  dimension properties values in script logic

    HI
    I have 3 products, whose manufacturing process starting perod and end periods are different for three products. Now I want
    to distribute total  manufactuing cost to those periods only for each product.  how will write script logic  for this senario.
    My system is BPC nw7.5
    Mahi

    Hi,
    So, you want to find the difference between the dates and distribute the cost among them. I dont think this will be feasible using script logic. My suggestion would be use BADI. Script logic cannot do manipulation on the properties. BADI will be much easier. In addition to this, you need to think what should be the destination of the result. Every record is going to generate few records (depending on the number of months).
    Hope this helps.

Maybe you are looking for