Text update master data no more possible/ Not existing duplicate keys

Dear colleagues,
we cannot load any new text for master data info objects.
There are no duplicate keys in the delivered nor in psa.
If the key value is allready loaded and the PSA containes changed text
fields to this key, the DTP update fails and says: duplicate data record!.
If I switch on the "Handle duplicate record keys"-flag, the DTP deletes
the correct record with the changed texts from the delivered data.
So, it is no more possible to get changed texts into the system.
Attribute load has the same issue.
Please help fast.
Many regards,
Wolfgang Taag

Problem seems to be solved!
Transfers start routine proceeds a "short dump" while selecting duplicate records from an differnt info object.
But there is no real short dump in in ST22.
DTP catches user's short dump and gives the message, that there are duplicate records in the loaded data.
If you check "handle duplicate records" at the DTP, no error is messaged, even though startroutine dumps!
Fattaly, in this case, DTP deletes rows from loaded data!
Thanks,
Wolfgang

Similar Messages

  • How To... Update Master Data during upload of transaction data

    Can anybody let me know how this can be achieved.
    I have datasource (Legacy not R3) where I am getting both master data and text for number of infoobjects.
    I dont want separate datasources.
    The datasource is actually transactional datasource.
    I dont need text in the cubes or DSO I need the text tables of the infoobjects to be updated.
    I could find this on SDN but do anyone have document based on the below link.I was not able to find it.
    How To... Update Master Data during upload of transaction data
    Thanks.

    Dear Praveen
    I guess yr req is demanding the knowledge of Data Unification and Synchronization whose scope is a bit outer the area of BW.( its MDM actually )
    In BW we could very well fetch data out of different data sources (even across the different system) with no issues so why not u trying that. if there is any issue implementing that then please specify what kind of trouble you are interfacing...
    I got the below link which may be helpful
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e7bd6389-0a01-0010-eb95-d45835d446a8

  • Master Data uploaded to ODS not generated automatically

    Hello gurus!!
    I have an issue with a query that gets its information from and ODS.
    After the variable selection is done the error message:
    "Value '' (hex. '') of characteristic contains invalid characters"
    "System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-" (BRAIN 299 )
    If you go to the ODS you can see the lines correctly but you can't see them on the Bex query.. workbooks.. etc.
    The issue has the following remarks:
    1. Comes up on certain selection (not all)
    2. The issue lies over the uploaded data from ECC system..
    3. Data is loaded directly (meaning it doesn't have any other ODS or object between ECC and it self..
    4. The Infopackage is loading information and it has the "Always update data, even if no master data exists for the data" flag marked.  But it doesn't update master data correctly for 2 characteristcis.. meaning it updates data for most but some lines are in the ODS that don't exist in the MD..
    5. Both these characteristics are texts.. and if I add a blank space or delete it from R3 and delete and reload in BW it works correctly.. But there are to many issues and its very time consumin to solve one line at a time.
    6. Both these Characteristics hace there sid table but they cant be maintained since they don't have Master data table or views..
    I've tried using RSRV transaction so solve it, since it detects SID issues but it doesn't work..
    I've also tried marking the "Lowercase Letters" flag in the characteristics and reloading but it doesn't work eather..
    I've searched for SAP notes but haven't been able to find a note that could solve this issue..
    I appreciate your help.
    Best regards and thank you..
    Jorge

    Hi Jorge,
    First check data in PSA, if it has any invalid charecters and then check in ODS, Problem is with data it seems
    Regards,
    Marasa

  • Adding fexible updated Master Data as characteristics to an InfoCube

    hi there,
    is it possible to add fexible updated Master Data (in InfoProvider section: InfoCubes, ODS etc.) as characteristics to an InfoCube?
    Thanks
    Hiza

    Hi,
    Yup, I does not really matter how do you load data to this InfoObject flexible / non flexible.
    hope it helps
    Regards
    Vikash

  • Exit to be used for hr to update master data

    Hi,
    Can anyone tell me which exit shud be used to update master data in HR module.
    My extraction structure is  HRMS_BW_IS_ATTENDANCE.
    i have to append 'ndays' n to fill this field which exit shud be used.
    Thnx,
    Regards,
    Nishu Gupta

    Hi,
    Transaction Data:
    EXIT_SAPLRSAP_001
    Master Data:
    Attribute:       EXIT_SAPLRSAP_002
    Text:             EXIT_SAPLRSAP_003
    Hierarchy :     EXIT_SAPLRSAP_004
    Happy Tony

  • How to UPDATE MASTER DATA RECORD PA0377 using FM HR_INFOTYPE_OPERATION

    How to UPDATE MASTER DATA RECORD IN INFOTYPE 0377 DIRECTLY using function module HR_INFOTYPE_OPERATION ? When i use operation = 'MOD'  im getting an ERROR as NO DATA STORED FOR 0377 IN SELECTION PERIOD.
           Can anyone please help me how to use HR_INFOTYPE_OPERATION to UPDATE MASTER DATA RECORD.
    Thanks,
    Karthi.

    Hi,
    please check this code
    it is very useful
    infotypes: 0105.
    parameters: p_pernr type p0105-pernr,
                p_subty type p0105-subty,
                p_begda type p0105-begda,
                p_endda type p0105-endda,
                p_opera type pspar-actio,
                p_usrid type p0105-usrid,
                p_commt as checkbox.    "Useful only when NO_COMMIT is 'X'
    data: w_return type bapireturn1,    "Error handling data
          w_key type bapipakey,         "If record has been created or changed the created/ changed
                                        "record's key (PSKEY) will be populated
          v_message type string.        "For printing returned messages
    call function 'BAPI_EMPLOYEE_ENQUEUE'
      exporting
        number = p_pernr
      importing
        return = w_return.
    if w_return is initial. "Employee is not locked
      p0105-pernr = p_pernr.
      p0105-subty =
      p0105-usrty = p_subty.
      p0105-begda = p_begda.
      p0105-endda = p_endda.
      p0105-usrid = p_usrid.
    *Calls Internally HR_MAINTAIN_MASTERDATA
      call function 'HR_INFOTYPE_OPERATION'
        exporting
          infty         = '0105'
          number        = p_pernr
          subtype       = p_subty
          validityend   = p_endda
          validitybegin = p_begda
          record        = p0105
          operation     = p_opera
          dialog_mode   = '0'
          nocommit      = 'X'
        importing
          return        = w_return
          key           = w_key.
    endif.
    if w_return is not initial.
      message id w_return-id type w_return-type number w_return-number
              with w_return-message_v1 w_return-message_v2 w_return-message_v3
              w_return-message_v4 into v_message.
      case w_return-type.
        when 'A' or 'E'.
          format color col_negative. write:/ v_message.
        when others.
          format color col_heading. write:/ v_message.
      endcase.
      call function 'BAPI_EMPLOYEE_DEQUEUE'
        exporting
          number = p_pernr.
    else.
      format color col_positive. write:/ 'Record Updated Successfully.'.
      if w_key is not initial.
        write:/ 'Key contains',
              / 'Personnel Number:', w_key-employeeno,
              / 'Subtype (absence type):', w_key-subtype,
              / 'Start date of Absence:', w_key-validbegin,
              / 'End date of Absence:', w_key-validend.
      endif.
      commit work.
    endif.
    Thanks and regards
    durga.K

  • Update Master Data from OSD

    Hi experts,
    I have a problem.
    I have a master data (infoobject as cube) with FIELD1 FIELD2 as KEY and some attributes (no text).
    I want to update one attribute of this master data from a characteristic of OSD (same key).
    The problem is that when I execute the DTP in the transformation RULES, an error appears because the register already exist and it doesnt modify the attribut.
    What can i do?
    thanks a lot

    An Expert Routine

  • Update Master Data Attributes yellow in DTP

    Hi All,
    After  loading the master data DTP, the request becomes greeen but the "Update Master Data Attributes" step is still yellow. Let me know how to overocome this error
    Thanks,
    Sathya

    Hi,
    This is a master data full load and it updates more than 1 lakh records. Technically the Overall and technical status of my  DTP request becomes Green but when i go to the details tab and drill down the data package the "Update Master Data Attributes" still remains yellow so i dont think my load will update the attributes for my info object successfully.
    Is there a  solution to overcome or did anyone face this similar issue?
    Thanks
    Sathya

  • Problem updating master data

    Hi all, im having a problem updating master data for an infoobject.
    Im not able to upload the data from the data source and im not able either to update it manually.
    Im getting this error Field symbol has not yet been assigned
    can anybody hekp me?

    Ask your Basis team to implement this note in BI system..
    Summary
    Symptom
    GETWA_NOT_ASSIGNED (a field symbol is not yet assigned) occurs when new master data providers are implemented after Note 1089231.
    Reason and Prerequisites
    This problem is caused by a program error.
    This problem only occurs when display attributes are requested and no data is returned.

  • Is LSMW tool only used to update master data??

    Hi experts,
    Is LSMW tool only used to update master data??i.e for updating material master,customer master etc.,
    or it can be used to updated configuration tables also.i.e when we do configuration a CTS is to be created.then how the CTS generation is handled.
    Can anyone plesae explain me in detail?
    Thanks in advance,
    Regards,
    N.Sreelatha

    Hi
    LSMW is used to transfer Legacy data from one system to another system.
    Obvioulsy Configuration objects should be transported through CTS only and not with LSMW .
    Cheers,
    Hakim

  • How to get master data records that do not have transaction data in a query

    Hi,
    How to get master data records that do not have transaction data in a query output. Can we create a query or any other way to get the master data records that do not have transaction data?

    Hi,
    Create a multiprovider which includes transactional data target and master data info object. Make sure that identification for this master data info object is ticked on both the provider.
    Create report on this multiprovider , keep the master data info object in rows , and now you should able to see all the values which are there in master data info object irrespective of transaction happened or not .
    Next you may create condition showing only zero keyfigure values , ie. master data without any transaction.
    Hope that helps.
    Regards
    Mr Kapadia

  • Flexible update master data inconsistencies

    Dear experts,
    I have the following issue with flexible update master data for 0employee.
    0employee is getting loaded from 3 different sources. here is the example below;
    employee  address   phone compcode
    1                germany   123     
    1                denmark                001
    1                UK
    here employee is a key for 0employee what happens to above data after attribute change run.
    can any one let me know what will be final results.  my requirement is i have to get company code at any circumstances. it there a proper sequence of load to be followed in this case. your inputs is highly appreciated with points.
    Cheers,
    VSN

    If 0employee gets data from 3 different sources it will overwrite the existing records when same employee '1' is coming from Germany , Den , UK .. Only the recent record will be availble in MD tables..
    You need to add SOURCESYSTEM as compounding object to 0EMPLOYEE.
    Put constant GE for 0SOURCE SYSTEM in transformations
    constant Den for 0SOURCE SYSTEM in transformations
    constant UK for 0SOURCE SYSTEM in transformations
    when you execute MD
    Source system ...employee address phone compcode
    GE.............................1...................... germany.... 123
    Den.............................1...................... Denmark.... 123
    UK.............................1......................UK .............. 123

  • Idoc INVOIC error Baseline date for payment does not exist

    Dear All,
    I am facing the following error message when processing an idoc to do an MM invoice reception (operation similar to a MIRO).
    The payment term is correctly maintained in the purchase order.
    Idoc message type INVOIC MM.
    Baseline date for payment does not exist
    Message no. M8356
    Diagnosis
    You have tried to post a document without a baseline date for payment.
    The system will not allow you to do this.
    Check the purchase order. No terms of payment have been entered in the document header or no suggestion has been defined in Customizing for the baseline date for payment for the terms of payment entered.
    If you get the error message during automatic settlement of planned delivery costs, maintain the term of payment in the master record (Payment Transactions, Financial Accounting) for the freight vendor or use the Business Add-In MRM_ERS_HDAT_MODIFY to determine the term of payment.
    Regards
    Arnaud

    Hello,
    Date for starting the calculation of the baseline date is indeed managed in the TC OME2 (document date, posting date, etc..).
    In my project, there is already some companies using payment term N60N, so it should be possible to continue using it.
    I solved this issue by putting a payment term in the vendors master data (company & purchasing views) and also in the customers views (company / sales orga) otherwise the structure of the idoc is different.
    Thanks anyway for your input.
    Keep in touch.
    Regards
    Arnaud

  • Data source 80BP_ID does not exists in source system

    Hi All,
    I have just started with standard content for SD module.
    I activated my datasources 2lis_11_vaitm and 2lis_12_vcitm in my R3 system.
    After replicating these data sources in my BI system i went to BI Content to activate my Info sources.
    While installing info sources 2lis_11_vaitm and 2lis_12_vcitm i got  errors  namely
    Data source 80BP_ID does not exists in source system
    Datasource 80BP_REL not maintained.
    Can somebody pls suggest a way out.
    Thanks in advance..
    Regards,
    Rohit

    Hi Rohit,
    When ever you try to install the SD related Standard business content then it will automatically pick up the CRM related data. the 0BP_ID, these are related to the CRM.
    Please uncheck the unrelated objects while installing the STD content.
    you can select the option in the grouping as ONLY NECESSARY OBJECTS.
    Regards,
    Ravi Kanth

  • Rep-52005 specified key PSREP does not exist in key map file

    Hi there,
    i am trying to reduce the length of my URL when calling a report (9iDS) from a parameter form
    in 9i using web.show_document(url,'target'). I have defined a key "psrep" at the end of my cgicmd file at reports\conf . The error i get is
    rep-52005 specified key PSREP does not exist in key map file.Stuck here.
    Any help gr8ly appreciated.
    Regards.

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

Maybe you are looking for

  • Control printing from report

    Hi friends ,          i have to control the printing of a report on the condintion that if a field value is changed then printing should not happen. so i want to know how to control this behavior of a report. your hints are highly appreciated. Thanx

  • Charging adapter only charges plugged in one direction

    I have an issue I didn't have before Apple changed out the logic board. Now when I plug in a power apter it will only.charge or work plug in in one direction. It is a hassle with a right angle adapter as when it is plugged in and working can't use th

  • Change initial size Log Database

    Hi All, I have the same situation with http://social.technet.microsoft.com/Forums/en-US/e9c58be8-d4f2-4bb9-9cd6-921583f90afe/log-file-initial-size-is-not-changing?forum=sqldatabaseengine but didn't solve my issue.  If I change the initial size (small

  • Building for iOS: how to load other SWFs?

    I have an AS3 app that loads two different kinds of SWFs: linear animations (basically stories consisting of a streaming narration track and still images with pans and dissolves), and SWF games of various types.   I know that CS5.5 can compile to iOS

  • Query for fa asset deprication

    HI 2 ALL Anybody have query which calculate asset reserve deprication in specific period. regards, zulqarnain