Find characteristic with fixed value at planning levels

Hi Experts,
I need to know which are the planning levels that contains a characteristics with a specific fixed value (ex: 0UVERSION = “220” )
Does anybody know how can I do it?
Thanks in advance

Hi,
Please create a query (tcode SQVI) on tables UPC_PLEVEL and UPC_OPTIOS. The join will be on field GUID. Select all the fields as available for display and selection. UPC_OPTIOS has the selection values maintained for the level. Please put in
UPC_OPTIOS-FIELDNAME  = 0UVERSION
UPC_OPTIOS-SIGN            = I
UPC_OPTIOS-LOW = 220
this will give you all the levels that have the said value
hope this was helpful
thanks

Similar Messages

  • How to read the 'Input help with fixed values' of domain .

    How to read the 'Input help with fixed values' of domain .
    The domain has a Value range i want to read those values .
    Are these values stored in any table ?
    Plz help me i need it ver badly...
    Thanks in Advance...

    Hi Chandra Shekhar,
    To read the 'Input help with fixed values' of domain , you can use the function module : HR_P_GET_FIXED_VALUE_TEXT.
    iIf you enter the domain name, you will find the fixed values entered in the domain.
    These values are stored in a table DD07L(DD zero 7 L). Here the values are stored based on domain name.
    See if it works for you.
    Award points if its helpful.
    Regards,
    Bhanu

  • BPS  initial value  at Planning Level

    Hello All
    I am getting error while using BW Hierarchy at planning level.
    i find the solution at  Including # initial value using hierachy
    but its not working
    i am getting this error "Characteristic Funds Center does not contain the initial value in the selection ".
    I try resolve the way suggested in old thread but its not working. I can only put either # or include Hierarchy at planning level.
    When I tried to use # it does not display Hierarchy in layout.
    if I include Hierarchy it gives error of "Characteristic Funds Center does not contain the initial value in the selection"
    Thanks in advance.
    Rinku

    If this error is just coming on execution of a planning layout the problem could be with your layout configuration, you should not select the hierarchy option in the first screen of layout config, only select totals by hierarchy on third screen of layout config and you should get the display you're after.
    (I think this error message can also arise when a compounding characteristic is not properly restricted)

  • Aggregate with fixed value for 0SOLD_TO__0REGION wonu00B4t work

    Hi,
    We want to have a aggregate for a specific region. I have problem getting the aggregate to work. When testing it for aggregates in tc rsrt, it states that it will not use the aggregate because of Characteristic/Attribute 0SOLD_TO__0REGION does not have aggregation level */%.
    This in spite of the fact that 0SOLD_TO__0REGION is filtred to only include the same region and country in the aggregate and in the query.
    Maybe the message with the * in the end of it means that the aggregate needs to have all regions (value * in aggregate instead of F), but if that is the case, why?
    BR,
    Niclas
    Edited by: Niclas Erlandsson on Jul 22, 2009 10:30 PM

    Hi
    1.Create separate aggragates for each Attribute, using fixed values and create a multiprovider over this cube and take the report.
    Multiprovider perform parallel search on aggregates hence you query retrival time will be quick.
    2.Create Hierarchy variable and hierarchy node variable in the properties of IO
    in this case also you won't see entirer hierarchy. if you won't provide data for other nodes... it won't display.
    set authorization on hierarchy node also helps
    Hope this helps
    Regards
    CSM Reddy

  • Travel Expense with fixed value

    Hi SAP Gurus!
    Anyone can suggest me how to create a Travel Expense with a fixed value?
    F.e. I want to create a Travel Expense called "Lunch Reimbursement" that is always 5.20€.
    Thank you very much, bye!
    Stefano

    Stupid question, find it!
    Thank you.
    Stefano

  • Characteristic Selection u201Cnot assignedu201D on planning level

    Hi experts,
    we are using BW-BPS.
    On planning level selection some characteristics have the following condition.
    0PROFIT_CTR     Equal to: #
    What does it mean exactly ?
    What is the difference between  u201Cno selectionu201D and  = u201C#u201D ?
    Thanks

    If it is blank, then any underlying layouts, or functions can be run for any specifiv profit centres, or all possible profit centres including 'not assigned' - there is no restriction at the Level, so all will be read.
    if the restriction is set to #, then the functions/layouts can have no assigned profit centre, and no postings will be made on any profit centre (or whatever the characteristic is set to). (It is more like leaving the chracteristic completely out of the level than leaving it blank).

  • XMLTABLE with fix value

    Hello
    I insert XMLData into a table. This works without problems. But now I want to insert one value as a fix value. This is not in the xmlfile but I need this information, that I know from which database is this xmlfile. I'd try with 'DATABASE-NAME', but it doesn't work.
    Can someone helps me?
    Thanks.
    roger
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state,
    database)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', '$fname_neu'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state',
    'DATABASE-NAME');

    This is not in the xmlfile but I need this information, that I know from which database is this xmlfileYou mean sth like this:
    insert into event_xml (name,
                           dtsysl,
                           hrsysl,
                           dtcptl,
                           nusesi,
                           dsp_step,
                           dsp_state,
                           bat_class,
                           bat_program,
                           bat_seqi,
                           bat_state,
                           database
           select t.*, 'DATABASE-NAME'
             from xmltable (
                    'Operations/Event'
                    passing xmltype (bfilename ('EVENT_DIR', '$fname_neu'), nls_charset_id ('CHAR_CS'))
                    columns name varchar (40) path 'name',
                            dtsysl date path 'dtsysl',
                            hrsysl number path 'hrsysl',
                            dtcptl date path 'dtcptl',
                            nusesi number path 'nusesi',
                            dsp_step varchar (40) path 'DSP/step',
                            dsp_state varchar (40) path 'DSP/state',
                            bat_class varchar (40) path 'BAT/class',
                            bat_program varchar (40) path 'BAT/program',
                            bat_seqi number path 'BAT/seqi',
                            bat_state varchar (40) path 'BAT/state') t;?

  • SELECT with fixed value

    Hi,
    I want to use SELECT....INTO TABLE statement but using a fixed value in one column, is that possible???
    I'm trying to do something like this:
    SELECT matnr "sy-datum" quantity FROM ztable INTO TABLE it_table.
    The it_table has got 3 columns: matnr, date and quantity but in the ztable there isn't a date and I want to insert into the table with a variable or something...
    Thanks

    Hi,
    you can do like this.
    Suppose your internal table structure is like that,
    data:begin of itab occurs 0,
           matnr type mara-matnr,
          datum type sy-datum,
          quant  type  menge,
          end of itab.
    SELECT matnr  quant FROM ztable INTO corresponding fields of  TABLE it_table.
    loop at itab .
    itab-datum = sy-datum.
    modify itab index sy-tabix.
    endloop.
    If you do like this then your column of itab-datum will have sy-datum .
    I hope this will help you.
    Help children of U.N World Food Program by rewarding them and encourage others to answer your queries

  • Aggregates with Fixed values

    HI
    We have a requirement to create an aggregate on one of our infocubes. Dical period is going to be included as part of this aggregate. I would like to know if it is possible to set this aggregate to be populated for a fixed range of periods eg: 008/2009 - 012/2009.
    I know that we can set this to one fixed date like 008/2009 but is a range of period possible? If so how can I do that.
    Thanks.

    Hi,
    To the best of my knowledge, it is not possible to give a range as a Fixed Value for Aggregate.
    However, I recommend to go for other possible options like partioning, compression, Indexing, OLAP Cache, DB Statistics etc to improve the performance of the query.
    Regards,
    Sekhar.

  • How to use array list with fixed values to insert record in trigger

    I have a list  of number 1,30,40,45,60 . These numbers are not being changed so I  don't need to keep in a table. So have to create a  after insert trigger   for 
    As
    Begin
    @list =  1,30,40,45,60 // Array value 
    for i=1 to @list.count
    Insert into mappingtable(arrayvalue,itemcode) values (list[i],Inserted.Itemcode)
    Next
    End
    Please can you help with a code 
    Regards
    Pol
    polachan

    Be careful what you assume - rarely are lists of values like this truly static.  One thing to keep in mind that arrays in sql server are tables.  So, one example is:
    set nocount on;
    /* represents the virtual inserted table in your trigger */
    declare @inserted table (itemcode char(4));
    insert @inserted (itemcode) values ('ABCD'), ('JJKL');
    select * from @inserted;
    select * from @inserted cross join (values (1), (30), (40), (45), (60)) as arrayx(value);

  • Variables with fixed value

    Is there in Java an operator that allow to a variable only a fixed set of values. For example the variable char color have only these value: "red","yellow",.. "etc".

    [Enums.|http://java.sun.com/docs/books/tutorial/java/javaOO/enum.html]

  • SelectChoice with fixed values.

    Good morning!
    I'm using af:selectChoice.
    I want to show a list of values to the user, and saves another values.
    For example.
    With sex select Choice:
    I want to show MAN/WOMAN and saves M/W.
    Thanks in advance,

    You can do something like this:
    <af:selectOneChoice
          value="#{bindings.YourAttributeName.inputValue}"
          binding="#{backing_YourPage.selectGender}"
          id="selectGender">
         <af:selectItem label="Man" value="M"
                 binding="#{backing_YourPage.selMan}"      
                 id="selMan"/>
         <af:selectItem label="Woman" value="W"
                 binding="#{backing_YourPage.selWoman}"
                id="selWoman"/>
    </af:selectOneChoice>

  • Can I compare bind variable with fixed value in where cause

    I found the problem buffer hit ratio < 70%. From monitoring, this below query is full table scan(8.5G)
    I think full table scan is a problem from scanning 720MB buffer cache.
    SELECT CT.LENS_ID,
    TO_NUMBER (TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD')) AS EXP_DATE,
    CT.WAREHOUSE_ID,
    COUNT (*) AS QTY
    FROM TB_STK_BARCODE_CTRL CT
    WHERE CT.EXPIRED_DATE IS NOT NULL
    AND (:B7 = -1 OR CT.WAREHOUSE_ID = :B7)
    AND (:B1 = -1 OR CT.LENS_ID = :B1)
    AND CT.L_STATUS_ID = 'I'
    GROUP BY CT.LENS_ID, TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD'), CT.WAREHOUSE_ID;
    I try to remove ":B7 = -1" from the query, and performance is OK. Index(WAREHOUSE_ID, LENS_ID, VERTICAL_TEXT, HORIZONTAL_TEXT) is used.
    SELECT CT.LENS_ID,
    TO_NUMBER (TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD')) AS EXP_DATE,
    CT.WAREHOUSE_ID,
    COUNT (*) AS QTY
    FROM TB_STK_BARCODE_CTRL CT
    WHERE CT.EXPIRED_DATE IS NOT NULL
    AND CT.WAREHOUSE_ID = :B7
    AND CT.LENS_ID = :B1
    AND CT.L_STATUS_ID = 'I'
    GROUP BY CT.LENS_ID, TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD'), CT.WAREHOUSE_ID;
    any suggest please
    Edited by: M.Suradech on Apr 8, 2012 8:11 PM

    M.Suradech wrote:
    AND (:B7 = -1 OR CT.WAREHOUSE_ID = :B7)
    AND (:B1 = -1 OR CT.LENS_ID = :B1)Looks like you are attempting to make some "generic" type of query.
    I'd recommend implementing something like this instead of what you currently have.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1669972300346534908

  • Fixed Value Date at line item level is not in changable mode when copied

    Dear SDN Team,
    Hi i have a problem in the Fixed Value date at the line item level in the Return sales order.
    The Problem is When creating the return order with reference to the scheduling agreement (10.03.2010).  In the Return sales Order at the line item level the fixed value date is coping from scheduling agreement item (fixed value date eg: 31.12.2009)
    But i would like to have the fixed value date in the return order as 10.03.2010  but the field is greyed out.
    But normally when the sales document is created with reference to the preceding document the same will be copied.  But field is greyed out and it is not in changable mode.
    Can any one help how to solve this.
    I have checked also SAP Note where i did not find any messages.
    In normal scenario - when the order is created without any reference the fixed value date is in changable mode until the document is in open.
    Pleas help me to resolve this.
    With Regards,
    Jai

    Hi Lakshmipathi,
    I am sharing the resolution which was done to this requirement.
    We have a specific condition type with statisticaly used and with routine to have KWERT with zero value,
    Based on the different key combination. We have a specific key combination for the SA and SDoc and for this we need to maintain a condition record for the condition type with fixed value date and which will be linked to only the specific document.  Once this is done.
    We need to do update pricing in the sales order for the particular line item. by doing this the Fixed value date will be changed in the particular line item.
    Thanks and Regards,
    Jana

  • F4 help not reflecting in ALV Grid for fixed values specified in domain

    Hi experts,
       As per subject i have a field for which i have assigned 5 fixed values in the domain level (of that field) . The problem is when i am displaying my ALV grid output i need a F4 help and F4 Option for the same is not reflecting and i have assigned in the field catlog as shown bellow.
    wa_fcat-fieldname = 'ZDEPLOY'.
      wa_fcat-tabname = 'IT_FINAL'.
    wa_fcat-f4availabl = 'X'.
    wa_fcat-key     =  'X'.
      WA_FCAT-SELTEXT_L = 'Deployment Planned'.
      wa_fcat-outputlen = '25'.
       WA_FCAT-EDIT = 'X'.
       WA_FCAT-REF_FIELDNAME = 'ZDEPLOY'.
       WA_FCAT-REF_TABNAME = 'ZETMDEPL'.
      APPEND WA_FCAT TO IT_FIELDCAT.
      CLEAR WA_FCAT.
    for the above field the f4 help is not reflecting.
    Intrestingly i have another field which i have declared using the same procedure for which my F4 help (with fixed values ) is reflecting in the same program .with the values as shown below
        wa_fcat-fieldname = 'ZFINAL'.
      wa_fcat-tabname = 'IT_FINAL'.
      WA_FCAT-SELTEXT_L = 'Final Status'.
      wa_fcat-outputlen = '10'.
       WA_FCAT-EDIT = 'X'.
       wa_fcat-ref_fieldname = 'ZFINAL'.
       wa_fcat-ref_tabname = 'ZETMDEPL'.
      APPEND WA_FCAT TO IT_FIELDCAT.
      CLEAR WA_FCAT.
    can u plz suggest me with a solution .
    Regards,
    Edited by: abhilash aswath on Oct 20, 2010 3:32 PM
    Moderator message: please do not use SMS speak.
    Edited by: Thomas Zloch on Oct 20, 2010 3:58 PM

    hi,
    There was a mismatch of characteristics. I resolved by matching the same.

Maybe you are looking for