Program or FM tochange description of key figure in all queries at a time

Hi,
As per my requirement  i need to change the description of a key figure from OED to IEG in all the reports which are containing "OED" as key figure at Query level only.
Its a KF and not a resteicted key figure or calculated KF.
Is there any program or table or Function module where we can change the key figure description directly
without going to each Query and change it.
Please suggest me.
Thanks & Regards
Bharathi

texts for key figures chars. etc are refrenced only once when query is created. after that if description changes in the infoobject that doesn't reflect in query.
Texts for all elements are maintained in RSZELTTXT table. you can write a simple program to modify texts of elements which suit your need. Contact any abaper in your team to write this program which simply updates the texts of certain elements..
logic may be like this
select all lines from RSZELTTXT where TXTSH = 'Plant' or TXTLG = 'Plant'.
modify these llnes with new text.
update rszelttxt with these new lines

Similar Messages

  • Description of key figure for multi language support issue.

    Hi Experts,
    Have a good day ahead!!
    Custom key figure description multi for the language support issue
    The key figure is created in English  language and description also in English.
    When I have logged in to English language and checked the report in Bex ,description of key figure is available.
    But when I log in to other language(German, Spanish Portuguese and etc) environment the description in Bex rport of key figure is showing blank
    In rsa1 in both English and other(German, Spanish Portuguese and etc)  environments key figure description is okay and correctly displaying.
    Please post me your inputs on the same.
    Thanks in advance!!
    Regards
    Priya.

    Hi Prasanth,
    This are the key figures XPRECIO: Transactional Price and XPRECLIST: Price list, its maintained in RSA1 tcode at info object level .
    These two KF descriptions are maintained in English, its working fine when I login into SAP Bex analyzer with English language and its not showing the description for the languages (German, Spanish, Portuguese and etc).
    Its need to be displayed in when login into SAP Bex analyzer with language German, Spanish, Portuguese and etc.
    Regards
    Priya

  • Key figure description for key figure YKFRFCFGD does not exist in liveCache

    Dear SAP Gurus,
    We have upgraded our APO 3.10 to SCM 5.1,
    Sopport Pack details:
    SAP_BASIS 700 16
    SAP_ABA 700 16
    ST-PI 2005_1_700 6
    PI_BASIS2006_1_700 6
    SAP_BW 700 18
    SAP_AP 700 13
    LCAPPS 2006_700 4
    EA-IPPE 400 13
    SCEMSRV 510 7
    SCM 510 6
    SCMBPLUS 510 6
    SCMEWM 510 6
    SCMSNC 510 6
    SCM_BASIS 510 9
    BI_CONT 703 10
    QIE 200 5
    ST-A/PI 01K_SCM500 0
    and Live cache 7.4.02.29 from to 7.7.03.23
    We facing following issue during APO operation in live cache.
    Error details:
    "Characteristic combinations with liveCache anchor but without time series"
    "Key figure description for key figure YKFRFCFGD does not exist in liveCache"
    "There is an inconsisteny between the key figure descriptions in liveCache and in the database. The key figure description of key figure YKFRFCFGD exists in the database but not in liveCache."
    Kindly help me out on this.

    Please execute Live cache consistecny check:
    for Planning area , check all the option.
    /SAPAPO/TS_LCM_CONS_CHECK
    MPOS:
    /SAPAPO/TS_PSTRU_CONS_CHECK            
    Manish

  • Description of key figure is blank in English

    In our project a Custom  key figure is created in spanish language and description also in spanish.
    Version: BW 3.1
    When I have logged in to spanish language and checked the report in Bex ,description of key figure is available.
    But when I log in to english environment the description in bex rport of key figure is showing blank
    In rsa1 in both spanish and  english environments key figure description is okay and correctly displaying.
    Could you please throw some light in it so that I can solve the error
    regards,
    Harun

    Hi Haroon,
    Please check this link.
    Problem with Description Visibility
    Ash.

  • Dynamic Description for Key figure values

    Hi Experts,
    I got a requirement for change the description in  query analyzer.
                  Month    200901                                         200902                            200903
                     qty        value   Past PRICE                qty    value    future price  qty    value    future price
    Material      10         50          5                              7       70           10          7       77           11        
    My requirement is price heading  we need to show current date to previous months header is Past price  and current date to future months we need to Future price.
    Already I tried with two restricted key figures with current montthless than one key figure and currentmonthgreater than one keyfigure. When I using in query both key figure displayed in both sides.
    I want to show past price heading for Less than current month  and future price heading for greater than current month.
    Please let me know any possibilities to show the description dynamically.
    Thanks,
    Chandra

    Hi,
    Here I'm giving sample code this will give the Date and Date-1 and Date-2 based on your Input date ZCDAY.Create 'ZT_DAY' 'ZT_DAY1'  and  'ZT_DAY2'  Text varaibles and use the code.
    In the same way change the code for your requirement.
    TO get the Date (TEXT VAR) based on ZCDAY Input variable***********
        WHEN 'ZT_DAY' .
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZCDAY'.
            IF sy-subrc = 0.
              CLEAR: l_s_range.
              l_s_range-low+0(2) = loc_var_range-low+6(2).
              l_s_range-low+2(1) = '.'.
              l_s_range-low+3(2) = loc_var_range-low+4(2).
              l_s_range-low+5(1) ='.'.
              l_s_range-low+6(4) = loc_var_range-low+0(4).
              l_s_range-sign = 'I'.
              l_s_range-opt = 'EQ'.
              APPEND l_s_range TO e_t_range.
            ENDIF.
          ENDLOOP.
    TO get the Date-1(TEXT VAR) based on ZCDAY Input variable***********
        WHEN 'ZT_DAY1' .
        DATA: ZT_DT1 TYPE SY-DATUM,
              ZT_DT2 TYPE SY-DATUM,
              ZT_SDT TYPE SY-DATUM,
              ZT_YR(4) TYPE N,
              ZT_DY(2) TYPE N,
              ZT_MT(2) TYPE N,
              ZE_TT(2) TYPE N.
              ZT_SDT = SY-DATUM.
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZCDAY'.
            IF sy-subrc = 0.
              CLEAR: l_s_range.
              ZT_DY = loc_var_range-low+6(2).
              ZT_MT = loc_var_range-low+4(2).
              ZT_YR = loc_var_range-low+0(4).
          CONCATENATE ZT_YR ZT_MT ZT_DY INTO ZT_DT1.  "YYYYMMDD
          CALL FUNCTION 'DATE_CREATE_2'
            EXPORTING
             i_datum_ein                   = ZT_DT1
             I_KZ_INCL_AUS                 = '1'
             I_KZ_INCL_EIN                 = '0'
             I_KZ_ULT_AUS                  = 'X'
             I_KZ_ULT_EIN                  = 'X'
             I_STGMETH                     = '0'
             I_SZBMETH                     = '0'
             I_TAGE                        =  0
           IMPORTING
             E_DATUM_AUS                   = ZT_DT2.
              l_s_range-low+0(2) = ZT_DT2+6(2).
              l_s_range-low+2(1) = '.'.
              l_s_range-low+3(2) = ZT_DT2+4(2).
              l_s_range-low+5(1) ='.'.
              l_s_range-low+6(4) = ZT_DT2+0(4).
              l_s_range-sign = 'I'.
              l_s_range-opt = 'EQ'.
              APPEND l_s_range TO e_t_range.
            ENDIF.
          ENDLOOP.
    ***TO get the Date-2 based on ZCDAY Input variable***********
        WHEN 'ZT_DAY2' .
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZCDAY'.
            IF sy-subrc = 0.
              CLEAR: l_s_range.
              ZT_DY = loc_var_range-low+6(2).
              ZT_MT = loc_var_range-low+4(2).
              ZT_YR = loc_var_range-low+0(4).
          CONCATENATE ZT_YR ZT_MT ZT_DY INTO ZT_DT1.  "YYYYMMDD
          CALL FUNCTION 'DATE_CREATE_2'
            EXPORTING
             i_datum_ein                   = ZT_DT1
             I_KZ_INCL_AUS                 = '2'
             I_KZ_INCL_EIN                 = '0'
             I_KZ_ULT_AUS                  = 'X'
             I_KZ_ULT_EIN                  = 'X'
             I_STGMETH                     = '0'
             I_SZBMETH                     = '0'
             I_TAGE                        =  0
           IMPORTING
             E_DATUM_AUS                   = ZT_DT2.
              l_s_range-low+0(2) = ZT_DT2+6(2).
              l_s_range-low+2(1) = '.'.
              l_s_range-low+3(2) = ZT_DT2+4(2).
              l_s_range-low+5(1) ='.'.
              l_s_range-low+6(4) = ZT_DT2+0(4).
              l_s_range-sign = 'I'.
              l_s_range-opt = 'EQ'.
              APPEND l_s_range TO e_t_range.
            ENDIF.
          ENDLOOP.
    Thanks
    Reddy

  • Difference in key figures while creating queries based on infosets and MP?

    Hi all,
    I have created a multi provider using 4 ods. and my keyfigures looks like
    Material    cost        tax amount
    mdb1001  14.58     219.18
    and i have created an infoset using the same 4 ods and my keyfigures looks different like
    Material      cost      tax amount
    mdb1001  21,698       1,433.42
    And i have created the query with the same options. But the key figure values are different why is that so ?
    Can anyone help me on this!!!
    thanxs
    haritha

    hi,
    check your created infoset on the same ods used in multiprovider for reporting.
    are you doing any delta loading to the ods check that also.
    hope this help you
    regards
    harikrishna N

  • Want to edit the name of the std. key figure

    Dear All,
    I want to edit the name of the key figure from the standard s001 info structure. I aslo want to add new key figure as High edu cess in my MCTA. I am working in mfg. co. where as we are compairing our sales register with mcta report but in mcta report high edu cess is not coming.
    while compairing with sales register the name of the filed is not matching with mcta key figure for example
    1) billing doc. ps5 = tax amt.
    2) Net inv. SIS2 = BED (excise duty)
    now I want to edit the name of net inv. SIS2 as excise duty (bed charges).
    I need help in this case.
    Nikhil

    Hi,
    If you want change the name of key figures, see this answer i thread :
    how to change the description
    You can enter element data to modify the description.
    Warning : if you change this element data, all program displays the new description.
    Another solution : use this extension MCR00002 to modify description for key figures.
    Or create flexible analysis (Tcode MCSA) in ref to S001 (evaluation structure). In this analysis, you can add new key figures by using formula (in ref to std key figures like Bill. doc: PS 5 = S001-UMKZWI5).
    Regards,
    Lionel

  • How to create a document on a characteristic and key figure combination?

    Hello,
    I will need to create for my customer a document on a characteristic and key figure combination. I don't know yet which BW objects will be concerned, but I'm trying to understand how it works.
    1) I call the document screen in RSA1.
    2) I select InfoProvider data.
    3) I click on Create, enter a name and a description and go to the next register (Log.DOc.Properties).
    Question: What do I need to select here?
    According to SAP Help, the following has to be maintained:
    InfoProvider: How can I get my cube diplayed in the list?
    Query: Same question. But is it necessary to select a query?
    Key Figure: OK
    All characteristics for which the Characteristic is Document Property indicator is set: OK
    Hide Name: OK
    Thanks in advance for you help, Nathalie

    There's a link on the main support.mozilla.org page under "Customizing Firefox", to this article: [[How do I customize the toolbars?]] in case it helps you or anyone else finding this topic. It has a section on adding a new toolbar to Firefox.
    I can't help you on creating your own button, textfield and a combo box for the new toolbar but I see you (Dinesh) asked this question on Jan 5, here:
    http://groups.google.com/group/mozilla-labs-jetpack/browse_thread/thread/0d877e5afcbfe745# ''how to create a toolbar using add on sdk''

  • Key figure display in planning book with respect to Time bucket profile

    Hi,
    I am loading a key figure to planning area from the info cube for the current month. When I review the key figure in planning book with monthly time bucket profile it shows 85 for the current month. In the same planning book with weekly bucket profile, it shows 55 from the current week and future weeks and the remaining 30 goes into the past weeks of the current month.
    How to make the total quantity 85 to show in the current and future weeks only.
    thanks and regards
    Murugesan

    Hi Murugesan,
    Within the Planning Area, the data is stored at the lowest level granularity that you maintain in storage bucket profile. Then during display, system will decide what data to show depending on what kind of time bucket profile you use in the planning view, and the time based disaggregation that you maintain for Key Figure.
    In this below case, what time characteristic do you have in cube? Is it date, week or month?
    If it's date, check how much KF data is maintained on the dates which belong to week which has days both in this month/last month e.g. if I talk about Dec 2011, how much data is stored 1,2,3 & 4 th of Dec, 2011.
    This data would appear in Dec in monthly view, but in week, it would appear in the week starting 28th November.
    If data is maintained in cube in weeks, then you need to calculate how time based disaggregation would show it to you in months.
    If it's months, then you would need to find out how much data would go to the days in the past week of the month.
    The time based disaggregation may be causing you some issues, but in that case, I would not expect 30 out of 85 to go in the past week, unless you have data in cube in days.
    Data shown in weekly view for week starting 28th Nov should ideally be a small proportion of 85, unless you are using a time stream/fiscal year variant, due to which most of December is in holidays.  The only other exception I can think of is that you have data in teh days mentioned above.
    It would be best to help the business understand this disaggregation logic, rather than thinking of manipulating the data to shift to a later week.
    If this logic doesn't explain your situation, then please provide the date/week/month at which you have data in cube, and what quantity.
    Thanks - Pawan

  • Currency Translation for Calculated Key figures

    Hello Friends I want to use the Currency Translation for Calculated Key figures.
    But when I go to Query and go to conversion tab it is always greyed out. Does that mean we can set the fixed conversion type for calculated key figures. like ZSAD Total debit - credit -flow value.
    What is the way to do fixed currency translation in query for calculated key figures.
    All the below is done now just want to specify this in query but I can'nt since it is greyed out.
    All the below is done
    I have created a Currency Translation Type " FiscperConversion" "ZVHGR" now this has Exchange Rate Type from Variable "ZVARN" (Which is a variable single value manual input on 0RTYPE Infoobject for exchange rate.)
    2. Now Currency Tab: Target Currency is selected from Variable placed in the Report. ZRPVAR.
    3. Now the Variable Time Reference is used. Standard Infoobject 0FISCPER
    which is beginning of period.

    Hi soniya
    Your calculated KF is result of some calculation ...so system will not allow u to do any translation on it...to get CT on CKF you should do it on base key figure...still if you wish to do then you can create a formula variable having processing type a customer exit...write code in cmod to rad exchange rate and multiply ur CKF by this formula variable....
    Thanks
    Tripple k

  • Copying Key Figure

    I have created an agg. level on a plan cube to input Planned Hours at a cost center level (Employee Excluded from Agg Level).
    I then want to assign these planned hours to EVERY employee within that cost center. I currently have Master Cost Center as an attribute of 0EMPLOYEE, and I have created a characteristic relationship on 0EMPLOYEE to Cost Center. I am trying to use a copy function on a new Agg. level that includes employee, but have not been successful.
    I am able to successfully perform the copy function if I specify exactly which employee I want to copy to, but how can I copy this key figure to ALL employees within this cost center?
    Ex: Cube contains the following:
    Cost Center   Plan Hour
    0000006405   155       
    I want top copy the value 155 to ALL empoyees who are contained within the employee attribute cost center 6405.
    Emp:  Emp_CC     Cost Center   Plan Hour
    123     6405           6405            155
    145     6405           6405            155  
    156     6405           6405            155
    In the copy function, I am using # (not assigned) as the from value. This works if I input a specific employee as the to value. I have attempted to use ># as the "to" value in the copy function, and that produces the error "cannot generate combinations in step 00."

    Definitely on the right track. Can you please be more specific?
    THe FOREACH loop is not returning any values for employee. In debug, it looksl ike this is trying to loop all entries of 0EMPLOYEE that already exist in the cube. Initially there won't be any employees in the cube. I am wanting to read the MD table of 0EMPLOYEE.
    Here is what I have so far:
    DATA ZEMP TYPE 0EMPLOYEE.
    DATA CC TYPE 0MAST_CCTR.    <= This is the CC in the cube
    DATA EMP_CC TYPE 0MAST_CCTR.   <= This is the 0EMPLOYEE attribute Cost Center
    BREAK-POINT.
    CC = OBJV().
    FOREACH ZEMP.   <= This foreach has no entries
    EMP_CC = ATRV (0MAST_CCTR, ZEMP).    <= Therefore this EMP_CC is blank
    IF EMP_CC = CC.
    {WCCMTRGD, ZEMP} = {WCCMTRGD, #}.
    {WPLGLPRC, ZEMP} = {WPLGLPRC, #}.
    ENDIF.
    ENDFOR.
    Any additional info would be greatly appreciates.
    Thanks!

  • Filtering a Query result for a specific value of a key figure

    Hi folks,
    I want to filter a query for a specific value of a key figure. The report should display all customer who has an account balance greater than EUR 500'000.
    Can I only implement this kind of filter via a condition in Query-Designer? If I run that query on an InfoCube with non-cumulative key figures over all our customers (> 400'000) I have problems with the consumption of the memory. If I restrict the amount of the customers to 50'000 - 60'000 then it works. It seems that the query reads all customer records in an internal table before applying the condition.
    Is there another way to deal with? Any help appreciated.
    Kind regards
    Hansjörg Luzi
    Graubündner Kantonalbank
    CH-7002 Chur

    You could try to implement an alternative solution: define a new Characteristc with discrete values (in the following example I suppose to have intervals of 10)
    KF -> CHAR
    115 -> 110 (110 <= KF < 120)
      5 ->   0 (  0 <= KF <  10)
    83 ->  80 ( 80 <= KF <  90)
    Then you can use these dicrete values to filter ...
    I know that it's not so "flexible" (discetization must be predefined), but query response time is quicker and you can use Aggregates ...
    Hope it helps
    GFV

  • Max number of key figures

    In BI 2004s 7.0, how many key figures or the maximum number of key figures can a query have in the Column area that would not impede the performance of running the query? This would include key figures that use User Exit code for variables, RKFs, and CKFs.

    I can't imagine a requirement that would have 175 key figures in a query. What would be the requirement?
    It would be a big burden to maintain, support it, and change control. One of the tips to improving query performance is to break up the query with this number of key figures into smaller queries and make use of RRI. Workbooks are there for use with multiple worksheets or 1 worksheet with multiple grids. How would you improve query performance with this kind of query.
    The key figures are created to be able to derive other key figures based on the RKFs that make use of the exit code that determines the dates from what the user enters. 
    Are you saying that a Business Analyst would use 175 key figures to do the analysis at a time? I have seen the most is 12 - 13 key figures that are not hidden and the 10 others are hidden because they are use for derivation - a total of 23 key figures in a query. 
    "Insecured people are full of themselves. Nobody wants to be a second hand smoker or a job from you. Move on and stop calling me"

  • Virtual Key Figure - Cumulation

    Hi all,
    I am trying to cumulate a virtual key figure for all fiscal periods one by one but I want to sort the Fiscal periods in the badi RSR_OLAP_BADI as if the fiscal periods are not sorted then the cumulation does not happen correctly.Could anybody please guide how to access the entire data set of the query in the badi COMPUTE method...What I am getting is only a record by record access in the method.
    Rgds
    Amit

    While Generating the Query it goes to the Break Point , but not where key figure is getting calculated.
    But after that if i execute Query still its teh same

  • Virtual Key Figures using RSR_OLAP_BADI

    Hi gurus,
    We have been using the RSR_OLAP_BADI to generate some virtual key figures for our queries, now we have a problem creating a virtual key figure...
    We have got 4 key figures in the query, 1 is a normal KF and the last 3 are virtuals, one of the virtuals uses the normal KF and splits it between the total of the same KF. The point here is that the calculations are not coming ok because the COMPUTE method does not bring the information summarized as the KF is defined, because in the same structure of the query ther are some formulas that have the same KF restricted to another level of information.
    If we remove from the query this formulas, the virtual KF works perfect because the normal KF is delivering the information summarized.
    The question is... is it normal that this happened or there may be something wrong in our definition?
    Thanks and best regards to all!!!

    Hi,
    You can get number of threads in SDN search.
    Check in the following blog
    IF_EX_RSR_OLAP_BADI~DEFINE
    https://forums.sdn.sap.com/click.jspa?searchID=23657256&messageID=6776739
    https://forums.sdn.sap.com/click.jspa?searchID=23657256&messageID=6788064
    http://sapbikk.blogspot.com/2008/05/writing-virtual-characteristics-or-key.html
    Thanks
    Reddy
    Edited by: Surendra Reddy on Mar 18, 2009 4:29 AM

Maybe you are looking for

  • Printers not showing up in appliance webb interface

    Hi all, printer added in imanager, working fine to add to printer and printing but not showing up in appliance printer page so I'm unable to set mobile print settigns. Any ideas? /Lennart

  • Enterprise Services Repository (ESR) available in Trial?

    Does anyone know if the Enteprise Services Repository (ESR) is included in the Full Java Edition-Trial and/or Full ABAP Edition-Trial? I want to try out the "outside in" approach for service-enabling newly build applications that starts by creating t

  • Landscape Paper Layout - Won't Display on the Web

    I am trying to display a report (paper layout only) on the web using desformat=pdf. To test if the report could be viewed via the web, I created a simple version and could view it in my browser w/ no problem; however, after adding some columns and ma

  • Punch out product category question

    Hi all: We are using a punchout from Gateway. The OCI sent from the vendor does not have a product category (see below). "NEW_ITEM-MATGROUP[1]" value=""> We have 2 product categories assigned to the user in the Ext Attributes. While creating the SC u

  • Encore 2.0 Changing Window Animation settings

    It seems that Encore 2.0 wants to change my window animation settings upon start-up, and I also have this issue with Audition 2.0 upon closing. Oddly enough Premiere Pro 2.0 does not have this issue. I wonder if there's something up with the ASIO dri