Extraction from SAP R/3 (Business Content ) into SAP BW

Hi,
i replicate all data in bw side when i assign infosource iam getting the error "Mapping between datasource 2LIS_02_S011 and source system "ALS800R3" is inconsistent in the status bar and a pop-up window showing error in infoObject Mapping listing down Objects like 0REVERSEDOC, 0VTYPE, 0VERSION, 0PURCH_ORG, 0PUR_GROUP and so on and also these objects are not active
please help me regarding this error
thanks.
ram baskar

Hi
Go to the transaction RSA1
then in RSA1 click on the infoobjects in modelling
then search for the infoobject
go to the change mode of infoobject
there you can find the activate button on the top
click on that button it will activate your infoobject
Assign points if it helps
Regards,
Sumit

Similar Messages

  • Business Content for SAP BW ,WAM work order ans asset management

    Hi All,
    where can i see the business content for sap work order and asset management. can i see it in help.sap.com
    i tried but could not get . any url would be appreciated.
    Regards
    Srini

    Thanks AHP for pointing out.
    From BW help link as below
    http://help.sap.com/saphelp_bw33/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    go to BI Content > Financials > Financial Accounting > Asset Asset Accounting
    for Assets
    go to BI Content > Financials > Controlling > Overhead Cost Controlling > Overhead orders
    for Internal Orders
    Hope this time it is fine.
    Cheers
    Anurag

  • Business Content in SAP BI 7 for SAP xApp Emission Management

    Dear Collegues,
    I am unable to find standard Business Content in SAP BI for SAP xApp Emission Management in help.sap.com Can anyone help me to find this along with Standard Reports and Cubes for SAP xApp Emission Management in SAP BI 7.
    Thank you very much.
    Regards,
    Suman Raju.

    Hi,
    Please check the SAP help for Industry solution BI Content. You can access (3.5 Help) through below links:
    Bank Analyser
    http://help.sap.com/saphelp_nw04/helpdata/en/3d/13b7a4675e51479e158591ef49ebfb/frameset.htm
    SEM Banking
    http://help.sap.com/saphelp_nw04/helpdata/en/01/fc453caff4f703e10000000a114084/frameset.htm
    Transaction Banking
    http://help.sap.com/saphelp_nw04/helpdata/en/96/073acb4deca54fbf55ce3fddef3092/frameset.htm
    Loan Management
    http://help.sap.com/saphelp_nw04/helpdata/en/27/8a461622e4164bb5702f8c5ffd920f/frameset.htm
    Collateral Management
    http://help.sap.com/saphelp_nw04/helpdata/en/41/4fe61ffbfa3014e10000000a114e5d/frameset.htm
    Regards,
    Kams

  • Get Data from SAP over the Business Connector into a Java Programm

    Hallo dear community,
    i would like to receive data from the sap over the application business connector into a java programm. i work with the german book "SAP Business Connector 4.8 - Administration und Entwicklung".
    Now i hand on the routing rule.
    [Screenshot|http://h-2.abload.de/img/routingruleuyt9.png]
    i don't know what i should configure here for receiving data, which i need for an java programm.
    i will be very happy, when somebody got a tip or an source (tutorial) where i can find such a configuration  :wink:

    I think u r writing BDC for Uploading the data from excel flile to sap. for this is the code I am sending u can use then for Uploading data from excel to sap.
    DATA: lv_filename TYPE rlgrap-filename.
    FIELD-SYMBOLS : <fs>.
    DATA : l_intern TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA : l_index TYPE i.
    PARAMETERS : startcol TYPE i ,
          startrow TYPE i ,
          endcol TYPE i ,
          endrow TYPE i .
    PARAMETERS: p_flnam LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_flnam.
      CALL FUNCTION 'F4_FILENAME'
    EXPORTING
       program_name        = sy-repid
      FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_flnam .
      MOVE p_flnam TO lv_filename.
    Uploading the flat file from the desktop
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                      = lv_filename
          i_begin_col                   = startcol
          i_begin_row                   = startrow
          i_end_col                     = endcol
          i_end_row                     = endrow
        TABLES
          intern                        = l_intern
    EXCEPTIONS
      INCONSISTENT_PARAMETERS       = 1
      UPLOAD_OLE                    = 2
      OTHERS                        = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT l_intern BY row col.
      LOOP AT l_intern.
        MOVE l_intern-col TO l_index.
        ASSIGN COMPONENT l_index OF STRUCTURE itab TO <fs>.
        MOVE l_intern-value TO <fs>.
        AT END OF row.
          APPEND itab.
          CLEAR itab.
        ENDAT.
      ENDLOOP.
    I hope it will help u.
    Regards
    Nayan

  • How To upload business partner into sap crm using xif Adapter by XML File

    HI Guru's,
                 I got Requirement to upload the business partner information into sap crm system using xif adapters from xml file , please give  imformation how can achive this .
    Regards,
    Naveen Kumar MS

    Dear Naveen,
    please see the information given in note 448742 General notes on CRM external interfaces!
    Hope you can find the information!
    Regards, Gerhard

  • Upload data from excel (not the excle file) into SAP

    Guys,
    how can we upload data from excel sheet into SAP? I mean just the data not the entire file,
    I have a requirement where user press a button in excel sheet and the data in the sheet will get uploaded into SAP.
    I am sure we have to use BAPI and some VB programming for macros, I will really appriciate if anyone can help how to achive this.
    some sample code exampe will help.
    Cheers!

    I think u r writing BDC for Uploading the data from excel flile to sap. for this is the code I am sending u can use then for Uploading data from excel to sap.
    DATA: lv_filename TYPE rlgrap-filename.
    FIELD-SYMBOLS : <fs>.
    DATA : l_intern TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA : l_index TYPE i.
    PARAMETERS : startcol TYPE i ,
          startrow TYPE i ,
          endcol TYPE i ,
          endrow TYPE i .
    PARAMETERS: p_flnam LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_flnam.
      CALL FUNCTION 'F4_FILENAME'
    EXPORTING
       program_name        = sy-repid
      FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_flnam .
      MOVE p_flnam TO lv_filename.
    Uploading the flat file from the desktop
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                      = lv_filename
          i_begin_col                   = startcol
          i_begin_row                   = startrow
          i_end_col                     = endcol
          i_end_row                     = endrow
        TABLES
          intern                        = l_intern
    EXCEPTIONS
      INCONSISTENT_PARAMETERS       = 1
      UPLOAD_OLE                    = 2
      OTHERS                        = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT l_intern BY row col.
      LOOP AT l_intern.
        MOVE l_intern-col TO l_index.
        ASSIGN COMPONENT l_index OF STRUCTURE itab TO <fs>.
        MOVE l_intern-value TO <fs>.
        AT END OF row.
          APPEND itab.
          CLEAR itab.
        ENDAT.
      ENDLOOP.
    I hope it will help u.
    Regards
    Nayan

  • Upload data from multiple worksheets of excel file into SAP by using MIME?

    Hi all,
    I'm trying to getting the data from a multiple worksheet excel file by usin the MIME Repository.
    First of all i realizied it like [here|http://abap-explorer.blogspot.com/2008/12/upload-data-from-multiple-worksheets-of.html] in a normal ABAP Report.
    By trying to transfer the code to a WebDynpro Component, i get problems.
    With this part of code, because ActiveX is not allowed in our Webbrowser. So i have to find another solution to get the data from the excel file.
    CALL METHOD c_oi_container_control_creator=>get_container_control
    IMPORTING
    control = iref_control
    error   = iref_error
    I tried to rebuild this solution in webdynpro. But it dont works.
    So my next step was trying to Read the Excel sheet directly from MIME by getting the Content (XString).
    But there is no useful information Just a mix out of '######' and other symbols.
    By converting it into String the same problem.
    Maybe someone has an idea how to rebuild [this code|http://abap-explorer.blogspot.com/2008/12/upload-data-from-multiple-worksheets-of.html] in Webdynpro that it works correctly.
    Currently Im Using the Fileupload UI Element. All Works fine. I can Upload the Excel file to MIME Repository and i can open it from there.
    But i cant get the same clear informationen from the file, to write it later in a Database, like before without webdynpro.
    i hope someone can help me.
    Edited by: Sascha Baumann on Apr 20, 2009 4:28 PM

    You can't read the native binary Excel Format in server side ABAP.  The functions and classes that did this in Classic Dynpro used OLE Automation via the SAPGUI Control Framework to remotely control Excel to read the data.  Because in the browser you have no connection to the SAPGUI or are sandboxed inside the browser; the same functionality is not possible. 
    I would suggest that you look into saving the Excel file as a open, text format.  You might be able to use XML (although the Excel XML format can be complex) to support multiple sheets. You would have to build the logic yourself (using XSLT or the iXML parser) to process the XML format back into ABAP data.

  • HI not able to see business content in sap bi7.0

    Hi GUru's,
                     We have upgraded from BW  to BI 7.0 recently,
    but we are not able to see any business content objects like 
    0sd_co1.predefined objects in rsa1 screen
    Can anyone please help me out.

    Hi Venkat,
                     did u check it out for the BI component.
    check in your sys..........
    menu -
    > system----
    > status.
    If itz not there try to install the BI component.
    Regards,
    Vijay.

  • How to upload the data from two sheets in one excel into SAP

    Hi experts,
                    My requirement is to upload the data from two sheets in an excel into an internal table.How can this be achieved.Is some OLE application has to be used?
    Thanks
    Abhishek

    Hi
    see this program will upload excel file to application.
    *& Report  ZSD_EXCEL2
    REPORT  ZSD_EXCEL2.
    types: begin of ttab ,
          fld1(30) type c,
          fld2(30) type c,
          fld3(30) type c,
          fld4(30) type c,
          fld5(30) type c,
          end of ttab.
    data: itab type table of ttab with header line.
    selection-screen skip 1.
    parameters: p_file type localfile default
                'C:\test.xls'.
    selection-screen skip 1.
    at selection-screen on value-request for p_file.
      call function 'KD_GET_FILENAME_ON_F4'
           exporting
                static    = 'X'
           changing
                file_name = p_file.
    start-of-selection.
      clear itab. refresh itab.
      perform upload_data.
      loop at itab.
        write:/ itab-fld1, itab-fld2, itab-fld3, itab-fld4, itab-fld5.
      endloop.
    * Upload_Data
    form upload_data.
      data: file type  rlgrap-filename.
      data: xcel type table of alsmex_tabline with header line.
      file = p_file.
      call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           exporting
                filename                = file
                i_begin_col             = '1'
                i_begin_row             = '1'
                i_end_col               = '200'
                i_end_row               = '5000'
           tables
                intern                  = xcel
           exceptions
                inconsistent_parameters = 1
                upload_ole              = 2
                others                  = 3.
      loop at xcel.
        case xcel-col.
          when '0001'.
            itab-fld1 = xcel-value.
          when '0002'.
            itab-fld2 = xcel-value.
          when '0003'.
            itab-fld3 = xcel-value.
          when '0004'.
            itab-fld4 = xcel-value.
          when '0005'.
            itab-fld5 = xcel-value.
        endcase.
        at end of row.
          append itab.
          clear itab.
        endat.
      endloop.
    endform.

  • How to install Business Content of SAP BW

    Hi BW guru's
    Can anyone tell how to install business content in bw.
    we have installed central instance , data base instance and bw component then stuck up can any one help where and how to install Business content
    Thanks in advance
    Regards
    Srini--

    Hi Srinivas,
    To install and activate the business content, you can do that using RSA1 and then going to the business content tab. select the required objects and drag and drop them to the right side window. Then click on the Activate and install button to install the business content.
    You can make use of the grouping option available, to install the required objects together.
    Hope this helps...let me know if you need any further info on this.
    Best Regards,
    Nene.
    <i>Dont forget to assign the points if the answer is helpfull.</i>

  • Business content for SAP Manufacturing Integration & Intelligence (SAP xMII

    Hi,
    Our requirement is to extract data from SAP xMII into BW. Are there any pre-configured extractors available to extract data for OEE, Down time etc.  Are there any standard cubes / reports available in BI content that can be installed?
    Appreciate your inputs.
    Thanks in advance.
    Best Regards,
    Meera

    Thanks AHP for pointing out.
    From BW help link as below
    http://help.sap.com/saphelp_bw33/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    go to BI Content > Financials > Financial Accounting > Asset Asset Accounting
    for Assets
    go to BI Content > Financials > Controlling > Overhead Cost Controlling > Overhead orders
    for Internal Orders
    Hope this time it is fine.
    Cheers
    Anurag

  • Uploading data from excel sheets through BDC's into sap system

    hi guys,
    can you please help me with this. As we use gui_upload to upload data from flat file to sap system, which function module you use to upload data from Excel sheet to sap system through bdc's

    hello pavan,
    welcome to SDN
    check the below program
    REPORT ZEXCEL_TO_INTERNAL .
    data: begin of itab occurs 0,
          name(20) type c,
          addre(20) type c,
          end of itab.
    DATA : ITAB1 LIKE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    DATA : B1 TYPE I VALUE 1,
           C1 TYPE I VALUE 1,
           B2 TYPE I VALUE 100,
           C2 TYPE I VALUE 9999.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      EXPORTING
        FILENAME                   =
        'C:\Documents and Settings\administrator\Desktop\ppcon001bd_24.xls'
        I_BEGIN_COL                   = B1
        I_BEGIN_ROW                   = C1
        I_END_COL                     = B2
        I_END_ROW                     = C2
      TABLES
        INTERN                        = itab1
    EXCEPTIONS
       INCONSISTENT_PARAMETERS       = 1
       UPLOAD_OLE                    = 2
       OTHERS                        = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at itab1.
    write:/ itab1.
    Endlop.
    Regards,
    Naveen

  • Prob in transferring the chinese texts from the text file (UTF-8) into SAP

    Hello SAP Experts ,
    We are using 4.6 C version
    I created a ABAP to upload Chinese Chars from a text file to SAP Database. The coding that I use to read the text file is showed as following:
    CALL FUNCTION 'WS_UPLOAD'
           EXPORTING
                CODEPAGE                = '8400'
                FILENAME                  = P_FILE
                FILETYPE                   = 'DAT'
           TABLES
                DATA_TAB                = LT_FILE_ADD_DATA
           EXCEPTIONS
                CONVERSION_ERROR        = 1
                FILE_OPEN_ERROR         = 2
                FILE_READ_ERROR         = 3
                INVALID_TYPE            = 4
                NO_BATCH                = 5
                UNKNOWN_ERROR           = 6
                INVALID_TABLE_WIDTH     = 7
                GUI_REFUSE_FILETRANSFER = 8
                CUSTOMER_ERROR          = 9
                OTHERS                  = 10.
      IF SY-SUBRC NE 0 .
      ENDIF.
    I use ABAP debugger to check the field values of the internal table .  But, the values of the internal table which contains chinese chars are changed to some other Chinese characters . How to fix this problem?
    I have used ASC filedatatype , but it doesn't work .
    Thanks for your reply . 
    Regards,
    Chopra

    Hi
    Not sure it will help. Please  check the link below.
    [http://www.sapfans.com/forums/viewtopic.php?f=23&t=40365]
    ~~~Ganesh Kumar K.

  • E-recruitment business content

    Hi,
    Does anyone know if there is any standard business content available for e-recruitment, and where i can find this.
    Regards
    Forhad

    Hi Forhad,
    SAP delivers a business content for sap e-recruiting. But this content has not been updated since E-recruiting 300 and contains only 4 DSOs. So using it for a serious reporting system is not possible. It is quite similar like the Infosets for e-recruiting reporting, it's delivered but you can get every information from it easier through opening a db table or have to build yourself if it is more complex then this.
    There are roumors that EhP6 might deliver a new content but I will believe this only if I see this with my own eyes. 
    Best regards
    Roman

  • Data extraction into sap table  from legacy oracle database

    Hello All,
        I have a scenario where I have two different software systems (SAP and xyz systems), where a intermediate table will be created in between the two systems that is shared. Data will be updated by the xyz systems into this shared table. Now, my questions regarding this shared table.
       1) Can we write some program or something to get the data from shared table to update the SAP?
       2) If possible send me the suggestions
       3) Please also send me the sample code to get the data from the shared table
    Thanks in advance,
      SDN powered

    this shared table should be compatiable to sap fields...write code to fetch data from this table and assign data to appropriate fields in SAP and insert the data into sap.
    1. Push mechanism
    Write a RFC on SAP side to insert entries into the table.
    Call the RFC from xyz application passing the data you want to insert.
    2. Pull mechanism
    Write a ABAP Program, where you can somehow read the data of the xyz application and insert data into the table.
    3. Flat file
    Dump the data from xyz application into the file.
    Write a ABAP program to read the file and update the table.

Maybe you are looking for

  • Bottom part of touch screen on 2nd gen isn't responsive

    I bought a used iPod Touch 2nd Gen MC model to find that the bottom part of the screen (maybe 1cm from bottom up) is completely unresponsive. The iPod itself is in great conditon, and it works completely otherwise. I took it too the Apple Store but t

  • Generated Code Problem?

    So now, when I try to create an instance of my bean Context art3ic = new InitialContext(env); PersonHome pHome = (PersonHome) art3ic.lookup("Person"); Person pRemote = pHome.create(); <---- Exception I get an exception saying I'm trying to find a pri

  • Strange iCal icon in dock.

    After a recent update to OS 10.5.8, my iCal application has worked fine, but the icon in the dock looks super strange. I'm not sure how to post a photo of it, but to describe it, the "Jan" and the "10" (of today's date, obviously) are there, but ther

  • Error -69, pls help..

    pls help me.. everytime i try to sync my iphone to update or upgrade to 4.3.1, it appears "The iphone cannot be synced. An unknown error occured (-69)." what do you mean by that? what should i do? it's been a month or two that i can't sync my iphone.

  • HT5704 Hi, Two recent updates for my iPhone have caused crashes (down the white lead via iTunes).I have "fixed" but not sure of the cause?

    Hi, Two recent updates for my iPhone have caused crashes (down the white lead) via iTunes. I have "fixed" but I don't know the cause? Each time the update does n't complete. The download does n't happen. The computer & internet connection are good. I