Info-Object Master Data is not populated using Attribute View

Hi Colleagues,
I have one info-Object 'Resource', compounded with client, resource type and scenario.
I want to fill its master data using an attribute view.  In Master data tab, i have mentioned the package and attibute view (SAP HANA MODEL).
Assigned all the attributes to respective fields in attribute view.
I can see data using the 'Data Preview' in my attribute view.
Two issues --
1. Maintain master data option is disabled in the context menu of 'Resource' Info-Object.
2. Also the data available in attribute view is not populating in master data of info-Object ( I tried seeing by creating a report).
Please suggest what is wrong here.
Thanks in advance.
Regards,
Rohit

Hi,
When you are loading data from DSO to IO, seems like some filtering is happening. Just check the active table of DSO and make sure that you have all the 59 records available.
Another important thing is check the primary key of your master data i.e. if there is any compounding attribute if not then records from DSO might be getting overwritten in the master data. i.e. only 6 unique records.
Regards,
Durgesh.

Similar Messages

  • Effect from build time dependent  2 attribute in info object master data

    Dear all,
    i creat time dependent  2 attributes in info object master data (ZCURRLUM) which use in info cube. after that i open workbook or query, it has short dump which error message
       "UNCAUGHT_EXCEPTION" "CX_RSR_X_MESSAGE"
       "CL_RSBOLAP_BICS_SERVICES======CP" or "CL_RSBOLAP_BICS_SERVICES======CM003"
       "HANDLE_UNCAUGHT_EXCEPTION"
    Question: info object master data can't use more than a attribute time dependent???
    i use in BI 7.0 level 14
    thanks for your help
    regards,
    Joy

    Hi Chandamita Sarmah,
    I copy error code to you from line 1 to line 28
    METHOD handle_uncaught_exception.
      data:
        l_r_program_error  TYPE REF TO cx_rsbolap_program_error.
      data: lBExDebug type rs_bool.
      GET PARAMETER ID 'BEXDEBUG' FIELD lBExDebug.
      if lBExDebug = rs_c_true or CL_RSTT_TRACE=>GET_TRACEMODE_CURRENT_TRACE( ) = rstt0_c_tracem
    Break-point for debugging, e.g. during running a trace
        break-point.  "#EC NOBREAK
      endif.
    Subcall?
      if P_RFC_CALL_DEPTH > 1.
      Forward the exception
        subtract 1 from P_RFC_CALL_DEPTH.
        DATA: l_r_x TYPE REF TO cx_no_check.
        TRY.
           l_r_x ?= i_r_exception.
          CATCH cx_root.
            CLEAR l_r_x.
        ENDTRY.
        IF l_r_x IS INITIAL.
          RAISE EXCEPTION TYPE cx_rsr_propagate_x
            EXPORTING
              previous = i_r_exception.
        ELSE.
        RAISE EXCEPTION l_r_x.
        ENDIF.
      endif.
    All exceptions should have been caugth -> X-Message
    Thanks a lot for your help
    Joy

  • Master data modified at SQL end not reflecting in Info object master data

    Hi All,
    we have done some data modification at SQl end where the modified data not reflecting in infoobjects master data.
    for example:
    we have split/skills numbers like 1-1000 in the data base and now we did some modifications to that particular split/skills numbers and uploaded that data successfully in the SQL end.now the problem is that modified data is not reflecting in split/skill info-objects and showing the same old data but not the modified one.can you please explain me how to reflect that modified data in BI side.
    regards
    Vamshi D Krishna

    Hi vamshi ,
    what is type of data load to master data infoobject (Full / Delta), if you know the split/skills numbers, try to load with repair full till PSA and check the data. if data is correct you can load to infoobjects and data will be overwrite, after loading data into infoobject -> in RSA1 -> infoobjects-> right and select "Activate master Data" ( this is not a mandatory step, if there is any M and A version data is there that will be adjusted.)  and updated data will be available infoobject master data.
    Regards,
    Daya Sagar

  • Info Object Master Data (0DATETO &0DATEFROM)

    Hi,
    I created Info Objects with attributes and loaded master data
    When i do
    Bi Contect Info Object-->Context menu (Maintain master data) -->which show me info object id ,attributes ,  0DATETO and 0DATEFROM
    when i checked definiation of info object i can't find the attributes 0DATETO & 0DATEFROM
    When i do the same for my Z info object i didn't get 0DATETO
    0DATEFROM
    Please advise

    In the InfoObject Manteinance, under attributes, you have the infoobjects that are attributes of a characteristic
    The fifth column, has a flag, which determines if that attribute is time dependent or not.
    A time dependen attribute is when for a certain characteristic, such as Customer, you put an attribute, as Customer Classification, and from 1.1.2006 to 1.5.2006 you can say that is Classification A, and then from 2.5.2006 to 31.12.9999 (or until you change it) is Classification B.
    Hope it helps..

  • Configuartion data is not populated using BAPI_SALESORDER_CREATEFROMDAT2

    Hi All,
    I am using BAPI_SALESORDER_CREATEFROMDAT2 to create the sales order and to add the characteristics for my material in the configuration.
    my code for configuration to BaPI
        w_order_cfgs_ref-posex = '000010'.
        w_order_cfgs_ref-config_id = '1'.
        w_order_cfgs_ref-root_id = '00000001'.
        w_order_cfgs_ref-complete = 'T'.
        w_order_cfgs_ref-consistent = 'T'.
        w_order_cfgs_ref-sce = '1'.
        w_order_cfgs_ref-kbname = w_sdsales_sap-matnr.
        w_order_cfgs_ref-kbversion = '1'.
        append w_order_cfgs_ref to i_order_cfgs_ref.
    INSTANCE
        w_order_cfgs_inst-config_id = '1'.
        w_order_cfgs_inst-inst_id =  '00000001' .
        w_order_cfgs_inst-obj_type = 'MARA'.
        w_order_cfgs_inst-class_type = '300'.
        w_order_cfgs_inst-complete = 'T'.
        w_order_cfgs_inst-consistent = 'T'.
       w_order_cfgs_inst-OBJ_TYPE = .
        w_order_cfgs_inst-obj_key = w_sdsales_sap-matnr.
        append w_order_cfgs_inst to i_order_cfgs_inst.
        w_order_cfgs_part_of-config_id = '1'.
        w_order_cfgs_part_of-inst_id = '00000001' ..
        w_order_cfgs_part_of-obj_type = 'MARA'.
        w_order_cfgs_part_of-class_type = '300' .
        w_order_cfgs_part_of-obj_key = w_sdsales_sap-matnr .
        append w_order_cfgs_part_of to i_order_cfgs_part_of.
    *characteristics value
        w_order_cfgs_value-config_id = '2'.
        w_order_cfgs_value-inst_id = '00000001'.
        w_order_cfgs_value-charc = 'VC_MODEL'(025).
        w_order_cfgs_value-value = w_sdsales_sap-model.
        w_order_cfgs_value-valcode = '1'.
        append w_order_cfgs_value to i_order_cfgs_value.
    It is creating sales order but configuration data is not getting populated in the sales order item.
    Please advise me
    Thanks in adv
    sangeetha

    hi see this
    SAP Note number  774346

  • Upgrade to BI7 - Master data report not working with attributes

    Hi
    We've recently upgraded to BI7. We've noticed that any queries where a characteristic is the info provider, reporting on the attributes as free characteristics is not possible. The only way to fix this is to make the characteristics navigational. Is there a fix for this, or do we have to make all the characteristics navigational? It used to work in 3.1

    Hi Expert,
    We are starting upgradation, Can you please prvide guide me how to do the upgradation.
    Thanks

  • Info object as Data type as NUMC, master data doesnot store value as 0

    Hello All,
    I have an Info Object whose data type is NUMC.
    It has only text Master Data.
    Id and its description are the two fields of that Master data.
    Now when below data is feeded in to that infoobject through transformation which has 1 to 1 mapping.
    ID              Description
    0                Submiited
    1                 Approved
    2                  cancelled
    The data gets uploaded in text table but.
    0 ID values turns out to be "       "    blank.
    Which is wrong.
    Result in Text Master table:
    ID                Description
                        Submitted
    1                  Approved
    2                 Cancelled
    if the ID is 0 it should be populated as 0 for "submitted"
    No start routine our end routine is ther in the transformation.
    Kinldy help me to solve this issue.
    Points will be assigned

    Hi,
    When an InfoObject is created it'll have a blank record, in case of Numc it'll be as shown below:
    ID  Description
    0   Blank
    But this 0 gets displayed as blank as well.
    When you post transaction/master data you can post it as
    0 for Submitted
    1 for...
    2 for...
    When you do reporting on this & if you only select text display only it'll display "Submitted", which is required. But if you display ID & text or only ID. It'll display # instead of 0.
    See if you can replace this # with 0.
    Mean while i'll be trying to get this solution. I'll post soon if i get the solution.
    Regards,
    Iliyas

  • Change Info Object Master/Text  data in PROD  to Time dependant

    Hello Experts,
    I have an Info Object used in ODS and Cube. Both ODS and Cube has data in it. The Info Object has Text data.
    I need to change Info Object Text data as Time dependant.
    What are best way to make this change? If I make change to Info Object, how it's going to effect Cube and ODS.
    Please advise.
    Thanks
    Padma
    Padma Reddy

    Bhanu,
    Yes I am selectiong the check box to make IO as time dependant.
    May be I am over complicationg this. Here is my understanding, correct me if I am wrong.
    The IO is used in cube. It belongs to Dimension1. This dimension table is nothing but dim id's and SID's. So the Dimension table is built based on the exist SID values.
    When I make change to IO, the data and SID's will change. Doesn't it cause some data inconsistancy ? And also the IO text table will have multiple rows with the same data but with different validity periods.
    As I said I may be thinking too foolish or technical.
    Please advise.
    Thanks
    Padma

  • Date management on internal object master data

    Hi gurus,
    I need to use a set of dates on the internal object master data. On the date profile customizing there isn't anything that reflecting the management of the dates on products or internal object.
    However, on the web UI (Internal Objects details screen) I found the field "Date Profile":
    - component: PRDHS
    - view: PRDHS/Header
    - context node: PRODSETWTY
    - attribute: STRUCT.TIMEPROF
    This field is not active and I also searched for a set type that could allow me to activate it and to insert a date profile for my internal object without success.
    I'm searching the way to activate this field on the internal object master data and to understand if it's possible to use the date profile on it.
    Your help would be very appreciated.
    Thank a lot.
    Massimiliano.

    Hello,
    There are no date profiles assigned to products in the CRM system, I believe the same is true for internal objects.
    Generally, once a product has been added to an order then the dates from the order/APO system are what are taken into account.
    I have checked into internal objects but the only date I can find reference to is a timestamp:
    http://help.sap.com/saphelp_scm50/helpdata/en/f9/a67937b566ab49e10000009b38f842/frameset.htm
    I have also checked on information on the attribute STRUCT.TIMEPROF but haven't found anything.
    Thanks and regards,
    Ita

  • 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

  • Why change pointers for master data, why not change message?

    Hi Gurus,
    I have one doubt about Idoc.
    When changes to master data has to be sent Change pointers are configured and used. (CDPOS & CDHDR). In case of the transaction data change change idoc is used as is the case with orders (we use ORDCHG for ORDERS message type to send the chnage details to a order which was already sent to other system.
    Why we can't use change idoc or message type whatever, instead of Chnage pointers in case of master data or vice versa in case of transaction data.
    Your valuable input will be rewarded with suitable points!!
    -B S B.

    Change pointers are getting stored in the tables BDCP and BDCPS. As SAP suggests these tables should be as small as possible. And Master data are not much frequently changed data.
    As you compare with the transactional data, you need to change them many times in the real scenario. If we also process the transaction data via chnage pointer, these changes BDCP is getting more and more entries.
    RBDCPCLR is the program used to process the change pointer. If you have much data in the BDCP table, this program will take much time to run.
    So, we use the change pointers for the master data only.
    Regards,
    Naimesh Patel

  • All master data values not shown in query selections

    Hi
    I have created a query on a BasisCube containing the InfoObject 0FUNC_AREA. I loaded data to 0FUNC_AREA and the cube.
    I then created a query on the cube, in which I want to filter on 0FUNC_AREA. However, when I get the list of available values for 0FUNC_AREA not all the values in the master data is shown. It only shows 25 values out of 105.
    As a default, the data shown is only the cube data, so I removed the tick in the checkbox: Show only InfoCube data. Still the same.
    Then I went to the InfoObject and set the 'Query Def. Filter Value Selection' and 'Query Execution Filter Val. Selectn' equal to 'Values in Master Data'. Still the same.
    Then I deleted the contents of the InfoCube. It still shows the original 25 values.
    The really strange thing is, that when I go into the selection screen for 0FUNC_AREA in the BEx and limit the shown values to one of the values available in the master data but not shown in the list, it shows the text of the functional area in the limit summary window. But still when executing the limitation, it cannot find the value!!!
    The problem is the same in LISTCUBE
    I hope some of you can help we with this.
    Thanks
    /Karsten

    Hi Hari
    1) Reactivated the master data, said it was already active.
    2) Could see a difference between the data contained in cube and the remaining data. Otherwise not.
    I deleted cube and master data and reloaded, the problem still persists. I am beginning to suspect a bug in BW.
    I have to determine whether I am going to live with it (as it isn't critical, just a nuisance) or create an OSS on it.
    Thanks for all the input guys.
    /Karsten

  • Impact on transactional Loads if Master data is not loaded

    Scenario for your reference:
    The loads to ZPO_LINE from PC3 was failing for past 20 days from The fix was applied on April 21. 
    I need help to decide the effects of not loading ZPO_LINE for past 20 days. And create a detailed plan for data loads required.
    If the master data is not loaded for 20 days will it affect the transaction loads happened during those days?
    And how can i find out the impact and correct the transaction data if it does?
    Can any 1 help me with this?

    Hi,
    If i understand your scenario, you have a scenario where the Master data load has not been updated for the last 20days but, the transaction data was loaded without any interruption.
    In such a scenario, the Transactional loads will only be affected if there is some field which undergoes transformation after looking up on the master data.
    So, first load the master data and run the attrib change run process.
    After this, if the transaction data is in full update mode, then you dont need to do anything as data will be refreshed with correct values in the next load.
    If delta loads are there, you might need to performa  full repair.
    Regards,
    Rahul

  • Upload the master data in abap-hr using Lsmw tool

    Hi Friends,
    Any one Help me How to Upload the Master data in ABAP-HR using LSMW.
    In Recording what need to fill.
    If any screenshots are availave please provied me.
    Thanks and Regards,
    Sai.

    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Try this .....

  • Phone is using data when not in use. How do I make it stop?

    My iPhone 4S is using data when not in use. Any thoughts on how to make it stop?

    Hello Oakleymp
    You could always turn off cellular data in Settings to get it to stop using data while it is on standby. Another option to troubleshoot the issues is to reset all settings, go to Settings > General >Reset > Reset All Settings.
    iOS: About the Cellular Data setting
    http://support.apple.com/kb/HT4203
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

Maybe you are looking for

  • Transfer files using FTP from one r/3 server to another on windows platform

    Hi , I am trying to transfer a text file from one r/3 server to another this should be done using ftp. I am working on widows OS & i have tried all the RSFTP* pgm's none satisfy my req. please tell proper method to do so or if any pgm please tell pro

  • Development machine

    Hello OTN Members, I have a server box on win NT and Oracle 8.1.6, Portal 3.0 installed on it. I am planning to install Forms Developer 6i. My question is can I install form Developer 6i and forms Server on to this same box and for the development pu

  • Settings in color management VISTA

    http://s54.radikal.ru/i143/0808/c2/e56c95257436.jpg I am using a new Dell3007WFP und NVIDIA GeForce 7600 GT with Windows Vista. Images display with a yellow tinge when I open them in Photoshop CS3 (or Windows Photo Gallery). They do not have the yell

  • Oracle BI Spreadsheet Add-in 10g 's API has forgotten what OLAP is !

    Hello, Did you know that since the 10g, the news API to reach AW is in SQL language? Never mind, after all, since one obtains what one wishes! The problem is that this interface generates an SQL request BY Excels cell!! 100 cells = 100 sql requests!!

  • I'm having troubòle updating my iPod

    I'm having trouble updating my iPod Itunes says to me that i'm not connected. Does Anyone know something to fix this problem??? Ho dei problemi ad aggiornare il mio iPod ITunes mi dice che non sono connesso. C'è qualcuno che sappia come aggiustare qu