Value range for free characetstic

Hi All,
I need to restrict the free characterstics value range form 20...29 and 40...49 for document type charcaterstic in the work book i mean i need to exclude the 20..29 range and 40...49 range form the selections, but i couldn't see the 20 and 49 in the slections i can see only 21 to 29 i couldnt find 20.How to achieve this in the work book itself.
Any help in this regards.
will assign the points.
thnaks
sg

Hi SG-
  Lets see if this helps. In the query definition, from the context menu of doc type, choose RESTRICT. In the small window that opened, click on the box at the bottom left that has an arrow pointing to the right. In the subwindow that opens, see if you have the checkbox for Only Values in Infoprovider selected (tick mark). If yes, uncheck it and see if you can find the value 20 now. Let me know if it worked.
  What KJ said is true. But since you said that your superior was able to do so for the same infoobject I am assuming that the values are being filtered from master data table already. One other place you can check is in the infocube. Go to RSA1, doubleclick on the infocube, go to EXTRAS -> Structure specific infoobject properties -> see what is the selected value under the column F4 query. If it says Only Values in Infoprovider, then change it to Values in Master data table and activate the cube.
Assigning points is the way of saying thanks in SDN.
Message was edited by:
        Sudheer B

Similar Messages

  • Finding short text description of Fixed values for value range for domain

    Hi,
    When I got to Dictionary: Dispaly Domain and click on tab value range; I get the template showing Fix. Val and its associated short text.
    I want to fetch the short text for a particular fix. val for a domain.
    How can I do that ? What table can I use it ? Or do I need to use some function module ?
    Lets say I want to fetch the short text for a given Fix val. for domain VBELN.
    Please help me out.

    Hi,
    You can use Function Module 'FM_DOMAINVALUE_CHECK' to get the fixed values of any domain.
    Regards,
    Atanu

  • Value range for domain

    Is it possible to enter value range more than 10 characters long ??

    HI Michal
    This seems to be a restriction as the DOMAIN for storing the value range is defined of length 10 Chars.
    Kind Regards
    Eswar

  • Value Range for numeric field

    I'm fairly new to LiveCycle, I've used it to make forms for a bit, but am now hoping to make the forms much more advanced.  I'd like to know the best way to set a value range/parameter for a numeric field? I want the filler to be restricted to a range of $300 to $10,000 and if they try to enter below or above that value they would receive an error message.  I've looked at all the beginner material and am trying to get introduced to FormCalc and/or JavaScript but not fully comprehending the best/complete method (any guidance on where to start is also greatly appreciated).
    Thanks, Ed

    if (((300 < this.rawValue) && (this.rawValue < 10000)) || (this.rawValue == null)){
       true
    } else {
    this.rawValue = null;
    app.alert("Please enter a value between 300 and 10.000")
    I changed some things though... ^^
    If you want 300 / 10 000 to be true too then set <= instead of <.
    You can also change the app.alert message as you want.
    If you don't add the null in the beginning you might get an error message if it's on the validate event. If it's in the exit there shouldn't be a problem...
    Though this is just a little different from Paul's original solution.

  • Problem when define Value range for data element

    Dear
    When I define a new data element in ABAP Dictionary, for example, ZDATA_ELEMENT_TEST.
    I use domain ZDOMAIN_TEST.
    (Data type is DEC, the length is 10, and decimals is 2 with sign.)
    Now, I want to restrict that, user can ONLY input the value from 10 to 100.
    From ABAP course and the Internet, I switch to "Value Range" tab, and define 10 for Lower Limit, 100 for Upper Limit in Intervals section.
    And write the simple program.
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST.
    WRITE: test.
    And run it.
    Line: -
    But, there is a problem.
    When I input 200 for test, the program still run and display 200 to screen without any error report or notification. The ABAP runtime system doesn't check the input value.
    I want to config for the domain that can satisfies, if the user input the wrong value (e.g: 200 in the previous case), the program will auto raise the error report, or exception, or sth like that.
    Any help is welcome.

    Hi Hanni,
    Welcome to forum.
    Try to attach key word VALUE CHECK to your PARAMETER statement.
    I.e:
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST VALUE CHECK.
    Note: The addition VALUE CHECK cannot be used together with the additions AS CHECKBOX, RADIOBUTTON, or NO-DISPLAY.
    Regards,

  • UIAcceleration value range for x,y,z

    Most posts I've read say that UIAcceleration's x,y,z go from -1 to +1, but I get values of -1.04 to +1.04. As I'm trying to determine the 'exact' angle of rotation of the device, the extra 0.08 of play at the extremes is a problem.
    Is this just a bug in my phone or do all phones have this actual range?
    In my current calculations, I use asin(acceleration.x) which of course throws errors when acceleration.x > 1. One temporary solution has been to set any value > 1 equal to 1. That's a problem though because all any angle 86-90 degrees registers as 90 degrees.
    The other option was to simply normalize the values by dividing by 1.04. This works if all phones have an actual range of -1.04 to +1.04, but I don't know if that's true yet.
    Any help appreciated.
    Thanks,
    Anthony

    Thanks RayNewbie and mbessey.
    Here's my solution:
    // Here are values of interest
    #define PI 3.141592653589793
    #define kAccelerometerFrequency 30.0
    #define kBoundingBoxSize 125
    #define kBallRadius 10
    #define kDefaultCalibrationX 0
    #define kDefaultCalibrationY -45 // standard landscape gaming position
    #define kDefaultCalibrationZ 0
    #define kFilteringFactor 0.075
    // Apply a low pass filter to remove noise
    // Use mbessey's recommendation to normalize the acceleration values
    // as RayNewbie shows they are typically not == 1.
    double magnitude = Norm(acceleration.x,acceleration.y,acceleration.z);
    accelX = ((acceleration.x/magnitude) * kFilteringFactor) + (accelX * (1.0 - kFilteringFactor));
    accelY = ((acceleration.y/magnitude) * kFilteringFactor) + (accelY * (1.0 - kFilteringFactor));
    accelZ = ((acceleration.z/magnitude) * kFilteringFactor) + (accelZ * (1.0 - kFilteringFactor));
    // Calculate the angles at which the device is being held
    xRoll = atan2(accelY,-accelZ);
    yRoll = atan2(accelX,-accelZ);
    zRoll = atan2(accelX,-accelY);
    // Convert from radians to degrees and adjust to desired calibration angle
    xRoll = xRoll(360/(2PI)) - kDefaultCalibrationX;
    yRoll = yRoll(360/(2PI)) - kDefaultCalibrationY;
    zRoll = zRoll(360/(2PI)) - kDefaultCalibrationZ;
    Cheers,
    Anthony
    Message was edited by: Biosopher

  • RRI Problem: Transferring Value to a Value Range Global Filter

    Hi experts,
    I am facing a problem with the transfer of value during RRI jump. I have the following query definition:
    Sender Query: Customer ID, Billing Date, Valid From (<= replacement path "Billing Date"), Valid To (> replacement path "Billing Date")
    Receiver Query: Billing Date, Valid From (<= replacement path "Billing Date"), Valid To (> replacement path "Billing Date")
    The problem lies in Valid From and Valid To. In both queries, I have defined a filter replacement path variable with value range for these two characteristics:  Valid From (<= Billing Date), Valid To (> Billing Date). However, no values will be transferred to the Valid From and Valid To in receiver query and this triggers an uncaught exception during RRI call.
    Could anyone please shed some light in this issue?
    Thanks,
    Joon

    Hi Suman,
    yes, both queries are from the same InfoProvider. When I provide static single values for the From (<= 31.12.2010) and To (> 31.12.2010) dates in global filters of the receiver query, I get the correct result. If I instead select the Replacement Path variables I get exception.
    Regards,
    Joon

  • Value range of domain

    Hi Experts,
                       what is the importance of value range tab of domain?........if we enter any interval in value range for the domain and then we assgined that domain to a table field.Now can we only enter value into the field only satisfying the interval in value range of the domain?
    I have already assigned domain to a package and Now I want to change that package and request no.Is there any way out?

    Hi,
    A Domain defines a Value Range. The value range of a domain can be restricted by defining fixed values. If all the fields or components that refer to the domain should be checked against a certain table, this table can be defined as the value table of the domain. If you maintain only the interval values, then your values entered will be restricted in that Interval only.
    For Changing the package Assignment of the domain, go the Object Navigator (TX:SE80) and then navigate to the domain using the package. Select the Data Dictionary Objects like Domain and using the Context Menu of the mouse you can change the package assignment.
    For changing the transport request, you have to go to SE09 ( Transport Organizer Tool) and then delete the old task from it or you can create a new transport request and the change the task assignment of the existing ones to the new one.
    Hope this helps.
    Thanks,
    Samantak

  • Domains-Without Value range.

    HI All,
           My secnario is that  i have use few standard domains that do nat have any value range for that domain,
    so i requried for data type char 20
                                          numc 5
                                          numc 10.
    I need your valuable suggestions to this.
    regards,
    Swathi.K

    hi  swathi,
    goto se11.
    there select domain and press f4.
    now a pop-up window appears where u need to specify datatype and length  and press enter.
    now u can find standard domain elements for your particular datatype and length.
    give datatype: char
           length   : 20
    sample list of domains:
    ABI_DOCITM
    ABI_OBJCT
    ABLBELNR
    ABLLI
    ABSCHLGRP
    ACEPS_STATUS
    ACE_ARCH_PREP_STATUS
    ACE_CALC_VARIABLES
    ACE_GLSYMB
    ACE_SOP_STATUS
    ACTIO
    ACTIVITYID_BRO
    ADFDR_CHAR20
    ADFDR_DOCID
    ADPIC_DOM_PROCESS_CODE
    ADRESSE
    ADSPCIP_RANGE
    ADSPC_ANGNR
    ADSPC_SBNBR
    AFRUV
    AFW_TEXT20
    AII_NAME
    AIN_EPC_PREFIX
    AIN_SSCC
    AKB_TABSET_NAME

  • Restrict Characteristic on value range in Query Designer

    Hi,
    In 3.5, it was possible to restrict a filter in the query designer on a value range, even if the start- and end values of that range did not exist in the master data.
    In 2004s, it is possible to restrict single value filters to a non-existing masterdata value. However, for value ranges, this does not seem to be the case. Do you know any workaround for this?
    Regards,
    Daniel

    of course, BI 7.0 support value range for restrict.Please kindly release more information about your case .
    Value Range
    • Instead of selecting single values you can quickly gather multiple characteristic values using this next option. This choice provides the following additional options:
    1. Between
    2. Greater than or equal to
    3. Less than or equal to
    4. Greater than
    5. Less than
    And you can reference following URL on this topic
    http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/0a563fe09411d2acb90000e829fbfe/content.htm
    Edited by: Brian on Oct 22, 2008 3:08 PM

  • To give value ranges in web interface builder in a BPS application

    Hi all,
    I want to give value range for an info-object in web interface builder when selecting a value range variable , but the web application is displaying only the 'from' field and I am not able to get the place to give 'to' for a complete range.
    Is there any other solution apart from creating an exit variable that reads from two other variables for 'from' and 'to'.
    plz help.

    Hi Chauhan,
        If you wish your user to input different values, then you have to provide "n" variables in the layout and read them in the exit variable! This method of reading user input is not adviced! Nevertheless, if you try solution described for first case, potentially in the range there could be "posting level" value(s) that was not wished.
      If these values fall under some range, it is possible to display the layout filtered with these selections
       For this you could provide two variables in the BSP-Selection section and in the BPS layout you would use a variable to type exit to read in the low and high values (that the user has selectedin BSP Page). In this way you could filter the contents of the layout with the multiple values for the "Posting level".
    Thanks 
      VArun

  • ALV, domain and F4 value ranges.

    Hi all
    I'm having trouble with getting F4 value range help up and running on a cell in my ALV. The main reason for my problems is because I'm not using a DDIC structure, but one I defined locally. The structure's field is associated with a domain type defined in the DDIC and as such I'd like to pull the value range from there.
    Here's what more-or-less what I'm doing:
    - Create a local structure type corresponding to fields of a DDIC table.
    - Select from the table into the structure.
    - Load ALV with structure.
    Is there anyway to get the F4 help on a cell?
    Ps. ref-table and ref-field doesn't work.

    As I'm not at the office at the moment I can't test anything, so I'll give you a progress update tomorrow, but in the mean time:
    Anjali - I'll have a look at that link. I'm still fairly new to ABAP so I can't tell off hand if that's what I'm looking for, but I'll know for sure when I have a look at the demo applications.
    Vijay - I do have value ranges for the domain of the type used by my structure. I believe ref-table and ref-field isn't working because my internal table is of type local structure rather than DDIC table type.
    Sekhar - I did try setting F4AVAILABL to 'X', but all that does is display the 'value range button' (which you can click to get the same effect as pressing F4), without actualling doing anything else.
    Thanks for the help thus far.

  • Default value for variable are not within permitted value range (precalc)

    Hello BW community
    Issue:
    I have created a variable (Characteristic Value/ Manual input-default value) and use the precalculated value set (details-basic settings). In the further variable definition I could select the  precalculated value set in 'Default values', which I have defined beforehand in the broadcaster..
    The precalculated value set in the broadcaster settings is just based on a master data query on 0CUSTOMER.
    Error:
    The variable gets the error E991/R9E Errors: Default values for variable 'XXX' are not within permitted value range.
    The detail description of the error is: You defined default values for variable 'Sold-to party precalc value set for manuel input' that are not appropriate for the variable type; for example, a range is defined as a default value for a variable that only permits a single value.
    So please has someone had the same issue and found out how to solve it? It would be excelent to get good solution for this issue.
    Best regards and thanks
    Christian
    PS-1: System BW 701 / SAPKW70105
    PS-2 : there has been a SDN entry with the same topic but not resolved too.
    link: /thread/980839 [original link is broken]

    Hello,
    Thanks for your response.
    I should have mentioned that in my post. I tried this very first time. I thought that this is the place where you provide default value. But I got following exception at that time, so I thought, may be this is used for something else.
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error:
    oracle.jbo.NameClashException: JBO-25001: Object viewAllInd of type Control Binding Definition already exists.
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)Do I need handle something else when you put the default value?
    Thanks,
    Jai

  • Net value showing negative in excise billing for free goods items

    Dear All,
    Need value suggestions in business scenario.
    While issuing Free goods to customer in excise billing ,Net  value of ZTNN item showing negative
    Inserted R100 % condition type above Tax condtions.
    MRP is statistical and accessable value is calculated on MRP.
    How to  solve the above issue.
    Due to the Net value showing negative for Free of charge in excise billing,qty value  displaying twice the unit price value in printing
    Thanks & Regards
    H V Kumar.

    Hi
    It is depends on your pricing procedure how you defines.
    Kindly check once again in your pricing procedure.
    Test the cycle once again without entering the R100 condition type in sale order line item and check the next value.
    After enter the R100 condition type check the base value to calculate the Amount.

  • Variable for value range

    Hi
    I want to use a variable for giving a value range in a customer exit.
    My scenario is that i have to find the total of quantity for the previous fiscal year. i have declared a variable with the following parameters :
    Processing type : Customer exit
    variable represents: Interval
    variable is not ready for input.
    I have to pass the initial and the final fiscal periods. I have written the code for it as
            l_s_range-low  = l_frstyr.
            l_s_range-high = l_lstyr.
            l_s_range-opt = 'BT'.
    but when i execute the query i get an error saying "Variable Z_FP01_1 contains too many values".
    How can i solve this problem????
    Regards
    Sujai

    maybe l_s_range already has values for thah variable, or you are doing the addition of values several times because of you are not having in count the i_step variable.

Maybe you are looking for

  • Urgent to find report

    find the report for Employees who make taxable expense claims and non-taxable expense claims monthly, kindly just let me know

  • BPM Scenarios not working

    Hi All I have done a simple file_2_file and SOAP_RFC scenario.  Both of them are perfectly working fine.  Now I did a simple file_2_file scenario using BPM and this doesn't work.  When I go the transaction SXI_CACHE, it shows as "Cache contents are o

  • Why does working with Stamps cause Acrobat Pro XI to crash on close

    Although other people in my organization have been experiencing crashes several times a day with Acrobat Pro XI (usually from stamping PDFs and closing Acrobat), I've just started receiving crashes after working on custom Stamps. This hasn't happened

  • How to call ABAP in another client ?

    hi there, i have one abap in client 100. i want to call an abap, which should be executed in client 101 on the same system. how to handle this ? reg, martin

  • On-Line Games

    Every time I select an on-line game to play, i.e., daily crossword, the puzzle will not open. All I see is the leaderboard. Anyone else having these issues? New to Xfinity and must say not too impressed when it comes to this issue.