How to  upload Transaction data from source system to BI 7.0

Dear friends,
I want to know how to  upload Transaction data from source system to BI 7.0.
if anybody having step by step material for this process ,please send it to my
mail id.
[email protected]
[email protected]
Thanks,
D.prabhu

Hi,
it works in the same way as before in case you are not using the new features like the dtp and the transformations. Using the new features, you schedule a infopackage to load the data up to psa and schedule a dtp to post the data to the targets.
regards
Siggi
PS: We want to share knowledge in sdn and not keeping it private by having the information sent to our email adresses.

Similar Messages

  • How to upload the data from legacy system database to SAP data base

    Hi.
    We are doing analysis of Legacy system and which needs to be converted to SAP system i.e. SAP implementation.
    I just want to know , how we migrate the existing whole data( from legacy system) into SAP system.
    and which method is the best method to use data migration from legacy to SAP system if data legacy data amount is huge.
    Please suggest me.
    Thanks.

    Hi
    We can either use the BDC or BAPI or LSMW  or Direct Input techiniques for the data transfers.
    The combination of both Session and Call transaction can be used to achieve this that includes the error handling also. This invloves the screen interaction.
    These days, BAPIs are used to overvome some upgrade problems. For easy upgradation, we cna go for BAPIs. Here ther is no screen intercation.
    LSMW mainly used for master data transfers using some standrad programs.
    As per your client or company desicions  we can choose any of them.
    Please refer to these links for more understanding -
    BDC Vs LSMW -
    BDC VS LSMW
    BDC Vs BAPI -
    BDC VS LSMW
    Thanks & Regards,
    Chandralekha.

  • Error in Process Chain while extracting data from source system

    Hi All,
    Dail we are facing problem while retrieving the data from source system for the data source 0TB_AMOUNT1 in the process chain, it is giving error "Function module BANK_TMC_API_SIM_GET does not exist Furnction module". when I repeat the step than it is going fine.
    Please let me know why this error is coming for first why it is not coming after repeating the step?
    Thanks & Regards,
    Murali.

    Hi Murali,
    Hope you are doing good..
    Is it a full or Delta load on a daily basis? Did you check if the FM exists in your system?
    Did you try debugging the load in source system and check if the extractor is trying to call FM you mention.
    If possible please post the exact error message you are receiving so that we could get an idea whats the error and why you are encountering it.
    As of now what i can suggest is, go to RSA2 in source system, give the datasource name and check if the extractor code has FM in it.
    Regards,
    Anil Pragada.

  • How to upload the data from excel(3 tabs) file to sap environment

    Hi all,
    This is Mahesh.
    how to upload the data from excel(3 tabs) file to sap environment (internal tables) while doing bdc.

    Hi,
    The FM 'ALSM_EXCEL_TO_INTERNAL_TABLE' makes it possible to load a worksheet into an internal table in ABAP.
    However, if you want to get the data from several worksheets, I think you are stuck with OLE access to your Excel Workbook...
    You can find a solution for 2 worksheets in this post :
    TO UPLOAD DATA FROM 2 EXCEL SHEETS INTO TWO INTERNAL TABLES
    I think you can easily modify it to handle any number of worksheets.
    Hope it helps !
    Best regards,
    Guillaume

  • How to take the data from sage system to sap r/3

    hi expects,
              how to take the data from sage system to sap r/3? which adapter is to be used?what is the format of data in sage system?how the scenarios will work ? please help me in solving this problem?

    hi rohit,
    the data transfer can be done by using SOAP adapter
    do chk this link
    http://www.sage.org/lists/sage-members-archive/2001/msg01718.html
    http://www.sage.org/lists/sage-members-archive/2001/msg01739.html
    thanx
    Sampath

  • Error Occures while loading data from Source system to Target ODS

    Hi..
    I started loading Records From source system to target ODS.while i running the job i got the following errors.
    Record 18211 :ERROR IN HOLIDAY_GET 20011114 00000000
    Record 18212 :ERROR IN HOLIDAY_GET 20011114 00000000
    sp Please help me in these following Errors..
    Thanks in advance,

    Hello
    How r u ?
    I think this problem is at the ODS level, ZCAM_O04 is ur ODS Name.
    Could u check the ODS Settings, and the Unique Data Records is Checked or Not ?
    Best Regards....
    Sankar Kumar
    +91 98403 47141

  • 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 Delta Queue fetches data in source system.

    Hello Experts,
    SMQ1 is physical storage of all transactions created in the source system. Delta Queue(RSA7) fetches data from SMQ1. In case of Queued and Unserilized V3 delta where LBWQ and SM13 come into picture. Can you please clarify my doubt.
    Thanks in advance.
    Zakir.

    solved question

  • Steps to Extract data from Source System

    Hi,
    I want to use business content object 0PA_C01. I have implemented it in the SAP BW system wanted to know how t=do I extract the data from R/3 system now to the cube. I am new to extraction so kindly help me out in this.
    Thanks.

    Hi SAPBILearner,
    Genric Extraction Steps:
    1) In R/3 side Create a Data source by use of RSO2 tcode
    Select datasource type here, Give datasource name click create button
    2) Specify description
    Specify your table name
    Choose the Application Component(like SD, MM, PP)
    Click SAVE it takes to next screen
    3) Choose the fields for visible and hidden
    SAVE it.
    Your datasource has been created
    4) In RSA3 (Extract Checker) you can check your datasource it contains data or not
    IN BW SIDE
    1) First Replicate your datasource
    2) Create InfoArea--> Info objects and all
    3) Create InfoSource and assign this R/3 Datasource
    4) Create info package to load data.
    LO EXTRACTION STEPS
    ===================
    1) In R/3 side, First delete the setup table (LBWG)
    2) RSA5 --> transfer datasource
    3) RSA6 --> Verify transferred datasource available or not
    4) LBWE --> Maintain datasource
    5) OLI*BW --> Fill setup table
    6) RSA3 --> Extract checker
    In BW side
    1) Replicate datasorce
    2) Asssign Infosource , activate datasource
    3) Create infopackage to load data
    Thanks
    Mrityunjay

  • How to transfer Cats data from legacy system to SAP System

    Hi,
    I need to export data to CATS from Legacy system.What is the procedure for that?
    How do I define field?
    Please help it is urgent.
    Thanks,
    Kavita

    Hi Kavita,
      Check the link below.
       http://sap-img.com/sap-data-migration.htm
      Reward points if it helps.
    Regards
    Karan

  • How to upload the data from XML file to SAP database using IDOC

    Hi,
    I need some steps  to upload  data from XML format file from other directory to SAP database using IDOC.
    how to approch this please if any one knows give me ans
    it will be a great help ful to me
    Thanks in Advance
    Mallik

    Thank you vijay,
    But i heard that by using this Fun modules, when we are passing IDOC in back ground schedule,  so some other depended FM not supporting, so how to approach this and how to avoid this problem. 
    Have you worked on this before if any one worked on this please help me out
    And thank you once again for your valuable information
    Best Regards
    Mallik

  • Transfering data from source system to bw

    I am sending data from two source systems into single data target in bw. For ex:- think that there are KPI's in the first source system & another 4 in the second source system.When i load it into bw i should see the 8 KPI's in a single record is it possible.
       please some one can help me in this regard i will be thankful to them.
    S.S 1(4 KPI's)
                  ]-------BW(DT)8KPI's in the same record
    S.S 2(4 KPI's)

    I am sending data from two source systems into single data target in bw. For ex:- think that there are KPI's in the first source system & another 4 in the second source system.When i load it into bw i should see the 8 KPI's in a single record is it possible.
       please some one can help me in this regard i will be thankful to them.
    S.S 1(4 KPI's)
                  ]-------BW(DT)8KPI's in the same record
    S.S 2(4 KPI's)

  • Problem in extracting data from source system

    HI
       I am comparing source system and data in bW for a particular datasource.In this process in source system transaction RSA3 when i am trying to extract data its not showing the exact count.I couldnt able to understand the setting options like Datarecord/calls & Displa extr.calls in transaction RSA3.can some one assist in this..?

    Vara Prasad,
    I do know about the popup , but then the popup is displayed only AFTER the extraction completes. Asusming that you have about 10 million records - I cannot find the number of records without actually extracting it and my RSA3 will fail because it is too large of RSA3 , I was talking about if there was a method by which I could fins the number of records alone without extracting the data / running RSA3.
    Also if your extractor has 20,000 records , and if you set 10 datapackets of 1000 each the popup will display 10000 whih is incorrect and you would have to increase the data packet / package size to finally arrive at the right number...

  • System slow during loading data from source system

    hi,
    I am trying to load master data from r/3 into bw in quality envirnoment by means of a process chain. The problem is it being a master data load is consuming a lot of time. My development and quality environments are maintained on the same server. I doubt about this being something related to memory. If anybody could mention the ways through which memory can be monitored along with the reason for the slow nature of the system would be very helpful.
    Source system: R/3.
    Environment    : Q03(quality)
    Load               : Master data(full load)

    Hi,
    I will suggest you to check a few places where you can see the status
    1) SM37 job log (In source system if load is from R/3 or in BW if its a datamart load) (give request name) and it should give you the details about the request. If its active make sure that the job log is getting updated at frequent intervals.
    Also see if there is any 'sysfail' for any datapacket in SM37.
    2) SM66 get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. (In source system if load is from R/3 or in BW if its a datamart load). See if its accessing/updating some tables or is not doing anything at all.
    3) RSMO see what is available in details tab. It may be in update rules.
    4) ST22 check if any short dump has occured.(In source system if load is from R/3 or in BW if its a datamart load)
    5) SM58 and BD87 for pending tRFCs.
    Once you identify you can rectify the error.
    If all the records are in PSA you can pull it from the PSA to target. Else you may have to pull it again from source infoprovider.
    If its running and if you are able to see it active in SM66 you can wait for some time to let it finish. You can also try SM50 / SM51 to see what is happening in the system level like reading/inserting tables etc.
    If you feel its active and running you can verify by checking if the number of records has increased in the data tables.
    Thanks,
    JituK

  • How to send Org data from sender system thorugh ALE inbound switch

    Hi All,
    Could anyone please provide some input for sending the Org Data through ALE inbound switches.
    The requirement is to make changes in the distribution model BD64 so that the org data will not be passed in the filter criteria. And when we execute PFAL then the Org data should flow directly to the receiver system through ALE switches.
    Thanks in Advance.

    Hi,
    So first you need to set your distribution model in BD64  (create model views and add message type). Please refer to note 312090 to set your filter settings. After this definition, we have to distribute the source system into the target system (Edit > Model view> distribute). In the target system, we have to generate partner profiles (environment> generate partner profiles).
    So you have to create Partner profiles (transaction WE20). The best way is to define for outbound and inbound parameters into source system and target system with message type HRMD_A.
    In the source system, we have two options :
    -Transfer IDOC immediately
    -Collect idocs
    In the target system, you have also two options:
    -Trigger by background programu2026 means that once datas are distributed, we have to run RBDAPP01 to process   them.
    -Trigger immediately (do not have to run any program)
    Then after setting this distribution model, please review the way to distribute HR datas :
    1- Using transaction PFAL, sending the objects C, O, S successively in Update mode with the infotypes 1000, 1002 and 1028 only, without using evaluation paths (all existing objects).
       => The objects will then be created without relationship, and no error must be reported.
    2- Using transaction PFAL, sending the object P in Update mode.
       => As the structure objects are already present, no error message must be generated. If some are, please analyse them, and correct them before the next step.
    3- Using transaction PFAL, sending the objects C, O, S successively in Update mode (without restrictions, or only the infotype 1001).
       => The relationships which were not sent in step 1 are then distributed.
    4- The changes pointers can now be activated and processed, as the initialization has been done (steps 1 to 3).
    Please also check note 550055 for further information,
    Hope it helps,
    Kind Regards
    Christine

Maybe you are looking for

  • -36 errors, can't copy files in finder or backup to tape drive

    Does anyone know what causes -36 errors and how we can eliminate them? We need to backup our files, but have been unable to do so due to -36 I/O errors in Retrospect. Files on which this error is reported by Retrospect will not copy in the finder, ei

  • Using a variable's definition as a variable name

    I have a string variable with definition I need to use as a variable name. For example, this is super simplified: var newVariable = 'it is working'; var partOne:String = 'new'; var partTwo:String = 'Variable'; var partThree = partOne + partTwo; trace

  • Clone Stamp Problem

    When using the clone stamp it has just started  moving the whole picture rather then sampling and painting the sampled area.  Help,   What do I do to correct this.  I already tried restarting and it hasn't helped.

  • Shortcut key to LOV

    Hi, I am new to Jheadstart and I am try to create a demo version of an application in Forms. In advance search i have some list of values of an input text field that i would like to open with key like F9 or others. I Enabled Function Keys in Applicat

  • Mp3 disappears when swf file deployed online

    I made a flash website, and I wanted to have a song playing on application start. It worked when I exported locally, but when I uploaded it into a host (Deviantart.com) the audio was gone. I tried making a button and direct-linking to an mp3, but tha