User entry for Scaling factor

Hi All,
We have queries in which a scaling factor of 1 Crore is applied. Query is developed in 7.0 and front end used for analysis is 3.x.
Is there any way to make the scaling factor a user entry field..like a variable entry ?
Please let me know if you have any pointers.
Thanks in Advance,
Amrita

Hi,
I am not sure if you can make it a User Entry Variable or not.
Yes, the user can set the scaling factor. He needs to select the Key figure where he wants the Scaling Factor.
For 3.x front-end
Rt click on Key Figure --> Enhanced Menu --> Properties.
here, he will find the scaling factor.
For 7.0 front-end
Rt click on Key Figure --> Properties --> Data Cell --> Number Format.
here, he will find the scaling factor.
Hope this solves your problem.

Similar Messages

  • Single user entry for two chracteristics

    Hi,
           I am using two characteristics for unit in my query ( 0UNIT and 0SKUNIT ), and I need to get user input for these units. The problem is, I am supposed to have only one user entry variable which should populate both the units.
    I am not able to use the same variable for both the units. Can someone please suggest a solution to do this?

    BEx : Characteristic Variable with Replacement Path
    check this:
    Re: Replacement Path Variable with Another Variable
    Edited by: Raj Coppar on Aug 11, 2008 10:02 AM

  • Validation of users entries for variables in customer exit

    Hi,
    I like to validate the user's entries a queries variables popup and open the variables popup once more if there are unwanted entries. I think I have to raise an exception in the customer exit for reporting, but corresponding function exit does not provide an exception. Can someone provide me a solution? Is there a solution without modifying the function module? (EXIT_SAPLRRS0_001)
    Kind regards,
    Simon

    Hello,
    you can take help of foll code structure to call an exception in the screen.
    IF i_step = 3.
    LOOP at i_t_var_range INTO l_s_var where vnam = 'needed_variable_name'.
    if needed_variable_name-low NE 'ABC'.
    CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
    EXPORTING
    I_CLASS = 'RSBBS'
    I_TYPE = 'E'
    I_NUMBER = '000'
    I_MSGV1 = 'Please enter Correct values'.
    raise again.
    ENDIF.
    ENDLOOP.
    Hope this helps.
    Also in case of any mulitple condtions you can play around the code.
    Regards,
    Shashank

  • User Entry for BEx query

    Hi Gurus,
    When I run a standard Business Content query, I could see a dialog box popping up for the user to enter the values. This looks like a mandatory field. How do I modify this? Is there a code which I could do the modification, as to me it seems to be an SAP exit variable?
    Any help would be hugely appreciated.

    Hi,
    When we use variables in a query a pop-up appears at runtime. If we want to modify it, ie., if you want to delete this
    see for which field it's asking to enter the value, in Query -> Global definition -> go to that field, expand it, you can find a variable on that field, you can delete that variable or go to the left side panel and double click on the variable under the same field and modify it, under DETAILS change 'Variable Entery is' to optional from Mandatory.
    To create a variable right click on the field and create a 'New Variable'

  • User entry in a query

    Hi All,
    I have a  query wherein I want to have a user entry but do not want the query result to be affected by it.
    The details of the query are such that in this query I am calculating Sales actuals by posting period (selecting constant months to make a quarter) and sales commitment  by a normal characteristic Fiscal quarter.
    Is it possible that I have a user entry for quarter and have that quarter (selected by the user) displayed in the query but at the same time display the entire data of the query?
    Please advise.
    Thanks and warm regards,
    Sharmishtha

    Hi Anil,
    In rows I have CGL Branch (user netry/multiple values), organizational division(zdivision/user entry) and sales district. In th columns I have Previous to previous year's sales(SALDR NOTECASH restricted with fiscal year/ user entry variable with offset -2) similarly I have previous year's sales. Then I have current year's Q4 sales. For this I have restricted the same key figure with fiscal year/user entry and posting period=jan,feb,mar). This is because ZBDMIS1 does not have ZFIQUART1(fiscal quarter). Then similarly I have to calculate for all the quarters of the current year. Alongside I also have to calculate the commitments for all the quarters. For this I created a cube in which I included ZFIQUART1 (and loaded thru flat file), as customer will give data in quarter. Finally I made query on the multiprovider. Now, in the query I created a new selection for commitment of Q1 and restricted Sales Commitment Value with fiscal quarter = quarter1 and similarly for all quarters.
    But the values of the Sales Commitment val is not coming at all.
    Also I wanted to put quarter as user entry. (just as a display of the selected quarter in columns, we don't want it to filter the data)
    Thanks and warm regards,
    Sharmishtha

  • Variable entry for replacement path

    Hi Guys,
    This is my scenario. I have query A which uses a set of results from query B via replacement path. I have a mandatory variable entry for Query A which I have used also for query B. I was under the impression that when I made a user entry for the variable for query A, that value would be copied over to query B and perform the filtering in Query B too. Is this not the case.
    If I need to perform this operation, i.e use the value that I enter for variable entry in Query A in Query B, how can I do that?
    Thanks,
    Doniv

    Hello Doniv,
    we are using this scenario in our queries too, if we define the same variable in the query A and B,
    this value is used for the selection in the query B.
    Did you tried to search in OSS? (this could be the SAP error)
    Regards,
    Kirill

  • How to remove scaling factor

    Hi,
    On our BCS transactional cube we have 3 kf -
    period value in group currency,  period value in local currency and period value in transaction currency. while I was exploring the measures (display data in the cube), I realized that the numbers were divided by 100. I looked for scaling factor but haven't found so far.
    What can be the reason?
    Thank you,
    Hadar

    Hi,
    If you are working on BI then click on the field which you want to change the scaling factor then in the Right Hand side there is a Properties dialogue box there you have to select the Display Tab then click on Scaling Factor option and can set your required Scaling factor.
    Ex: 10, 100, 1000, 10000 etc.,
    Have a nice time
    Phani.

  • Variable entry for offset

    Hi All,
    I was wondering if there was a way in which we can accept a user entry for the offset of a variable. I mean, in a report, I need to see all the records with the creation date of the last 'X' days, where 'X' can be entered by the user.
    Thanks,
    Doniv

    Hi Doniv,
      Lets take the case,
    ZINPDATE - User Entry Variable
    ZREQDATE - Customer Exit Variable
    CASE i_vnam. "variable name
    WHEN 'ZREQDATE'. "Customer Exit Date Variable
    IF I_STEP = 2.
          LOOP AT i_t_var_range INTO loc_var_range
            WHERE vnam = 'ZINPDATE'.
    CLEAR l_s_range.
    l_s_range-low = sy-datum - loc_var_range-low.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'GT'.
    APPEND l_s_range TO e_t_range.
      ENDLOOP.
    ENDIF.
    ENDCASE.
    Assign Points,
    Arun

  • User exit for va01/va02 for std program

    Hi ,
    how are u all....
    here is my problem...
    i created a customized screen for va01.
    this screen gets called after user saves the order.
    in this screen i provided 4 options .
    1. accept the order
    2 change the order
    3.reject the order
    4 release unconfirmed.
    i am calling this screen in user exit userexit_refresh_document.
    before this am capturing the order number .
    once user clicks on first radion button i.e on accept.
    then i am passing the order number and removing the block using BAPI_salesorder_change.
    but here bapi is passing the error message as plese enter the order number ....
    my doubt is the userexit whr am calling the screen is correct ?
    can we do the same using BDC ..?
    if anybody working actions on user entry for va01 and va02..
    please let me know whr and how u r writing the code... sooon
    thx in advance...
    regards
    sanjay

    what are u doing ? , u cannt call BAPI in the same user exit.
    if user accepts the order --->then u have to unblock the order ?
    then u have to activate Credit Control User exits ->SPRO->SD->System Modifications>Credit Control User exits.
    regards
    Peram

  • Scaling factors for queries with cell references

    Hello Experts,
    We have this issue, we have queries which have 2 global structures with the cell references for few of the elements of rows and columns structure.
    we need the scaling factors and currencies of the query which are defined in the rows and columns structure are to be displayed as separate column but with in the cells.
    We have checked for the queries with the 2 structures without cell references are displayed as we need. But for the queries with the cell references on the 2 structures are not displaying the scaling factors as we need in separatly.
    how can we make the query to display the scaling factors along with currencies to be in separate column.
    we have entry selection as currency where we have only one currency can be entered so the we do not have the problem of multiple currencies.
    please find the screen shot how we need the scaling factors to be displayed for the queries with cell references.
    We have scaling factors enabled as 1000 for KFs and for % selections we have scaling factors as 1.
    Thanks,
    Santhosh

    Hi
    If 'Cell Editor' is been used then that query must have the structure in it. You have to select that 'structure' object in your 'VC Table'.
    If you select that then you will get the required result in the output. This structure will be the structure where 'cell reference' is used in BI query, You have to select that structures name.
    Regards
    Sandeep

  • AP Aging report - key date for user entry

    Hi All,
    We have a requirement to calculate aging buckets like 0-30,31-60,61-90...etc.
    I know the key date for this report is created on net due date in SAP standard report.
    In standard SAP report , key date is always a system date(SY-DATUM).
    What we need for this report is , we need to get all the invoices which are outstanding as of that date(the date which user enters).
    If user enters today's date(08/28/07) , he should get all the invoices outstanding till that date in aging buckets and if user enters some date in the past like 07/26/07, he should get all the invoices outstanding as of that date.
    Can  someone Pls tell me if aging buckets are calculated based on a user entry ?
    Regards,
    Kumar

    Hi Voodi,
    Aging in the standard report is being calculated like below...
    1.For open items
    Posting date<key date
    Item status = O
    2.Posting date < keydate and clearing date > key date and net due date with offsets on keydate ( key date + 1 - keydate+30 --- for 1-30 days) like wise for all aging buckets.
    in this scenarion , key date is always system date ie today's date.
    But user wants to get all the invoices based on his user entry...
    is this possible with the same standard key date variable or do we need implement any other logic???
    Regards,
    Kumar

  • Where can I find a user-guide for the awfull Text-Editor used to enter/edit these forums entries?

    I am desesperate to understand how quite basic functions (just as one of many examples: how can I paste text, that I have formatted in MS Word and want to paste into a Forum Post-Entry?) can be done with the primitive and awful Text Editor used to enter/edit Forum Entries. Notice, that like many other Adobe users, I am not familiar at all with HTML and it is therefore a description of the badly named "Full Editor" that I am looking for.
    Where can I find a User-Guide for this Text Editor?
    My recommendation to Adobe: exercise enough  brute pressure on the developers of this primitive Text Editor to force them to provide something more reasonable, more powerful and more intuitive.

    Thank You Jochem
    I was trying to understand how I could do things as simple as inserting text that I had previously copied. Since there are neither command menüs nor buttons for the Insert of previously copied text, I was trying a mouse right click.....and was being offered in the context menu the choice between "Insert Link", "Insert Image", "Alignement", and "Insert Table"....... but no possibility of a plain insert of previously copied text.
    Now, I realize, that Clearstream supports at least the keyword shortcut of "Ctrl V" ........that I am not using in any other software (I never use any keyboard shortcuts).
    Since Clearstream does not support reasonable choices in the contextual menus, I will need to memorize the most important keyword shortcuts.
    By the way: I detected now, that the "Ctrl V" keyboard shortcut allows me to insert formatted text.
    Even, if I will now begin to be able to use reasonably Clearstream, I am quite surprised to see that such a software provides neither reasonable Contextual Menus, nor a User Guide, nor........
    Thank you again Jochem for your patience with me.

  • Current date as deafult for Calender Day and user entry

    Hello All,
    There is a select option for Calender Day for a BW query.
    This Calender Day should have a default as Current Date and User entry is also possible.
    I have used a Customer exit and written the following code under i_step = 1
    data: v_currdt like sy-datum.
    clear: v_currdt, vfl_range.
             if i_step = 1.
              vfl_range-sign = 'I'.
              vfl_range-opt = 'EQ'.
              v_currdt = sy-datum.
              vfl_range-low = v_currdt.
              append vfl_range to e_t_range.
             endif.
    Please inform if this code is incorrect, because I am not able to see the date at all.
    Cheers,
    KP

    Hi
    Check with this code!
    Implemented for the same function as you require.-
    if i_step = 1.
      case i_vname.
        WHEN 'ZZZZZZ'.
          IF i_step = 1.
            REFRESH e_t_range.
            CLEAR l_s_range.
            l_date1 = sy-datum.
            L_S_RANGE-LOW = l_date1.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT  = 'EQ'.
            APPEND L_S_RANGE  TO E_T_RANGE.
          endif.
      endcase.
    endif.
    Regards
    M.A

  • How to Enable the LOV to query for partial user entries in af:query in an ADF search form

    Hi guys,
    I have faced one issue in creating a search form in ADF, in that I have used af:query and table region. and I have attached an lov vo to the base vo for the list of values and given UI hint as Input values with List of values. Now the issue is that I have given auto submit property as true so when I give some value suppose "Jan-14" and tab out it gives me all the correct results. but if I give like "Jan%" and then tab out then it does not give me any value. Could you kindly help me with some solution. I am using Jdev 11.1.1.6.0.
    Thanks,
    Tanmoy

    To enable the LOV to query for partial user entries, we can trap the 'LaunchPopupListener' event and add custom code there. Within the af:query component, just wondering how can we set property the 'LaunchPopupListener' for the search criteria ?

  • Changing scaling factor for each cell in Bex Analyzer

    Hi,
    We have a query with 2 structure (1 structure in rows, 1 in columns). We execute the query with Bex Analyzer in Excel.
    We would like to change the scaling factor for each cell. If we use the function 'Properties' for the active cell (context menu), we can change the scaling factor only for one cell.
    Is it possible to change it for the complete table?
    We use BI 7.0, patch 14.
    Thanks,
    Peter
    Edited by: Péter Egyedi on Jan 25, 2008 5:18 PM

    Have you got the solution for this problem?

Maybe you are looking for

  • How to refresh the container

    Hi, I have developed a user interface. A JScrollPane is a part of it and the JSP has a JTree in it. During the run time I am trying to remove the JSP from the container by this method: jsp.getViewport().remove(myTree); //Container content; content.re

  • Execute procedure from htp.form

    Hi How do i execute a procedure with the parameter value passed in from a form?? Please help.. thanks! htp.formOpen(owa_util.get_owa_service_path||'procedure_name'); htp.formText('p_username', 10, 10); htp.formSubmit; htp.formClose;

  • Customizing Reader 10.1 install

    I recently downloaded the Reader 10.1 update.  I use the Adobe X Customization tool to customize the initial install package for 10.01 to remove auto update, etc.  However, when I install the 10.1 update, it removes all my customizations!  How can I

  • Hello- please give me answer

    Can I enter photo from mobile to iPad ?

  • Import an excel file into a table

    Anybody can help me on importing a big text file (i.e. an excel file) into a table without using SQL Loader? Thnx in advance