Master Data attributes failed in Process chain

Hi All,
Master data load has failed at vendor attributes DELTA load, and error message is "'Update mode R is not supported by the extraction API".
Actually in the last PC delta run it was failed at same vendor attributes delta run, due to special characters, we allowed those special characters in RSKC transaction and technically made PSA red request to RED after that In order to Run the PC, We selected that Red request in PSA (Which has the records) and updated with Scheduler. PC ran well after that.
and today PC got failed at same place showing he message as "'Update mode R is not supported by the extraction API".
There are no red requests in data source (Info course), and No delta's missed.
Can anyone please let us know the why it is happening ? (solution is we can re-init it or got options to run it) but we are looking for why this issue is happening ?
All inputs are much appreciated.
Thanks in advance,
Teena

Hi Teena,
You get this type of error when the data source does not support repeat of delta
or
init flag might have corrupted some times so that it wont allow the delta load to run.
it happens because the DS does not support R or Repeat of delta.
For more information on Update mode:
Go to SE12, write data type as "RODMUPDMOD". Read the documentation given there.
You can try multiple options to resolve this.
Simply set the QM status of the last failed delta to GREEN and reload your master data with Full Repair. Your deltas will follow.
the best way for this situation would be to re-init.
Regards
Kp

Similar Messages

  • Steps for master data loading by using process chain

    Hi
    I want to load the Master data by using the process chain . Can anyone tell me the step-by-step method for loading the master data .
    I means what are the processes should i need to include in the process chain . Pls tell me in sequenece .
    i ll assing the points
    kumar

    Hi,
    The process os loading master data is similar to transaction data in terms of using the infopackages.
    First you have to load Attr followed by texts and hierarchy.For master data you have to include the process type called as Attribute change run.This can be included as a separate process type or using the AND process.
    Hope this helps.
    Assign points if useful.
    Regards,
    Venkat

  • How to find unassigned master data text objects in process chain in bi

    Hi
    Please let me know how to find the unassigned master data text objects in process chain.

    hi,
    actually if u want to find that , is ur Unassigned Infoobject in present in process chain or not, , that u can find out just by right
    click on your DTP (master data Txt datasource--> Master data text ), if this is present in Process chain, then on ryt click, the process chain option will be active. by clicking over that u can find the name in which this exists.
    thanks.

  • Master data loading by using process chain

    hi
    I want to load the master data by using the process chain in BI7.0 . How can i do this one .
    Can anyone tell me the step-by-step method for loading the master data.
    kumar

    Hi Kumar,
    check this link to load the master data by using the process chain
    Re: Process Chain : Master Data
    cheers
    Sunil

  • Master data, attributes, texts: ETL process

    Hi,
    I am new to SAP BW and have a question concerning the difference between master data attributes and texts. I am currently learning with the "sflight" example provided by SAP. There I have, e.g., a table like this:
    CARRID  CARRNAME          CURRCODE
    AA      American Airline   USD
    AB      Air Berlin         EUR
    AC      Air Canada         CAD
    These are my master data because these data won't change often - correct?
    What are then my attributes and texts?
    Thanks!

    Thanks Choudhary.
    I am Karthik, new to both, the community and SAP BI. I have a doubt similar to the main question, that goes like this.
    CARRID  CARRNAME          CURRCODE   TIME             COUNTRIES_OPERATION
    AA          American Airline     USD               9:00  AM       America
    AB          Air Berlin                EUR             10:00  AM       Germany
    AC          Air Canada             CAD             11:00  AM       Canada
    Similar to the above table, if suppose there are two other columns TIME and COUNTRIES_OPERATION,
    1.  Will TIME be included as "attributes" or "time characteristics" as TIME is an additional information of the master data key and there is  dimension table where we can define TIME ?
    2.  Will COUNTRIES_OPERATION be included as "attributes" or can this be included in "hierarchy"
    3. If not what can be used into "hierarchy" from the above table.
    Kindly excuse if my question is silly or if it does not make sense. I am very new to these terms and still in the learning curve.
    Thanking you in advance,
    Karthik.

  • Deleting Master Data Requests in a Process Chain

    Hi All,
    I need to delete and reload master data in a process chain.  I created an ABAP program that uses the function module "RSDMD_DEL_MASTER_DATA" to delete the master data.  I invoke this program from my process chain, and this is working well.  My master data is being deleted nicely.
    Question, however.  I noticed that this does not delete the actual data request for that InfoObject.  If I manage that attribute, I still see the request appearing, eventhough I see no records when I select the option to maintain master data.
    Can anyone tell me how I can delete the requests for master data, and how this can be done through a process chain?
    Your assistance would be greatly appreciated.
    Thank you,
    John Stabile

    Hi John,
    I created a program giving the name of the master data object. Using this object, I found the request entries from rsiccont
    Then I check these found entries in rsbkrequest, so as to find the status is successful.
    rsbkrequest-tstate eq '2'.
    rsbkrequest-ustate eq '2'
    see the total code below.. you can copy paste the same
    *TABLES
    tables: rsiccont.
    *SELECTION SCREEN
    selection-screen begin of block a01 with frame title text-t01.
    select-options : s_icube  for  rsiccont-icube obligatory.
    parameter: p_num type i obligatory.
    parameter: p_test as checkbox.
    selection-screen end of block a01.
    *Internal Table Definition
    types: begin of t_rsiccont.
            include structure rsiccont.
    types: recno like sy-tabix,
           end  of t_rsiccont.
    data:  i_rsiccont type standard table of t_rsiccont with header line,
           i_rsiccont_ok type standard table of t_rsiccont with header line,
           i_rsbkrequest type standard table of rsbkrequest with header line.
    *Work areas
    data: wa_rsiccont  type t_rsiccont.
    *Variables
    data: lv_rnr   type rsiccont-rnr.
    *AT SELECTION SCREEN
    at selection-screen on s_icube.
      select single rnr
        into lv_rnr
        from rsiccont
        where icube in s_icube.
      if sy-subrc ne 0.
        message 'InfoCube not found' type 'E'.
      endif.
    *START-OF-SELECTION
    start-of-selection.
      select * up to p_num rows
        into table i_rsiccont
        from rsiccont
        where icube in s_icube.
      if sy-subrc eq 0.
        select *
          into table i_rsbkrequest
          from rsbkrequest
          for all entries in i_rsiccont
          where requid eq i_rsiccont-rnsidlast.
       if sy-subrc eq 0.
          loop at i_rsiccont.
            read table i_rsbkrequest with key requid = i_rsiccont-rnsidlast.
    *check if status is = 2.
            check sy-subrc eq 0.
            check i_rsbkrequest-tstate eq '2'.
            check i_rsbkrequest-ustate eq '2'.
    *actual mode -> delete the recrod!
            if p_test is initial.
              call function 'RSSM_PROCESS_REQUDEL_MDT'
                exporting
                  i_dta     = i_rsiccont-icube
                  i_request = i_rsiccont-rnr.
            endif.
            append i_rsiccont to i_rsiccont_ok.
          endloop.
        endif.
      endif.
    *display list of all request numbers deleted!
      write: 'List of delete request numbers'.
      uline.
      skip.
      loop at i_rsiccont_ok.
        write: i_rsiccont_ok-rnr.
        skip.
      endloop.
    =====================================================
    You may need to correct the formatting
    Edited by: Shailesh Khandarkar on Nov 11, 2009 7:42 AM
    Edited by: Shailesh Khandarkar on Nov 11, 2009 7:46 AM

  • BPC:: Master data load from BI Process chain

    Hi,
    we are trying to automatize the master data load from BI.
    Now we are using a package with:
    PROMPT(INFILES,,"Import file:",)
    PROMPT(TRANSFORMATION,%TRANSFORMATION%,"Transformation file:",,,Import.xls)
    PROMPT(DIMENSIONNAME,%DIMNAME%,"Dimension name:",,,%DIMS%)
    PROMPT(RADIOBUTTON,%WRITEMODE%,"Write Mode",2,{"Overwirte","Update"},{"1","2"})
    INFO(%TEMPNO1%,%INCREASENO%)
    INFO(%TEMPNO2%,%INCREASENO%)
    TASK(/CPMB/MASTER_CONVERT,OUTPUTNO,%TEMPNO1%)
    TASK(/CPMB/MASTER_CONVERT,FORMULA_FILE_NO,%TEMPNO2%)
    TASK(/CPMB/MASTER_CONVERT,TRANSFORMATIONFILEPATH,%TRANSFORMATION%)
    TASK(/CPMB/MASTER_CONVERT,SUSER,%USER%)
    TASK(/CPMB/MASTER_CONVERT,SAPPSET,%APPSET%)
    TASK(/CPMB/MASTER_CONVERT,SAPP,%APP%)
    TASK(/CPMB/MASTER_CONVERT,FILE,%FILE%)
    TASK(/CPMB/MASTER_CONVERT,DIMNAME,%DIMNAME%)
    TASK(/CPMB/MASTER_LOAD,INPUTNO,%TEMPNO1%)
    TASK(/CPMB/MASTER_LOAD,FORMULA_FILE_NO,%TEMPNO2%)
    TASK(/CPMB/MASTER_LOAD,DIMNAME,%DIMNAME%)
    TASK(/CPMB/MASTER_LOAD,WRITEMODE,%WRITEMODE%)
    But we need to include these tasks into a BI process chain.
    How can we add the INFO statement into a process chain?
    And how can we declare the variables?
    Regards,
    EZ.

    Hi,
    i have followed your recomendation, but when i try to use the process /CPMB/MASTER_CONVERT, with the parameter TRANSFORMATIONFILEPATH and the root of the transformation file as value, i have a new problem. The value only have 60 char, and my root is longer:
    \ROOT\WEBFOLDERS\APPXX\PLANNING\DATAMANAGER\TRANSFORMATIONFILES\trans.xls
    How can we put this root???
    Regards,
    EZ.

  • Regarding Master Data Loading by using Process Chain

    hai
    can anyone tell me 'step-by-step process and what are processes , process types' are used for loading the Master Data , Transaction into ODS and into Infocube.
    i ll assing maximum points
    bye
    rizwan

    HI Mohammand,
    1. Master Data loading:
    http://help.sap.com/saphelp_nw04/helpdata/en/3d/320e3d89195c59e10000000a114084/content.htm
    2. Transactional data to ODS:
    http://help.sap.com/saphelp_nw04/helpdata/en/ce/dc87c1d711f846b34e0e42ede5ebb7/content.htm
    3. Transactional data to CUBE:
    http://help.sap.com/saphelp_nw04/helpdata/en/d5/e80d3dbd82f72ce10000000a114084/content.htm
    Hope it Helps
    Srini

  • Where to set lock while loading master data attributes

    Hello Experts,
    I have two different datasources from ECC which loads into 0CUST_SALES attributes. I'm using two different DTP & transformation which are loading data in the this infoobject attributes.
    When i try to load data, the DTP fails with an error message at "Updating attributes for InfoObject 0CUST_SALES Processing Terminated" & the job log says: "Lock NOT set for: Loading master data attributes".
    Here what exactly  LOCK means?
    Thanks in advance.
    Zakir Khan.

    Hi,
    The lock means that some program is updating the master data (a table) and at the same time other program can not update that same master data. When the first program completes the updation it will release the lock so that the other program can update this.
    In your case you and schedule the DTP one after another.
    Thanks

  • DTP error: Lock NOT set for: Loading master data attributes

    Hi,
    I have a custom datasource from ECC which loads into 0CUST_SALES.  I'm using DTP & transformation which has worked for loading data in the past for this infoobject.  The infopackage loads with a green status but when i try to load data, the DTP fails with an error message at "Updating attributes for InfoObject 0CUST_SALES Processing Terminated" & the job log says: "Lock NOT set for: Loading master data attributes".  I've tried reactivating everything but it didn't help. Does anyone know what this error means? We're on SP7.   Thanks in advance!

    Hello Catherine
    I have had this problem in the past (3.0B) --> the reason is that our system was too slow and could not crunch the data fast enough, therefore packets where loacking each other.
    The fix: load the data into the PSA only, and then send it in background from the PSA to the info object. By doing this, only a background process will run, therefore locks cannot happen.
    Fix#2: by a faster server (by faster, I mean more CPU power)
    Now, maybe you have another issue with NW2004s, this was only my 2 cents quick thought
    Good luck!
    Ioan

  • DTP failed in process chain...

    Hi All,
    Process chain of master data got failed in DTP, the error message is :
    " Second attempt to write record "XXXXXXXrec number XXXX" failed. "
    waiting for the reponse.
    Regds,
    Zakir

    HI Zakir,
    Dont check the option Handle duplicate records.If iam correcti thik you are trying to load the master data again by deleting the data.When you tried to delete the data the complete data may not have deleted.
    First Alternative:-
    Iknow you may not have authorisation for se14 if is is there please delete all the P ,q and M tables in SE14.Then try to load the DTP
    Second:-
    If you open the monitor of the failed DTP and go into the details tab and drill the erro and when you  right click on of the step on one of the failed step there you will set keydate/timestamp select that and then delete the request activate the DTP again and try to load.
    Third:-
    Its better to delete the DTP and Create it once agian.
    let me know if it has worked.
    Regards,
    Vikram

  • About delta loading for master data attribute

    Hi all,
    We have a master data attribute loading failed which is a delta loading. I have to fix this problem but I have two questions:
    1. how can I find the those delta requests because I need to delete all these failed requests first, am I right ? Master data is not like cube or ods that we can find the requests in Manage, for master data how can we find them ?
    2. Could you please let me know the detailed procedures to perform this delta loading again ?
    Thanks a lot

    Hi...
    1. how can I find the those delta requests because I need to delete all these failed requests first, am I right ? Master data is not like cube or ods that we can find the requests in Manage, for master data how can we find them ?
    Look.....for master data.....no need to delete request from the target..........just make the status red.......and repeat the load.....But problem is that master data sometimes does'nt support Repeat delta..........if u repeat......then load will again fail with Update mode R.........in that case u hav to do re-init.......
    1) delete the init flag.......(In the IP scheduler >> in the top Scheduler tab >> Initialization option for source system)
    2) Init with data transfer(if failed load picks some records)..........otherwise .....init without data transfer.....if the last delta failed picking 0 records.......
    3) then Delta.......
    2. Could you please let me know the detailed procedures to perform this delta loading again ?
    1) Make the QM status red.........to set back the init pointer.......
    2) Repeat the load.....
    After that.........if again load failed with Update mode R.....
    1) delete the init flag.......
    2) Init with data transfer(if failed load picks some records)..........otherwise init without data transfer.....
    3) then Delta.......
    Regards,
    Debjani.....

  • Error while loading to Master data attribute 0product

    Hi experts,
    While loading the data from 0material to 0product master data attribute i am getting a error ' 0MATERIAL : Data record 2421 (''300000072 '):Version '300000072 ' is not valid. I request u all to help me to solve this error.
    Diagnosis
        Data record 2421 & with the key '300000072 &' is invalid in value
        '300000072 &' of the attribute/characteristic 0MATERIAL &.
    System Response
        The system has recognized that the value mentioned above is invalid, and
        has processed this general error message. A subsequent message may give
        you more information on the error. This message refers to the same
        value, even though it does not state this explicitly.
    Procedure
        If this message appears during a data load, maintain the attribute in
        the PSA maintenance screens. If this message appears in the master data
        maintenance screens, leave the transaction and call it again. This
        allows you to maintain your master data.
    Please let me know what could be the problem....
    Regards,
    Prashanth
    Edited by: Prashanth Shetty on Jul 16, 2008 7:42 AM

    Hi,
       The issue is due to errorneous record.
    Delete the request in Master data and Try the following.
    1) Goto PSA --> filter the Status (Red or Green)
    Select the Red records and correct the data in which error is throwm.
    After correcting the data, save and Right click PSA and give Start update immediately.
    2) Load via Infopackage only to PSA and later update from PSA and check.
    Any one of the above 2 methods will solve the issue.
    Regards,
    Balaji V

  • Error when scheduling the infopackage for loading Master data attributes

    Hi,
    Iam getting the following error message when scheduling this Master data Attributes ZIP_0PLANT_ATTR_FULL..( Flexible update of Master data info objects)..
    In Data load monitor error i got this following error message.
    Error message when processing in the Business Warehouse
    Diagnosis
    An error occurred in the SAP BW when processing the data. The error is documented in an error message.
    System response
    A caller 01, 02 or equal to or greater than 20 contains an error meesage.
    Further analysis:
    The error message(s) was (were) sent by:
    Update rules
    Thanks

    HI,
    A caller 01, 02 or equal to or greater than 20 contains an error meesage This is an Idoc error. Please check the Idocs :
    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) Check in SM58 and BD87 for pending tRFCs and IDOCS.
    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.
    SM21 - System log can also be helpful.
    Thanks,....
    Shambhu

  • Error while creating Data Source for master data attributes

    Hi BI Experts,
    Well its been some time for me that I have been part of Extraction in BI.I primarily handled reporting in my last assignments.
    I was trying extraction with flat files in SAP BI 7(new to sap bi 7 but very much familiar with BW3.5) but failed in the activity during master data attributes and text upload in infoobject (say IOSP_Mat).
    Here is the procedure that I did after creation of characteristic IOSP_Mat.I created a source system for flat file followed by data source for Master data attributes, i selected all the parameters correctly.i.e. csv file format, data seperator as   ,
    and other settings, now when i am trying to look at the proposed data in the next tab using Load example data.its not showing the desired result.The columns that I have maintained in Flat File is  MAT_NUMBER and MAT_NAME (with say 100 data in the file)
    same is the result when I am trying to load the text data too columns maintained are
    (LANGUAGE MAT_NUMBER Short Description)(same 100 data).
    now i used to rsa1old transaction  to upload the file using 3.5 version.i created info source for master data/text/hierarchies for  IOSP_Mat
    now when trying to upload it using info package for master and text data,I observe its(the data) not maintained in the characteristic IOSP_Mat.
    When I monitored ,I figured the data has not been even uploaded to the PSA level.
    Can you BI experts tell me the answer for this.
    Thanks,
    Srijith

    apologies to all of you for late response,
    was busy with some other activities.
    I don't remember the exact message,but I remember it was not loaded to even the PSA level.I will try it again and post the exact message.
    Thanks again for your quick response.
    Once again sorry to all of you for my late response
    Thanks,
    Sri

Maybe you are looking for

  • CUO1 - BDC not working in the background.

    Hello Experts, We are trying to create dependencies using CU01, when we recorded through LSMW we have got an error saying *for type c' lenght can be from 1 to 65535, ( * caution message arised in the field mapping step)* we went on with a work around

  • Change in item of  budget billing plan

    Dear all, I use CHANGEDOCUMET_READ  to find a change in Budget billing plan.   objektid = pa_opbel.   CALL FUNCTION 'CHANGEDOCUMENT_READ'        EXPORTING              changenumber      = nummer             date_of_change    = pa_erdat             ob

  • Working of ImageObserver

    ImageObserver interface is implemented by Applet in the form of imageUpdate method by which we can continuosly monitor the status of the image. Does anybody know how this works internally ?? Does the imageUpdate fucntion periodically probe the image

  • Deleting a character at a time from a textarea

    I am designing a mobile phone simulation, where the user creates a message from a keypad, to the text area, there is a back button that does two things: 1. Deletes a character at a time 2. Moves back through text How do i delete a character at a time

  • Importing ppt presentation

    Hi there, I would like to import a ppt presentation into a FCP project. First, I tried to make a movie directly from the Power point application (this option is offered in the application). I got a .mov file that I cannot import into my project. Then