Enhancing master data datasource

Hi there
Some time ago i enhanced a masterdata infosource (0project_attr) by adding new fields to a append structure. This works fine without problems. Now i needed to ad one more field. I did that without problems in the appendstructure however the new field is not displayed at the Datasource screen (TC SBIW - Datasource 0project_attr and display).
This means that the field is not moved to BW even after replication. It seems like the extract structure is not activated/generated proberly at the second enhancement.
Chris

Hi Chris,
create a little abap in se38 with the following content:
update roosfield set selection = space
where  oltpsource = <your datasource>
and    objvers = 'A'
and    field = <your fieldname>.
regards
Siggi

Similar Messages

  • Adding/Enhancing master data with a standard field?

    Dear Friends,
    I have to enhance master data 0VENDOR to add a field LFM1-LFABC (vendor ABC indicator) which is a standard SAP field in LFM1. How do i do that? How do you see which table/s the datasource 0VENDOR_ATTR is pulling data from in R/3.
    Thanks for your time and help
    Raj

    Hi,
    The procedure is like below.
    Take the datasource in which you enhance.
    1. If you enhancing in the LO datasaource, take the aprapriate communication strucute append the structure in that structure add the fields you wnat enhance.
    If you are enhancing other than LO you take extract structure append the structure and add the fields in that structure.
    2. Goto LBWE Tcode take the option called "Maintain Extract structure" take the fields which you enhanced from pool take push in to extract strucure.
    If you enhancing other than LO no need to do this.
    3. Goto RSA6, take datasource, goto change mode. The enhanced fields Hide option checked, reomove that tick and save it.
    4. Goto "CMODE" tcode, If project is already created for that enhancement goto disply mode. If the project is not created give the project name created and give the enhancemet name as "RSAP0001" and save it.
    in the component you can find 4 Function modules
    EXIT_SAPLRSAP_001 -> Transaction Data
    EXIT_SAPLRSAP_002 -> masterdata attributes
    EXIT_SAPLRSAP_003 -> Master data Texts
    EXIT_SAPLRSAP_004 -> Masterdata Hirarchies.
    Take the apprapriate FM and double click on it
    there you can find Include name. If you double click on it you can find ABAP editor.
    there we have to write the code
    example code will be like below.
    data: l_s_icctrcst like icctrcst,
    l_s_icctract like icctract,
    l_s_icctrsta like icctrsta,
    l_tabix like sy-tabix.
    case i_datasource. */ in BW 1.2B case i_isource.
    when '0CO_OM_CCA_1'.
    loop at c_t_data into l_s_icctrcst.
    l_tabix = sy-tabix.
    select single * from z0001 where kokrs = l_s_icctrcst-kok
    and kostl = l_s_icctrcst-kostl.
    if sy-subrc = 0.
    l_s_icctrcst-zfield1 = z0001-zfield1.
    l_s_icctrcst-zfield2 = z0001-zfield2.
    modify c_t_data from l_s_icctrcst index l_tabix.
    endif.
    endloop.
    when '0CO_OM_CCA_2'.
    when '0CO_OM_CCA_3'.
    when others.
    exit.
    endcase.
    This is example code.
    Thnaks
    DST

  • Customising Master Data datasources

    Hi All
    Can we Customise (add/remove field) for Master data datasources in LBWE.
    Cheers
    PB

    Hi,
    It seems you have posted this topic already..!?
    Here is your first post...
    Enhancing Masterdata Datasource
    Anyway, the answer is <b>NO</b>. <b><i>LBWE</i></b> is the <i>Logistics Customizing Cockpit</i> and is used to customized Logistics Data Sources.
    You Customize Master Data under tcode <b>RSA6</b>.
    If I have helped, grant me points...
    --Jkyle

  • Can V find Master data datasource by having Transaction data datasource?

    Hello All
    I have a datasource in r/3 side by this can v find Master data datasource?
    The Transaction datasource is 2lis_02_scl?
    how to find Master datasource for this?
    Many Thanks
    balaji

    AHP hello
    Thanks for info given
    Can v view same for customized datasources also?
    is it possible?
    so for datasource 2lis_11_vaitm,if v click on "Infosource Overview" v can view all the Infosource name,by this v can find our Master Datasource.?
    so for ex.,I can c infosource 0CUST_GRP1,so this is the datasource for Master data from r/3 side?
    Is it correct?
    Many Thanks
    balaji

  • Error in creating RSDS using transfer rules for master data datasources

    Hi ,
    when i am creating the transfermations(RSDS) using transfer rules for master data datasources while i want to migrate datasource.it is giving the error message saying that INITIAL ERROR OCCURED DURING GENERATION OF THE TRANSFERMATION.AND in the taskbar it is giving the message LOG IS BEING LOADED.
    MY QUESTION IS HOW CAN WE SEE THE LOG? AND
    PLEASE GIVE ME THE STEPS TO MIGRATE MASTER DATASOURCES.
    THANKS IN ADVANCE .

    Hi Ankit,
                  Yoy have to load data to the cube.For that you need update rules.
    Steps to load data to the cube
    1.Replicate the datasource.
    2.Assign Infosource
    3.Create transfer rules
    4.Maintain the update rules to the cube.
    5.Right click on the datasource and schedule an infopackage for it.
    Execute the Infopackage and pull the data to the cube.
    Hope this helps
    Regards
    Karthik

  • ABAP code to Enhance Master data

    Hi Friends,
    can  you send me a sample ABAP code to enhance the master data
    Regards
    Hari

    Dear Adluru Hari Varma ,
    Hereunder an example of code to enhance Master Data
    0ART_SALES_ATTR for 0MAT_SALES:
    EXIT_SAPLRSAP_002
    DATA: l_biw_mvke_s LIKE biw_mvke_s,
    l_tabix LIKE sy-tabix,
    v_satnr LIKE mara-satnr.
    CASE i_datasource.
    WHEN '0ART_SALES_ATTR'.
    LOOP AT i_t_data INTO l_biw_mvke_s.
    l_tabix = sy-tabix.
    clear v_satnr.
    SELECT SINGLE satnr FROM MARA INTO v_satnr
    where matnr = l_biw_mvke_s-matnr.
    IF sy-subrc = 0.
    l_biw_mvke_s-zzsatnr = v_satnr.
    ENDIF.
    MODIFY i_t_data FROM l_biw_mvke_s INDEX l_tabix.
    ENDLOOP.
    ENDCASE.
    Also
    the user exit code zxrsau02 to populate the new fields .say you add field zzfield1, user exit code zxrsau02 can be like
    data : l_s_custattr like BIW_KNA1_S,
    l_zzfield1 like tablexyz-fieldabc,
    l_tabix like sy-tabix.
    case i_datasource.
    when '0customer_attr'.
    loop at c_t_data into l_s_custattr.
    l_tabix = sy-tabix.
    fill the new field
    select single fieldabc into l_zzfield1
    where ....
    l_s_custattr-zzfield1 = l_zzfield1.
    modify c_t_data from l_s_custattr index l_tabix.
    endloop.
    take a look some links on enhancement
    Enhancement
    User exit
    and download pdf 'enhancements in sap bw'
    here you can find the steps ...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59069d90-0201-0010-fd81-d5e11994d8b5
    hope this helps.
    Re: enhancements
    Check in SDN you will find more programs
    Hope it helps.Revert back to me if you have any queries
    Regards
    Bala

  • How to create generic master data  datasource .

    How to create generic master data  datasource which utilises ALE change pointers for extraction of master data.

    Hi,
    For any master data lets say, Material Master, for this you need to create a view
    based on your requirement by selecting one or more tables into your view and
    keeping all the required fields in the view as viewfields and go to RS02 create
    generic data source, select the view option as source and put the view, save and
    activate, at the same time set the delta pointer as to whether Numericpointer/date/timestamp..this way you can create a generic DS then transfer the stru. and at the BW side replicate the source system..and so on..
    Hope this helps..
    Assign points if useful.
    Need further info revert..
    Cheers,
    Pattan.

  • Knowing DataSource, Cube, Query, how to identify Master Data datasource?

    Hi,
    based on a research on FI-FM at http://help.sap.com/saphelp_nw70/helpdata/en/71/d3143cb1b8be00e10000000a114084/frameset.htm
    I saw the flow as: first Query(based on cube 0FIFM_C01), the cube which gets data from 2 datasources (0FI_FM_1  & FI_FM_2) through 2 infosources: 0FI_FM_1 and  FI_FM_2.
    1. What do I need to install on BI to get this going and in which order?
    2. In particular, knowing DataSource, Cube, Query do I figure out the Master Data data I need to get this query functional?
    Once you know of the specific master data datasources what do I need to do to get this query functional?
    Thanks

    Dear Amanda,
    Let's clarify your questions.
    1.Install the cube and related stuff.
    RSA1 -> Business content -> Choose " in data flow before" -> install the Cube
    2. For the master data and related hierarchy.
    RSA1 -> Find the InfoCube -> Right click, find a option such as "display data model". I am not sure about the exactly description because i am not in front of the SAP system.
    you can find all the related InfoObject in the right panel.
    It is good if you check all of those master data and load them daily. But it is a big job and sometimes it is not necessary. You can:
    1) Clarify the business need. to konw which kinds of fields are "Must" for the end user anlaysis and make a list of that.
    2) check the list and most of the master data will load by other moduels. for example, cost center, material, customer ... they are too common that you can expect they are in some process chain and loaded daily basis already.
    3) load the master data in your list and no one load it before, or discuss with the ownder of process chain, if you need change the load frequency such as from weekly to daily.
    Edited by: Brian Yang on Jul 12, 2009 8:54 PM

  • Master Data Datasources

    Hi,
    I would like to know from where do the Master Data Datasources get the data? I mean as all know, for TD we go the LBWE route where we activate the datasources etc... But where are these Master data datasources located I am not asking about RSA5...?  What I want to know is, how the master data mechanism works in R/3 as we dont fillup the setup tables for these.It would  be helpful if someone can explain the behavior of FI Datasources too as these datasources are not in LBWE either..
    Please throw some light on this,
    Thanks.

    Hello,
    Master data is data that remains unchanged over a long period of time, so this information is directly loaded either from the View or Data Base table hence we don't have the concept of filling up the setup tales.
    For FI extraction Please refer:
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    You can find a document in this forum on COPA ,if you search this forum with "CO-PA".
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/how%20to%20set%20up%20connection%20co-pa%20-%20extraction
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/how%20to%20set%20up%20connection%20co-pa%20-%20retraction.
    Thanks
    Geeta

  • Problem wiith Custom Master Data Datasource

    Hi
    I have just set up a datasource for a master data infoobject. The data source is based on a transparent table. But on execution, the Infopackage is returning 0 records in BW with Green Traffic Light. The table has data in it. Extractor Checker also returns data in R/3.
    I think I am doing something wrong. Do I need to do anything different to set up a master data datasource in R/3.
    Help would be truly appreciated and points will be awarded.
    Thanks
    Karen

    Hi Karen
    Are you getting 0 records with green request or in yellow. what error message you are getting.
    Sometimes the extraction is not complete (yellow traffic light) hence suggest you to check the job log in source system. Please check the job log in source system using tcode SM37-> enter request number with wildcards * at both ends like Request number (you can get request number from monitor of this request)
    Regards
    Pradip

  • Dump in master data datasource

    Hi all,
    When I execute an extraction through a master data datasource (e.g. 0CUSTOMER:ATTR, 0VENDOR), I'm getting the following error:
    Job cancelled in source system (RSM078)
    The job in the source system is cancelled because a dump,
    DBIF_RSQL_SQL_ERROR
    Database error text........: "Cursor HCACHEDCSRN00445 not open. MSGID=
      Job=067810/PRE00/WP27"
    Internal call code.........: "\[RSQL/FTCH/KNA1 ]"
    I'm running on BW 7.01 SP 07
    Regards

    Hi Raghavendra, thanks for your reply
    Here is the content of the dump
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    Date and Time          19.11.2010 11:19:45
    Short text
    SQL error in the database when accessing a table.
    What can you do?
    Note which actions and input led to the error.
    For further help in handling the problem, contact your SAP administrator
    You can use the ABAP dump analysis transaction ST22 to view and manage
    termination messages, in particular for long term reference.
    How to correct the error
    Database error text........: "Cursor HCACHEDCSRN00339 not open. MSGID=
    Job=067809/PRE00/WP26"
    Internal call code.........: "[RSQL/FTCH/LFA1 ]"
    Please check the entries in the system log (Transaction SM21).
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
    "SAPLWYSE" or "LWYSEF02"
    "LFA1_DATEN_LESEN_CURSOR"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "LFA1_DATEN_LESEN_CURSOR" "(FORM)", or its possible occurrence must be declared
    in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    System environment
    SAP-Release 701
    Application server... "ERPPRD"
    Network address...... "10.16.40.23"
    Operating system..... "OS400"
    Release.............. "6.1"
    Hardware type........ "00100007B87A"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 26
    Shortdump setting.... "full"
    Database server... "ERPPRD"
    Database type..... "DB400"
    Database name..... "PRE"
    Database user ID.. "R3PREDATA"
    Terminal.......... " "
    Char.set.... "C"
    SAP kernel....... 701
    created (date)... "May 23 2010 21:51:44"
    create on........ "AIX 2 5 00CB5A5B4C00 (IBM iSeries with OS400)"
    Database version. "DB4_53"
    Patch level. 94
    Patch text.. " "
    Database............. "V5R3, V5R4, V6R1, V7R1"
    SAP database version. 701
    Operating system..... "OS400 3 5, OS400 4 5, OS400 1 6, OS400 1 7"
    Memory consumption
    Roll.... 16192
    EM...... 29328936
    Heap.... 0
    Page.... 32768
    MM Used. 2610000
    MM Free. 18335840
    User and Transaction
    Client.............. 300
    User................ "ALEREMOTE"
    Language key........ "S"
    Transaction......... " "
    Transactions ID..... "4CE5FF2B4DA21FDDE10080030A102817"
    Program............. "SAPLWYSE"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    Termination occurred in the ABAP program "SAPLWYSE" - in
    "LFA1_DATEN_LESEN_CURSOR".
    The main program was "SBIE0001 ".
    In the source code you have the termination point in line 620
    of the (Include) program "LWYSEF02".
    The program "SAPLWYSE" was started as a background job.
    Job Name....... "BIREQU_4JVYLR3Y1HW25Z7MZZK6TJRQ1"
    Job Initiator.. "ALEREMOTE"
    Job Number..... 11194000
    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
    procedure "LFA1_DATEN_LESEN_CURSOR" "(FORM)", but it was neither handled
    locally nor declared
    in the RAISING clause of its signature.
    The procedure is in program "SAPLWYSE "; its source code begins in line
    616 of the (Include program "LWYSEF02 ".

  • Master data datasource for the point of delivery and installation.

    Hi,
    Can any one help me with the Master data datasource for the point of delivery and installation.
    Currently i am using ouc_instfacts for installation facts.
    With Thanks& Regards,
    Shakthi.

    Hi Shakti,
    I guess you are asking for assignment of installation to POD (table euiinstln)?
    Then you should check 0UC_PODINST_ATTR.
    Best regards
    Harald

  • Master data  datasource

    Hi,
    i have an ifocube which contains some characteristics which have master data. if it contains attribute which again has characteristics having master data , do i need to activate the master data datasource of attribute characteristics along with characteristics of the cube or only the characteristics of the cube, which shall take care of its attribute master data??
    Hope im clear on my question
    Thanks
    Prashant

    to make it more clear i have a cube Annual Values 0FIAA_C01 which has characteristics
    Asset Sub-number 0ASSET
    Main Asset Number 0ASSET_MAIN
    Company code  0COMP_CODE
    Depreciation area real or derived  0DEPRAREA
    Depreciation Area Real or Derived  0ASSET_AFAB
    these characteristics have master data with attribute for eg Asset Sub-number 0ASSET having attibute 0COSTCENTER which itself has master data. and othe such characteristics also
    so now to load this infocube i will have to load masterdata datasource only for initial 5 characteristics only or for the attribute  0COSTCENTER
    any suggestion??
    hope im clear
    Thanks
    Prashant

  • Business content master data DataSources & change pointers

    Hi,
    Why general business content master data DataSources donu2019t have the behavior of the ones created for classification data with transaction CTBW. For the 1CL_* DataSources the corresponding message type RS* is created only when you run a delta initialization, and when you delete that initialization the change pointers for that message type become inactive. With general business content master data DataSources the change pointers are active all the time (even if you want to use those DataSources only for full updates). How can I, in BW, deactivate the change pointers for the DataSources Iu2019m not using?
    Thanks!

    I always assumed it was because BW hijacked the standard change pointers but in hindsight the change pointers are given a RS prefix so that must be wrong as the entries in BDPCV and BDCPS contain that prefix
    But I assume you can run BD22 for the RS change pointers for non processed ones
    Interesting question - I await other responses (my hunch is that they hijacked the BADI to write to the BD* tables and left the code in for RS* messages)

  • SD pricing master data DATASOURCES (standard)

    Hi
    Can you pl give me the pricing master data DATASOURCES (standard)
    Regards
    Venkat

    Hi Venkat,
    Pricing master data  std Extractor:
    There is no standar extractor available. 2LIS_13_VDKON and 2LIS_13_VAKON gives conditions from Billing and Sales order respectively.
    For Pricing Master data you have to create your own generic extractor using tables A5* tables (A501, A502 etc) and KONP.
    Hope this helps,
    Regards
    CSM Reddy

Maybe you are looking for

  • Problems with row level trigger.

    Hi there. I'm trying to create a trigger for a table ... it's an attempt to audit all changes made to the table data. I'm getting an error message however, for my new and old interviewdate. The specific message is: Error(12,92): PLS-00049: bad bind v

  • Test Engineer (LabVIEW/TestStand) Required - Detroit, Novi - Michigan

    Hi all, Harman International Inc., is looking for a Test Engineer to add to our Team. Job Location: Novi, MI Job Type: Full Time / Permanent Job Location: Novi, Michigan Job Description, Knowledge in electronic design for testability requirement. Kno

  • Aperture 2.1.3 crashes after install of 10.5.7 when creating MobileMe Album

    Looks like I'll have to archive and install 10.5.6 I repaired permissions and trashed the user/library/com.aperture.plist but no joy. Totally reproducible. Kernel exception crashes Aperture. I sent in the log to Apple. Computer is new MP (early 09) w

  • Where's the Insert key?

    Anybody know which key on the keyboard is the "Insert" key?

  • Sessions / Cookies across domains.

    Hi all, I'm implementing an affiliate scheme on one of my websites so that when someone access: www.mydomain.com/index.jsp?aff_id=123 the JSP stores a cookie with the affiliate id in it (this is the affiliate that referred the person to my site). Thi