How to find InfoObjects

Hi,
I need to know the InfoObjects for following ERP fields:
ZUORD (Network assignment)
IMPRF (Investment measure profile)
MVFLG (Quantity Complete/Incomplete)
VORNA (First Name)
NACHN (Last Name)
I am unable to find mentioned InfoObjects in RSOSFIELDMAP table.
Thanks,
Sajjad

Hi,
I have already looked into the business contents and was able to find almost all the appopriate InfoObjects accept the following three.
ZUORD (Network assignment)
IMPRF (Investment measure profile)
MVFLG (Quantity Complete/Incomplete)
I saw these fields in few DataSources but not in InfoSource where the InfoObjects are listed for the ERP fields.
Please advise.
Thanks,
Sajjad

Similar Messages

  • How to find infoobject in a transport?

    Is there any transaction to find out specific infoobject /data element included in a transport, like in R3 we have transaction SE03 ?
    Thank you ,
    Sam

    Hi Ravi Thothadri,
    Plz plz help me i am new to SAP BW....
    Explain me in detail ......
    1) supporting and troubleshooting large production BW systems
    2)writing complex transformation rules, complex queries in Bex analyzer, and web reporting and Web Application design
    Thanks,
    deen

  • How to find out the infospoke name for an existing infoobject?

    Hi,
    Could any one pls tell me how to find out the existing infospoke name for an infoobject?
    i've tried with where used list but its not coming....can any one pls suggest
    Thanks,
    Suri

    Hi,
        Check in metadata repository for that infoObject.
    If you are still not able to identify, goto RSBO tx and press F4.
    You will get the list of Infospokes available.
    Go in each and chk from the General Tab, if the infoObject is available in the source system.
    Regards,
    Balaji V

  • How to find the Infoobject name by Datasource .

    Hi SAP Gurus
    Can any of you guys suggest how to find the list of Info objects for the Datasources .
    I have a scenario where I have a list of Datasources (400) which are Text and Attr Datasources,
    for which I need find the list Info objects,
    so can you please tell me is there any way that I can find the List of Info objects.
    Thanks

    Hi Rahul,
    You can make use of RSOSFIELMAP for your requirement.
    Go to Se16----->rsosfieldmap.
    You can see several fields as selections among them you could find Info object and Field selections as well.
    If you give infoobject name in selection, it will display all the data sources where it is available.
    If you give Filed also it will display the same.
    If you want to maintian document do Top Down Analysis from Bw stand right from Data target-->update rule--->infosource
    Hope this helps
    SujanR

  • How to find table & fields of standard InfoObject?

    Hi
    How to find table & fields of standard InfoObject for creating generic DataSource?
    e.g. I want to know the table & field of 0MAINTPOS infoObject.

    You can get the list of tables involved in a particular DS by using the below method ( this another approach)
    --> RSA3 -- enter your DS ( execute later)
    --> Goto Tcode ST05 --> switch on the SQL Trace
    --> now execute the extract checker in RSA3.once done switch off(deactivate) the SQL trace.
    --> in st05 screen you can find the button "Display Trace" -- execute (here make sure SQL trace button is enabled.
    --> from the menu bar -->Trace list-->  select "combined table accesses".
    --> it will display the tables involved in it -- check for TABLE names section.... select that row Table names -- click on filter button --press F4 -- here we go it will display the list of entire tables involved in the extraction activity... here you need to sort the tables which are related to your DS.

  • How to find the infoobject in the multiprovider

    hi friends,
    i have a query,
    A query is developed on multiprovider having 20 cubes, now we want to find the infoobject(0doc_number), in which cube that object is used.
    actually, infoobject(0doc_number) is used in 11 cubes now how to find that query infoobject(0doc_number).is belongs to which cube.
    plz help me
    regards,
    prasad

    Hi,
    Please see the identification tab
    Or go to that infoobject click on where used list.
    Hope it helps
    Regards,
    Ravi.

  • How to find which infoobject uses particular attribute

    HI,
    I want to know which infooject have the attribute :0prod_descr. How to find it? Please let me know.
    Regards,
    siddhu

    Hi,
    Select where -Used list option for your object 0prod_descr  and find the objects.
    Regards,
    Krishna Reddy

  • How to find the number of records per months  in cube

    Hi,
      how to find the number of records per months for my all cubes?
      Can i use the ListCube transaction to find totl number f records per cube monthwise ?
    Jimmy

    Hi,
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    Cheers,
    Kavitha Kamesh.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to find out the object is available or not in BC

    Hi dear friends,
    Suppose I want to design/create a Cube / ODS, before going to create that object, how to find out the same type of Object is available or not in BC with the specification which I want
    Thanks in advance

    Hi Paul,
    at least you need to know the application you are talking about. Then you can goto that particular area and evaluate the content (cubes, infoobjects, infosources, datasources). It will surely give you an idea of the fulfilment of your requirements by the content.
    Siggi

  • How to find out who has deleted the production Query

    Hi All,
    I have searche SD , i can find it for infoobject deletion but i couldn't find it for Query.
    Please let me know is there any possiblity to kow
        How to find out who has deleted the production Query
    Awaiting for your replies.
    cheers

    Hi Mahesh and all,
    Thanks for all your  inputs.
    I have tried with RSRREPDIR tabel , I am unable to see that query at all.
    If I use theT-code SLG1,
      please guide me on the steps with paramets to be given in the respective ..object, subobject etc..
    OR
    could you please suggest any other way.
    cheers
    leena

  • How to find the data loaded from r/3 to bw

    hi
    how to find the data loaded from r/3 to bw is correct . i am not able to find which feild in the query is connected to which feild in the r/3 . where i am geting the data from r/3 . is there any process to find which feild  and table the data is comming from . plz help
    thanks in advance to u all

    Hi Veda ... the mapping between R/3 fields and BW InfoObjects should take place in Transfer Rules. Other transformation could take place in Update Rule.
    So you could proceed this way: look at InfoProvider Data Model and see if the Query does perform any calculation (even with Virtual keyfigures / chars). Than go back to Update Rules and search for other calculation / transformation. At least there are Tranfer Rule and eventually DataSource / Extraction Enhancements.
    As you can easily get there are many points where you have to look for ... it's a quite complex work but very usefull.
    Once you will have identified all mappings / transfromation see if BW data matchs R/3 (considering calculations ...)
    Good job
    GFV

  • How to find R/3 fields to BI InfoObjetcs .

    Hi,
    I have R/3 fields , but now i want to find corresponding BI Infoobjects , Pls let me know how to find it.
    I have tried RSOSFIELDMAP, 90% Infoobjects are not available i nBI.
    Note : I have Created generic datasource and now i want to store the data in DSO.
    Pls help me .
    Regards,
    Nithi.

    Hi,
    Use the follwoing table for finding InfoObjects
    RSDIOBJ----
    Directory of all InfoObjects
    RSDIOBJT----
    Texts of InfoObjects
    RSDIOBJ----
    Directory of all InfoObjects
    RSDIOBJT----
    Texts of InfoObjects
    RSDATRNAV------- Navigation Attributes
    RSDATRNAVT------- Navigation Attributes
    RSDBCHATR------- Master Data Attributes
    RSDCHABAS------- Basic Characteristics (for Characteristics,Time Characteristics, and Units)
    RSDCHA -
    Characteristics Catalog
    RSDDPA -
    Data Package Characteristic
    RSDIOBJCMP -
    Dependencies of InfoObjects
    RSKYF -
    Key Figures
    RSDTIM -
    Time Characteristics
    RSDUNI -
    Units
    Thanks
    Reddy

  • How to find unassigned master data text objects in process chain in bi

    Hi
    Please let me know how to find the unassigned master data text objects in process chain.

    hi,
    actually if u want to find that , is ur Unassigned Infoobject in present in process chain or not, , that u can find out just by right
    click on your DTP (master data Txt datasource--> Master data text ), if this is present in Process chain, then on ryt click, the process chain option will be active. by clicking over that u can find the name in which this exists.
    thanks.

  • How to find the Workbook statistics.

    Hi Experts,
    Can anyone please tell me how to find the Workbook statistics.
    There are more 20 workbooks created from a single query. I want to find out the top 3 workbooks accessed frequently for 1 year.
    Please provide your valuable inputs.
    Thanks

    Hi,
    if statistics cubes are installed and getting loaded every day you can check following reports
    0BWTC_C08_Q105
    Business Content workbooks
    0BWTC_C08_Q103
    Business Content DataSources
    0BWTC_C08_Q101
    Business Content InfoCubes
    0BWTC_C08_Q100
    Business Content InfoObjects
    0BWTC_C08_Q107
    Business Content InfoSet queries
    0BWTC_C08_Q106
    Business Content InfoSets
    0BWTC_C08_Q102
    Business Content InfoSources
    0BWTC_C08_Q104
    Business Content ODS
    0BWTC_C08_Q108
    Business Content Queries
    0BWTC_C10_Q014
    Query Runtime
    0BWTC_C10_Q251
    Deleting Data in InfoCubes
    0BWTC_C10_Q253
    Deleting Data in InfoCubes - Detail, Times
    0BWTC_C10_Q254
    Deleting Data in InfoCubes - Details, Records
    0BWTC_C10_Q252
    Deleting Data in InfoCubes - Overview
    0BWTC_C10_Q507
    Average Time per Query
    0BWTC_C10_Q021
    Average Time per Query
    Thanks and regards
    Kiran

  • How to find a crm field in the bi content

    Hi all,
    in r/3 we have been using rsosfieldmap table to find the infoobject existing in the bi system and can u tell me how to find the crm field whether that particular infoobject is existing or not in the bicontent.
    Regards,
    Naveen

    HI Naveen,
    Check for the filed source table -- next find the data source used--> you can search in help.sap.com for the related BI content BW info objects
    Rsosfiledmap table is used to find the respective Bw filed to which its mapped. this table can be used only if the fileds are already mapped and exisintg in use in BW system.
    i guess u can use the same table to find the Bw info obejct(only if the CRM data source is replicated n used in BW system).
    Regards
    KP

Maybe you are looking for