Issue in IP - Entering value for Characteristic object

Hi Expert,
I have a requirement where the input has to be unabled for characteristic objects through IP template.
I did the development as per the blog:
http://scn.sap.com/blogs/Christopher.sapbw/2012/12/25/master-data-planning-with-sap-integrated-planning-sap-ip
The issue is the development should have been done by using Super class CL_RSMD_RS_BW_SPEC. But could not use it as super class as i could not modify the methods in this case. Instead i made a copy of this class and did some modifications to the class. The class is not working for me. Its throwing the following error.
Please let me know if you have come across similar issue, and how to resolve it.
Thanks,
Anupama

Hi Anass,
I was able to solve the issue partially. Not getting the error now, but i am still not able to save the entered data back to the real time cube. I am using the analysis office for my development and using the standard save button on Analysis office.
Please help.
Thanks,
Anupama

Similar Messages

  • Getting an error while activating a planning area "Enter values for planning horizon From and planning horizon To for the storage time profile level"

    Dear S&OP community,
    I am getting following error while creating a planning ares in a newly installed sandbox. "Enter values for planning horizon From and planning horizon To for the storage time profile level".
    This what I did...
    1) Created new attributes and master data objects and activated them successfully.
    2) Time profile created and activated successfully
    3) Trying to create planing area by assigning  time profile in step 2 and assigned master data from step1..Unable to save the data and system returns 
    this error - "Enter values for planning horizon From and planning horizon To for the storage time profile level"
    My understanding is time profile needs to be active  but doesn't have to have values...
    Any help is appreciated.
    Thanks,
    Krishna

    YS,
    Here are my time profile settings
    Level       Name          Display Horizon - Past  Display Horizon - Future
    1             Monthly     -6                                       11         
    2             Quarterly     -2                                       3
    3             Yearly        -1                                       2
    Time profile is active and but time profile data is not loaded
    Thanks,
    Krishna

  • How to set the Default values for Info Objects in Data Selection of InfoPac

    Hi All,
    Flat file Extracion:
    How to set the Default values for Info Objects in Data Selection Tab  for Info Package
    ex: Fiscal Year Variant  Info Object having values 'K4' 'Y2' etc  in Flat file
    Initially  default value(not constant)  for this info Object value should be 'K4'  in Info Package
    If I set data selection value for this info object K4 it will retreive records with this selection only? how to handle
    Rgds,
    CV

    Hi,
    suppose as your ex. if you are having fiscalyear variant in the dataselection tab then specify K4 in the from column, again the ficalyearvariant row and click on insert duplicate row at the bottom . you will get another row . In that enter Y2 in the from column. now you can extract K4, y2 values .
    haritha

  • Incorrect initial value for characteristic 0fiscyear in i_t_range

    Hi,
    While extracting the data from the source DSO to Target I got an error message like '' Incorrect initial value for characteristic 0fiscyear in i_t_range".
    what is the step should i take to resolve this?
    Thanks in Advance.

    Gurus
    I have the same problem with my ABAP code written in DTP filter.
    Can anyone please help what needs to be done , I am getting this error when I try to load the data to cube.

  • How to display texts automatic. besides entered value for a field in Trans.

    How to display texts automatically besides the entered value for a field in a standard transaction screen. For example you have a value table and a text table associated to it. Then on entering the value field and pressing enter the text associated should get displayed immediately besides the value. Like if you have 'LOC' as the value and 'Location' as the text associated to it, on entering this value 'LOC', you automatically get the text 'Location' printed besides it automatically in a transaction screen ?
    Message was edited by: Sarika Kedia

    Hi sarika,
    Welcome to SDN.
    1. first of all, such display of text,
       is not automatic.
       (it appears to be automatic)
    2. At design time,
       a) take one extra field for text
         and mark it as OUTPUT ONLY
    3. Then in PBO coding,
        call some module, and in that module
        write code
    4. The code should be to
       select from TEXT Table
       into the work area.
    EG. THE SCREEN TEXT FIELD NAME IS
    T510A-FIELDNAME.
    CLEAR t510a.
      SELECT SINGLE * FROM t510a INTO t510a
      WHERE trfar = FIELVALUE.
    5. This will take care of
       displaying the text value of that field.
    regards,
    amit m.

  • Issue in creating limits value for service PR using BAPI_REQUISITION_CREATE

    HI Experts
    I am creating a service PR using bapi bapi_requisition_create.I am able to create service PR successfully, but I am not able to set value for overall limit and the Expected value.
    I am passing the limits values through bapi, but when I am trying to display those value in the limits tab in ME53N, it gives dump.
    Please suggest how can I set the limits value.
    regards
    Ashwini

    Could Ashwini or anyone else please suggest how this issue was resolved? I am using BAPI_REQUISITION_CREATE, but the limits I enter in the REQUISITION_LIMITS table, do not get saved, although the Purchase Requisition itself gets created.

  • Invalid character value for info object

    Hi Experts,
    Iam getting this error,when loading master data
    Value 'H4-LAMPE 'for characteristic 0Material is in External Format.
    0Material : Data Record 1 ('000000000009') : Version 'H4-LAMPE ' is not valid.
    i have checked in transfer rule, the column Conversion is not checked. but this is disabled to check.
    RSKC also does not helpfull.
    in R/3 also length set to 18.
    pls suggest me any solution.
    Thanks
    Sanjay

    The issue with the data is the trailing space. SAP BW doesn't like leading or trailing spaces in the data and the routine that uses RSKC doesn't account for that. Try adding the following into your Transfer Rules:
    CONDENSE field NO-GAPS.
    If you're on BW 7, create a Formula in the Characteristic Rules of the Transformation for this and use the R_TRIM function.
    Edited by: Dennis Scoville on Aug 27, 2009 11:30 AM

  • Id column values for null objects

    If I have something like the following, where B.id is mapped to an INTEGER
    column in A's table, Kodo wants to store a NULL value into the column. This
    doesn't work if the column is specified as NOT NULL. Is there a way to
    configure Kodo to use some predefined integer value instead, such as 0
    or -1?
    class A {
    int id;
    B b;
    class B {
    int id;
    A a = new A();
    a.id = 123;
    a.b = null;
    pm.makePersistent(a);
    pm.currentTransaction().commit();

    I'm not sure what you mean by "value mapping." In my case, I am mapping a
    null reference to another object. I am using application identity. Here's a
    more complete example (still very abbreviated, but hopefully complete
    enough):
    class A {
    static class Id { int id; }
    int id;
    B b;
    class B {
    static class Id { int id; }
    int id;
    int value;
    create table A (ID integer not null, BID integer not null)
    create table B (ID integer not null, VALUE integer)
    <jdo>
    <package name="test">
    <class name="A" objectid-class="A$Id">
    <extension vendor-name="kodo" key="table" value="A"/>
    <field name="id" primary-key="true">
    <extension vendor-name="kodo" key="data-column" value="ID"/>
    </field>
    <field name="b">
    <extension vendor-name="kodo" key="id-data-column" value="BID"/>
    </field>
    </class>
    <class name="B" objectid-class="B$Id">
    <extension vendor-name="kodo" key="table" value="B"/>
    <field name="id" primary-key="true">
    <extension vendor-name="kodo" key="data-column" value="ID"/>
    </field>
    <field name="value">
    <extension vendor-name="kodo" key="data-column" value="VALUE"/>
    </field>
    </class>
    </package>
    </jdo>
    A a1 = new A();
    a1.id = 123;
    a1.b = new B();
    a1.b.id = 456;
    a1.b.value = 999;
    pm.makePersistent(a1);
    A a2 = new A();
    a2.id = 789;
    a1.b = null;
    pm.makePersistent(a2);
    pm.currentTransaction().commit();
    The inserts for table A look something like this:
    insert into A (ID, BID) values (123, 456)
    insert into B (ID, VALUE) values (456, 999)
    insert into A (ID, BID) values (789, NULL)
    The NULL value fails because the column is specified as NOT NULL
    (pre-existing schema scenario).
    What I need to be able to do is specify what value gets inserted for null
    object references. Kodo is inserting NULL. I need to insert -1.

  • How to stop user from entering value for already existing data

    Hi ,
    We have a situation , where we need to give user a template for entering the data and then send it to the database. But we want that if user has already entered the value for a combination, then he should not be allowed to select the same combination again in that template.
    In other words , there should be write access but not update access.
    So I have two questions related to it:
    1. How to build report with giving user , the drop-down list of available members under each dimensions. (I know that we can provide list by writing all of them in excel and then using those values in drop-down)
    2. How to restrict the user for selecting the combination which has already been selected.
    Need your suggestion
    Thanks
    Sanjay

    Hi Sanjay,
    for your first question...
    you can build an EVDRE in a hidden area/sheet to display all values of a desired dimension in rows. Set Option SuppressDataCol to 'Y'. Also maintain MemberSet options to display only the values you need.
    Now you can reference your DD-box to the key- or description range.
    With some VBA-code you can refresh this EVDRE on Workbook_Open and also set the range (attribute ListFillRange?) of you DD-box dynamically to the RowKeyRange.
    Hope, it helps.
    Regards
    Steve

  • How to enter values for newly inserted field for maintenace view table

    Hi ,
    I have inserted new field for custom table which consits of maintance view..
    I want to put some values in to this newly inserted field..
    When i try to insert values bu useing se16,iam unable to view this newely inserted field..
    Can you please let me know how can i insert values to this newely created field
    Thanx,
    Parnith

    Hi Parnith,
    It is easy to use a table maintainance to enter values to a database table....
    if you have a table maintainace generator and you are not able to see the newly added field here is the reason
    Everytime you add a new field , the table maintainance needs to be regenerated..The reason is that the screen you are using in the table maintainance is created within a program with respect to the fucntion group and not directly linked to the table..whenever you change the table,the function group is not affected and changes are not reflected in the table maintainance , so you have to regenerate by utilities-> table maintainance generator in sell for that table..once you do it , the function group assigned to the table automatically creates a new one with the latest fields added
    Reward if helpful
    Regards
    Byju

  • Entering value for parent dimension

    Hello
    Once the dimension are loaded from OGL into Hyperion along with hierarchy (parent with child relation) is there a way to enter values (financial figures) for parent dimension ONLY into the dataform manually?
    If yes, can you please suggest a way how to go about entering values....

    You would probably need to use a target type version to enter at upper levels
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Extracting values for characteristic on release strategy of Preq

    hello
    we have Preq release strategy based on classification and the release is based on amount. in the class, one of the characteristics contains the amount above which the strategy is being triggered: how can I extract all the values for all the strategies from this characteristic? is there a table for it?

    Hi,
    Please check the AUSP table for release strtegies and CAWN table for characteristics. Please check below link for additional information. Thanking you.
    Release strategy tables

  • How to enter values for an Info-object Manually.

    Hi
    I have to enter certan values manually in the customised info-object which are not available in the
    BW at the moment.
    If I go via SE11 I am only getting change option.
    If I go via SM30 it says The maintenance dialog for ****** is incomplete or not defined.
    How can I enter certain values to this info-object.
    Please advise.
    Many thanks,
    Kate.

    Hi
    Use transaction rsdmd to maintain infoobject values - or right click any infoobject an select maintain master data.
    Regards,
    Beat

  • Enter values for the table

    Hello ABAP Experts,
    I have a z table. I can enter the values in Dev using sm30. I have just transported the table to QA. when i am trying to use the sm30 in QA it is giving this message:
    'The maintenance dialog for zbudget_dir is incomplete orr not defined. message no. sv037
    diagnosis:
    the called function with the view/ table zbudget_dir needs a special maintenance dialog which, however, eithter dies not exist at all, or does not exist complemetly.
    procedure:
    generate the required maintenance dialague.'
    please suggest how to fix this problem.
    Thanks,
    BWer

    There is an associated set of objects that runs the maintenance dialog of any table. This has not been transported.
    You will have to assign a dev class (maybe it was $TMP in dev hence not transported) to the table maintenance components and transport it.
    In SE11, go to utilities->table maintenance generator and follow from there to create afresh, or,
    SE54> specify table name and try utilities>total transport.

  • Where do you get the values for the object and ID paramters in authority-c

    Hoping this is simple - could not find anything already posted on this.
    My code works (copied from another program):
    AUTHORITY-CHECK OBJECT 'S_TCODE'
                             ID 'TCD'
                             FIELD 'SE38'.
      IF sy-subrc NE 0.
         MESSAGE Z1000
        'You are not authorized to execute this program'.
      ENDIF.
    This is checking to be sure the user can run SE38.
    I want to know where I can find a table, etc. that has the S_TCODE. and the ID 'TCD'.
    I want to see what other values i could use for checking items like this.
    Thanks.

    Hi Scott,
    Check the table TOBJ.
    Happy coding...

Maybe you are looking for

  • IMAC + Graphic Design

    Are any professional graphic designers using the new Imacs. I graduated earlier this year and have been thinking about getting a mac for a while now. My PC just crapped out about a week ago, so it is definitely time to buy a new comp. I know that get

  • HT204379 How can I create a screensaver?

    Trying to find a simple way to do this. Not sure what file format this should be or what program to use to create it. Was trying to do something simple like export a Keynote animation as a mov file, then convert to a screensaver. Thanks!

  • HT1222 Can someone explain why the Safari 5.1.7 update seven times and counting?

      The latest Safari 5.1.7 update seven times and counting?  Is this required or is there something else a foot? Tomez

  • Metadata in progress

    can you explain me what this message means? Metadata in progress (2 files pending).  If you quit before writing is complete, data will be lost.

  • Setup reports for pdf creation with company logo and printing without

    Hi, we want to have 2 different report-layouts. The first one is just for printing on company paper. So it doesn't need a logo. The second one is for exporting to PDF file. So it needs a logo. How can I realise it in SAP BO 2007 without changing the