Where are transfer rules created in bi

I am new to BI and does not know how to create transfer rules ...help me

Hi,
Basically the source system is connected to BW thru DataSource. The fields from this DataSource are mapped with the fields in BW thru Transfer Rules.
The flow is like this..
Source System (DataSource) --> Infosource (Transfer Structure - Transfer Rule - Communication structure) --> Update Rule --> Data Target
Now when you create InfoSource in BW, you map a DataSource to it, then in Transfer Rules you create the mapping of fields.
Hope you are getting the flow.
Regards,
Yogesh

Similar Messages

  • Migration of Transfer Rules ( Create Transformation)

    Iam loading master data using direct update through 3.5 datasource. Now i want to migrate the data-source as well as the transfer rules.
    First thing i do is right click on the transfer rules Additional Functions--> Create transformation
    I get the following message
    " Initial error occurred during generation of the transformation "
                      Message no. RSTRAN667
    I tried deleting the transfer rules and recreating it, i get the same problem. I think first i need to create transformation against the transfer rules then i need to migrate the datasource.
    I also tried just migrating the datasource and the transfer rules are gone.
    The same procedure i tried with Business Content master data datasource and that one works.
    Note: we are on Suport pack 12.
    Please let me know if iam missing anything.
    Your suggestions are highly appreciated..
    Thanks

    Thanks for your message..
    But the thing iam doing is Iam migrating 3.5 stuff to 7.0 iam not creating transformations on the datasource.
    In order to attain that migration ,first iam migrating the transfer rules as iam using direct update for master data. While iam doing that Iam getting the error message.
    Voodi I'll look at that option and see if i can accomplish my migration by first migrating DS and then transfer rules....
    But did u get this message for direct update of the master data...
    I tried creating a generic master datasource even for that one also iam getting the same message ...while migrating the transfer rules....

  • Where are temporary files created for "image capture"?

    Hi all
    I have been using image capture with no problem whatsoever, until recently. I was scanning a big file and while it was saving it or something I closed the lid of the computer and interrupted the scan. Now the scanner can do a preview but is no longer able to "scan" the file that i see perfectly through preview. I think that the problem is that there is a corrupt temporary file somewhere that needs to be manually deleted. If you know where such files are stored or if you have a better idea, please let me know.

    You may be on to the correct solution. I've seen this problem with a big printing job that a user had to cancel and then had to "go in" and delete the print job before they could print again. On the Mac, there is something called CUPS (something Unix Printing System) and it has a role in printing and I believe faxing. It "might" play a role in scanning through Image Capture but I'm not sure. Anyway give it a look and see if there is an incomplete scan job in there that you can delete.
    Note: this looks like a website URL but it leads to CUPS on your Mac.
    http://127.0.0.1:631/jobs/
    This may not be applicable to scanners but it's worth a look.
    Regards,
    Steve M.

  • How to make use of a global internal table in SAP BW during transfer rules

    HI friends,
    I am ABAP consultant working on some APO info cubes. I have an issue during the upload of planning area data into APO info cube.
    Please help.
    I am using a transfer routine to find the TECHWEEK from a data base table ZGC_CALWEEK based on the on the calender month and calender week.
    Code I am writing is like below.
    *       FORM COMPUTE_/BIC/ZCALWEEK
    * Compute value of InfoObject ZCALWEEK
    * in communication structure /BIC/CSZT6DPPA
    * Technical properties:
    *     field name      = /BIC/ZCALWEEK
    *     data element    = /BIC/OIZCALWEEK
    *     data type       = NUMC
    *     length          = 000006
    *     decimals        = 000000
    *     ABAP type       = N
    *     ABAP length     = 000006
    *     reference field =
    * Parameters:
    *  -->  RECORD_NO       Record number
    *  -->  TRAN_STRUCTURE  Transfer structure
    *  <--  RESULT          Return value of InfoObject
    *  <->  G_T_ERRORLOG    Error log
    *  <--  RETURNCODE      Return code (to skip one record)
    *  <--  ABORT           Abort code (to skip whole data package)
    FORM COMPUTE_/BIC/ZCALWEEK
      USING    RECORD_NO LIKE SY-TABIX
               TRAN_STRUCTURE TYPE TRANSFER_STRUCTURE
               G_S_MINFO TYPE RSSM_S_MINFO
      CHANGING RESULT TYPE /BIC/OIZCALWEEK
               G_T_ERRORLOG TYPE rssm_t_errorlog_int
               RETURNCODE LIKE SY-SUBRC
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel datapackage
    *$*$ begin of routine - insert your code only below this line        *-*
    * DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
    DATA: LV_WEEK         TYPE ZGC_CALWEEK-APOWEEK,
            LV_MONTH        TYPE ZGC_CALWEEK-APOMONTH,
            LV_TECH_WEEK    TYPE ZGC_CALWEEK-TECHWEEK.
      LV_WEEK   = TRAN_STRUCTURE-CALWEEK.
      LV_MONTH  = TRAN_STRUCTURE-CALMONTH.
      SELECT SINGLE TECHWEEK INTO LV_TECH_WEEK
        FROM ZGC_CALWEEK CLIENT SPECIFIED
        WHERE  MANDT = SY-MANDT
        AND  APOWEEK  = LV_WEEK
        AND   APOMONTH = LV_MONTH.
      IF SY-SUBRC IS INITIAL.
        RESULT = LV_TECH_WEEK.
      ELSE.
        RETURNCODE = 1.
        ENDIF.
    *$*$ end of routine - insert your code only before this line         *-*
    ENDFORM.
    There are more than 50-80 million records that wil be transferred from planning area to info cube. The select statment is giving pathetic performance as this has to run 50-80 million times.
    After adding the select statment to find the TECHWEEK it is taking 4 times the time that used to take before writing the select statment.
    Is there a way that I can first fetch the data from ZGC_CALWEEK to one internal table and that internal table can be used using read statment during the transfer routine instead of writing select statement here.
    Please help in this case?

    Hi Ashutosh,
    Thanks for the reply,
    The structure of the ZGC_CALWEEK is as below. I have already created a secondary index on the table for this table for the fields APO WEEK and APO MONTH. This didn't help much on the performance.
    I am also planning to keep the ZGC_CALWEEK database table to be fully buffered and this may definitely improve the performance but I need to reduce the data base hits as less as possible.
    MANDT                           MANDT                           CLNT     3     0     Client
    TECHWEEK                           ZTECHWEEK                           NUMC     6     0     Technical Week
    FROMDATE_TECH     DATUM                           DATS     8     0     Date
    TODATE_TECH     DATUM                           DATS     8     0     Date
    APOWEEK                           /BI0/OICALWEEK     NUMC     6     0     Calendar year / week
    FROMDATE_APO     DATUM                            DATS     8     0     Date
    TODATE_APO     DATUM                            DATS     8     0     Date
    APOMONTH                           /BI0/OICALMONTH     NUMC     6     0     Calendar year/month
    The table ZGC_CALWEEK is in APO system, where the transfer rules are being executed.
    As you mentioned START ROUTINE, In the start routine Can I create an internal table let's say GT_CALWEEK with structure ZGC_CALWEEK and pull all the records (I have a max of 2000 records in this table) from ZGC_CALWEEK to GT_CALWEEK and Can I used the same internal table GT_CALWEEK in the transfer routine to read the TECHWEEK from internal table.
    Thank you very much again for you reply. Any help regarding this would be greatly appreciated.
    Best regards,
    Siva

  • Unable to find the Transfer Rules in Transport Connection

    Hi Guys,
    I am on BW 3.5.
    I am unable to find the Transfer Rules created in transport Connection. I need to Transport these changes. I was able to Transport Communication structure and the Infosource.
    I tried activating the Transfer Rules and also replicated the datasources but it does'nt prompt me for a Transport request.
    Hence I need to explicitly Transport by going into Transport Connection where I am unable to find the object.
    Please help me on how to include this object in the Transport request created.
    Thanks in advance.
    Regards,
    Tyson

    Another way is to go the transfer rules or update rules or any object which you want to transport->extras on top>Object direct entry>change the package from $temp>rest you know
    Cheers,
    shana
    Assigning pts is the way of saying thanks in SDN

  • Diff. bt update rules & transfer rules....,

    Hi all,
    wht is the diff. bt update rules & transfer ruls...,
    mainly i want to know that when we use for update & when for transfer rules we have to choose........,
    let me know from any one plzzzzzz...,
    Regards,
    Swetha.

    Hi Swetha
    Transfer rules :use the transfer rules to determine how you want the transfer structure fields to be assigned to the communication structure InfoObjects
    Update Rules :Update rules specify how the data (key figures, time characteristics, characteristics) is updated to data targets from the communication structure of an InfoSource. You are therefore connecting an InfoSource with a data target.
    Basically update rules are specific to Data Targets where as Transfer rules applies to InfoSource.When you want rule to apply to all the datatargets from a Infosource ,you write it in Transfer rules.
    Hope this helps.
    <i>Sudh</i>
    Assign points if this helps

  • Cannot find transfer rules!!!

    Hi,
    I have to delete an InfoObject which is no longer required.
    when I right click and hit delete I get an error message that the IO is being used in a Transfer Rules.
    I have searched for that transfer rule but can't locate it.
    Is there any way to know where this transfer rules is?
    Thanks
    NEWBW

    I Got the following message when I looked for it in the Metadata Repository. Please help me proceed.
    InfoSource ZZXXXX (Master Data) is not known
    Message no. RSAR208
    Diagnosis
    The InfoSource is not known.
    System response
    The transfer rule maintenance cannot be called.
    Procedure
    If this concerns an InfoObject for the InfoSource, check whether an application component is assigned to the InfoObject. If not, assign an application component to the InfoObject.

  • Transfer rules issue for 0COSTELMNT_0102_HIER

    Hello Experts,
    The transfer rules doesnot exist for 0COSTELMNT_0102_HIER. We have only 2 fields(0COSTELMNT and 0CO_AREA) in Transfer Structure. The data source is in modified version.
    When I try to include the filed for hierarchy table, it's not displaying activate simbol at highlighted. Unexpectedly we lost the transfer rules.
    Can anyone give idea how to activate the datasource and build transfer rules with hierarchy fileds like 0HIENM,0HIER_VERS,0DATETO, 0DATEFROM ...etc.
    Please give idea to resolve the issue. Any help?
    Thanks,
    Venky

    Hi Navneet,
    I am also facing the same issue
    I am using 0COSTELMNT_0102_HIER, now there are transfer rules I can see but no communication structure it is showing.
    Apart from that it is not active and I have installed it again in SAP R/3 and replicated but no use
    When I go to edit also I am not able to activate.
    It is working fine I have loaded hierarchies in it

  • Transfer rules are mandatry While creating Info source

    Hello BI Guru's
    Is transfer rules are  mandatry while creating Info Source in BI.
    Please currect me if i am wrong.
    I have created one genric extracter and want to create info source for that in BI and planning to create Transfermation btween Datasources and infosource and from info source loading data target through transfermation.
    Please advise me which way is best way to follow the desing?

    hi,
    in BI 7.0 transfer rules and update rules are not mandantory,
    DataSource -> Transformation -> (DTP)-->Data Target
    instead of TR/UR-- transformation is there
    if helpful asign points
    regards
    harikrishna.N

  • ?Difference: To create 2 Transfer Rules or 2 Update Rules

    Hi,
    I need to load 2 similar flat files to a single ODS. Only change is that, during the load, in the first file, File1, I want to set a field, FileType, as File1; and during the load of the second file, File2, I want to set FileType, as File2.
    One update rule which loads File1, already exists. I wanted to create the second update rule(for File2), but I encountered problems because I kept receiving a message that the update rule already exists for the ODS.
    I went to the InfoSource tree and under the infoSource for File1, I could see the transfer rule; at this point, I was able to create a second transfer rule where I was able to set the second constant while loading File2, as FileType as File2.
    What is the effect of creating 2 transfer rules for the InfoSource, as against creating 2 update rules for the ODS, which was I originally wanted to do?
    Thanks

    Hi Amanda,
        If both file formats are same, it better to populate File1 or File2 dynamically then a constant. Every time not supposed to create new transfer rules and data soruce for new flat file.
        Instead of constant, write a routine for File Type. Based on file name sinply pass File1 or File2 in routine. Or
        Use function module "BAPI_IPAK_GETDETAIL" to get infopackage details including file name. from flat file name also File type can be derived.
        In this way no need to maintain multiple transfer rules or update rules. Existing flow is enough.
    Hope it Helps
    Srini

  • Error while creating transfer rules.

    Hi
    I am creating transfer rules and a error  message says " IS_00_BB does not exist". (IS_00) is the desc. of the info source)
    can someone help me on this????
    I had created transfer rules for another cube in the same info area, but no error had come then..
    Thanks.
    Aswath.

    Hello,
    The problem you are reporting could be that you are using the Transfer 
    Method 'IDOC' for the affected transfer rule(s). You should use the    
    'PSA' transfer method (rather than the 'IDOC' method), as the IDOC     
    method is very old.                                                                               
    If so, please change the transfer method in the affected transfer rules
    to 'PSA', then try to activate the transfer structure again. This should
    solve the problem, in which case, please let us know by clicking on the
    'Close' button.                                                                               
    If the problem persists please create the report that is relevant for your system release
    as per the SAP note 493422 and execute the report in your system, the report can be
    created in se38, please talk to your basis team if you have problems creating the report.
    Best Regards,
    Des

  • Transfer rules are not exist for ECC Quality source system in BI Dev

    Hi,
    I Connected BI Dev system To ECC Dev and installed the sales, purchasing,... data flow, but here i am not getting the quality data to show the reports, to get Quality data  I established the connection between BI Dev and ECC QA, while installing the transfer rules for the ECC QA data sources there no transfer rules are exist(only some of them exist) in the business content, but all the update rules,... are exist, when i right on the data source say create transfer rules it is proposing App praposal.
    When i select source system as ECC dev while installing the transfer rules i can see all the transfer rules, but when i select source system as ECC QA i can see only some transfer rules.
    only problem with transfer rules(some of them exist), for remaining all objects are properly existing in business content for ECC QA source system.
    Regards,
    chandra

    Hi Fayzrakhmanov
    Thanks for the quick reply. We are not moving the stuff to QA. We are only connecting QA ECC system to BI Dev. We already have datasources moved to ECC QA and created source system for ECC QA in BI Dev.
    The problem is I am not able to get Business Content transful rule for new source system. We I can find some but not all unlike development.
    Help on this would be appreciated.
    Thanks

  • HT4859 i backed up files created by documents app on ipad on icloud. where are these files?

    I created a couple of files using free version of documents app on ipad. Now i want to transfer them to imac for furhter editing. I used back up on ipad to back up on icloid. I logged on icloud but cannot find these files. it gives me icond for mail, contacts, etc. where are these files stord on icloud? if i cannot get on icloud, what is the other way to get these files on imac?

    Welcome to the Apple Community.
    Which free documents app.

  • Where and how to create business rules?

    Hi All,
    1) Where and how to create business rules?
    2) How to configure Rule Engines (Ex: JRULE Engine or any other Rule Engines)?
    3) Whar products are available for Rule Engines?
    Thanks in advance

    Hi,
    You have some options on business rules.
    If you just want to create business rules that are easy for business owners to edit without a lot of training, Oracle BPM has a simple business rules creation and end user edit capability. The benefits to using the rules that come with Oracle BPM are:
    <li> they are simple and easy to edit
    <li> end users can get up to speed quickly to edit them
    <li> when changed, the business process is immediately impacted
    <li> they can use the Oracle BPM business parameters that also come with the product
    Drawbacks are:
    <li> you can only use Project variables as the variable content inside of them
    <li> if a company already has a business rules engine, they are different that the company's standard
    Business rules engines have been used with Oracle BPM. If you are a consultant, first ask if there is a standard business rules engine that the company already has purchased that they use (e.g. iLog from IBM, Corticon...). If this is the case, you typically integrate to the rules using a web service interface that the business rules engine exposes.
    If they do not already have a business rules engine, consider Jrules. The benefits are:
    <li> it is a part of the Oracle BPM Suite that they might have purchased
    <li> version 11g of the Jrules is coming out soon with a friendly front end
    Hope this helps,
    Dan

  • Transfer rules are missing for selected source system in BI content

    Hi All!
    The problem is: in BI content (Release 704, level 0003, SP SAPK-70403INBICONT) when I select needed source system (for example, A) only I can not find any transfer rules (0RPM area, 3.X transfer rules). When I select more than 1 source system (B, C..), I can see lot of different transfer rules for 0RPM area, but with assignment to another systems (B, C..). How can I get in Business Content transfer rules for data sources from needed source system (A)? Any help appreciated!
    Regards, Iryna.

    Hi Rathy!
    Thank you very much for your quick help! Usually I do the same. Now I faced with BI system, where data source were already activated in system A and replicated. I can see all needed active sata source un BI already. But I can not see transfer rules in content!
    What you can advise?
    Reagrds, Iryna.

Maybe you are looking for

  • Missing cutting lines in print

    When I printed a CD-inlay in former versions of iTunes, cutting lines were printed to make a precise cut to make an inlay for a slimline box. Since version 10.??? those cutting lines are disappeared. WHY? Does it make the update quicker/cheaper/bette

  • Archive guided procedure process and maintain history attributes

    Hi All, We have the need for a workflow through portal with several approval steps. We want to use guided procedures but cannot find whether it answers to our following requirements: - When a process is completed, we want to be able to see some detai

  • Firefox will displays no tool bars or address windowk ony a search window.

    When executed, Firefox displays only a search window in the top screen bar -- no tool bars, no address window, no menu bar. The default home page is displayed. I uninstalled Firefox, (leaving personal data preserved), downloaded and installed the cur

  • Nokia PC Suite new version 7.1.180.64

    Looks like there is a new version of Nokia PC Suite available today: 7.1.180.64.  Is there a change log anywhere?

  • Standard to Admin

    I just got OS X Yosemite, and somehow changed myself from the Admin to Standard when I attempted to set up another Admin account for another user. I cannot Unlock administration it does not accept either user name or passwords...Would it better to re